Advertisement
00fjg

Untitled

Aug 25th, 2017
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 289.01 KB | None | 0 0
  1.  
  2. local p = game.Players.LocalPlayer
  3. local char = p.Character
  4. local mouse = p:GetMouse()
  5. local larm = char["Left Arm"]
  6. local rarm = char["Right Arm"]
  7. local lleg = char["Left Leg"]
  8. local rleg = char["Right Leg"]
  9. local hed = char.Head
  10. local torso = char.Torso
  11. local hum = char.Humanoid
  12. local cam = game.Workspace.CurrentCamera
  13. local root = char.HumanoidRootPart
  14. local deb = false
  15. local shot = 0
  16. local l = game:GetService("Lighting")
  17. local rs = game:GetService("RunService").RenderStepped
  18. local debris=game:service"Debris"
  19. local stanceToggle = "Normal"
  20. math.randomseed(os.time())
  21. hum.WalkSpeed = 7
  22. char.Health:Destroy()
  23. hum.MaxHealth = 50000
  24. wait(0.1)
  25. hum.Health = 50000
  26. ----------------------------------------------------
  27. ypcall(function()
  28. char.Shirt:Destroy()
  29. char.Pants:Destroy()
  30. shirt = Instance.new("Shirt", char)
  31. shirt.Name = "Shirt"
  32. pants = Instance.new("Pants", char)
  33. pants.Name = "Pants"
  34. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  35. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  36. end)
  37. ----------------------------------------------------
  38. Debounces = {
  39. on = false;
  40. ks = false;
  41. CanAttack = true;
  42. CanJoke = true;
  43. NoIdl = false;
  44. Slashing = false;
  45. Slashed = false;
  46. Grabbing = false;
  47. Grabbed = false;
  48. }
  49. local Touche = {char.Name, }
  50. ----------------------------------------------------
  51. function lerp(a, b, t) -- Linear interpolation
  52. return a + (b - a)*t
  53. end
  54.  
  55. function slerp(a, b, t) --Spherical interpolation
  56. dot = a:Dot(b)
  57. if dot > 0.99999 or dot < -0.99999 then
  58. return t <= 0.5 and a or b
  59. else
  60. r = math.acos(dot)
  61. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  62. end
  63. end
  64.  
  65. function matrixInterpolate(a, b, t)
  66. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  67. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  68. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  69. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  70. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  71. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  72. local t = v1:Dot(v2)
  73. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  74. return CFrame.new()
  75. end
  76. return CFrame.new(
  77. v0.x, v0.y, v0.z,
  78. v1.x, v1.y, v1.z,
  79. v2.x, v2.y, v2.z,
  80. v3.x, v3.y, v3.z)
  81. end
  82. ----------------------------------------------------
  83. function genWeld(a,b)
  84. local w = Instance.new("Weld",a)
  85. w.Part0 = a
  86. w.Part1 = b
  87. return w
  88. end
  89. function weld(a, b)
  90. local weld = Instance.new("Weld")
  91. weld.Name = "W"
  92. weld.Part0 = a
  93. weld.Part1 = b
  94. weld.C0 = a.CFrame:inverse() * b.CFrame
  95. weld.Parent = a
  96. return weld;
  97. end
  98. ----------------------------------------------------
  99. function Lerp(c1,c2,al)
  100. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  101. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  102. for i,v in pairs(com1) do
  103. com1[i] = v+(com2[i]-v)*al
  104. end
  105. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  106. end
  107. ----------------------------------------------------
  108. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  109. local wld = Instance.new("Weld", wp1)
  110. wld.Part0 = wp0
  111. wld.Part1 = wp1
  112. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  113. end
  114. ----------------------------------------------------
  115. function Tween(a,b,c)
  116. return a+(b-a)*c
  117. end
  118. ----------------------------------------------------
  119. function nwPrt(prnt,siz,cf,col)
  120. local prt=Instance.new("Part")
  121. prt.Parent=prnt
  122. prt.FormFactor=3
  123. prt.Name="Part"
  124. prt.Size=siz
  125. prt.CanCollide=false
  126. prt.Anchored=true
  127. prt.Locked=true
  128. prt.TopSurface=10
  129. prt.BottomSurface=10
  130. prt.FrontSurface=10
  131. prt.BackSurface=10
  132. prt.LeftSurface=10
  133. prt.RightSurface=10
  134. prt:BreakJoints()
  135. prt.CFrame=cf or CFrame.new(30,10,30)
  136. prt.Material="Neon"
  137. prt.BrickColor=BrickColor.new(col)
  138. m=Instance.new("SpecialMesh",prt)
  139. m.MeshType=6
  140. return prt
  141. end
  142. ----------------------------------------------------
  143. function nwSnd(prnt,pch,vol,id)
  144. local s=Instance.new("Sound",prnt)
  145. s.Pitch=pch
  146. s.Volume=vol
  147. s.SoundId="rbxassetid://"..id
  148. s.PlayOnRemove=true
  149. return s
  150. end
  151. ----------------------------------------------------
  152. function newRay(start,face,range,wat)
  153. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  154. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  155. return rey,hit,pos
  156. end
  157. ----------------------------------------------------
  158. for i,v in pairs(char:children()) do
  159. if v:IsA("Hat") then
  160. v:Destroy()
  161. end
  162. end
  163. for i,v in pairs(hed:children()) do
  164. if v:IsA("Sound") then
  165. v:Destroy()
  166. end
  167. end
  168. ----------------------------------------------------
  169. function HasntTouched(plrname)
  170. local ret = true
  171. for _, v in pairs(Touche) do
  172. if v == plrname then
  173. ret = false
  174. end
  175. end
  176. return ret
  177. end
  178. ----------------------------------------------------
  179. larm.Size = larm.Size * 2
  180. rarm.Size = rarm.Size * 2
  181. lleg.Size = lleg.Size * 2
  182. rleg.Size = rleg.Size * 2
  183. torso.Size = torso.Size * 2
  184. hed.Size = hed.Size * 2
  185. root.Size = root.Size * 2
  186. ----------------------------------------------------
  187. newWeld(torso, larm, -1.5, 0.5, 0)
  188. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  189. newWeld(torso, rarm, 1.5, 0.5, 0)
  190. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  191. newWeld(torso, hed, 0, 1.5, 0)
  192. newWeld(torso, lleg, -0.5, -1, 0)
  193. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  194. newWeld(torso, rleg, 0.5, -1, 0)
  195. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  196. newWeld(root, torso, 0, -1, 0)
  197. torso.Weld.C1 = CFrame.new(0, -1, 0)
  198. ----------------------------------------------------
  199. hed.face.Texture = "rbxassetid://272299908"
  200. z=Instance.new('Decal',hed)
  201. z.Face = 'Front'
  202. z.Texture='rbxassetid://99174105'
  203. z1=Instance.new('Decal',hed)
  204. z1.Face = 'Right'
  205. hed.BrickColor = BrickColor.new("Really black")
  206. lite = Instance.new("PointLight", torso)
  207. lite.Brightness = 14
  208. lite.Range = 10
  209. lite.Color = Color3.new(1, 0, 0)
  210. --[[local hed2 = hed:Clone()
  211. hed2.CanCollide = false
  212. hed2.Parent = char
  213. hed2:ClearAllChildren()
  214. hed2.Transparency = 1
  215. hed2.Name = "DARP"
  216. local w = Instance.new("Weld",hed2)
  217. w.Part0 = hed
  218. w.Part1 = hed2
  219. w.C0 = CFrame.new(0,0,-0.175)
  220. z=Instance.new("SurfaceGui",hed2)
  221. z.Enabled = true
  222. z.Face = "Front"
  223. z.Adornee = hed2
  224. z.CanvasSize = Vector2.new(100,100)
  225. local face = Instance.new("ImageLabel",z)
  226. face.Size = UDim2.new(1,-30,1,0)
  227. face.Position = UDim2.new(0,15,0,0)
  228. face.BackgroundTransparency = 1
  229. face.Image='rbxassetid://46282671']]--
  230. ----------------------------------------------------
  231. z = Instance.new("Sound", char)
  232. z.SoundId = "rbxassetid://303570180"--242463565
  233. z.Looped = true
  234. z.Pitch = .6
  235. z.Volume = 1
  236. wait(.01)
  237. z:Play()
  238. ----------------------------------------------------
  239. local l = game.Lighting
  240. local sky = Instance.new("Sky",l)
  241. sky.CelestialBodiesShown = false
  242. sky.SkyboxBk = "http://www.roblox.com/asset/?id=156925041"
  243. sky.SkyboxDn = "http://www.roblox.com/asset/?id=156925047"
  244. sky.SkyboxFt = "http://www.roblox.com/asset/?id=156925045"
  245. sky.SkyboxLf = "http://www.roblox.com/asset/?id=156925043"
  246. sky.SkyboxRt = "http://www.roblox.com/asset/?id=156925038"
  247. sky.SkyboxUp = "http://www.roblox.com/asset/?id=156925055"
  248. sky.StarCount = 0
  249. sky.Name = "GreenSpace"
  250. ----------------------------------------------------
  251. local m = Instance.new("Model")
  252. m.Name = "Absolution"
  253. p1 = Instance.new("Part", m)
  254. p1.BrickColor = BrickColor.new("Bright blue")
  255. p1.Material = "Neon"
  256. p1.FormFactor = Enum.FormFactor.Custom
  257. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  258. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  259. p1.CanCollide = false
  260. p1.Locked = true
  261. p1.Elasticity = 0
  262. p1.BottomSurface = Enum.SurfaceType.Smooth
  263. p1.TopSurface = Enum.SurfaceType.Smooth
  264. b1 = Instance.new("SpecialMesh", p1)
  265. b1.MeshType = Enum.MeshType.Wedge
  266. b1.Name = "Mesh"
  267. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  268. p2 = Instance.new("Part", m)
  269. p2.BrickColor = BrickColor.new("Really black")
  270. p2.FormFactor = Enum.FormFactor.Custom
  271. p2.Size = Vector3.new(1, 2.9000001, 1)
  272. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  273. p2.CanCollide = false
  274. p2.Locked = true
  275. p2.Elasticity = 0
  276. p2.BottomSurface = Enum.SurfaceType.Smooth
  277. p2.TopSurface = Enum.SurfaceType.Smooth
  278. b2 = Instance.new("BlockMesh", p2)
  279. b2.Name = "Mesh"
  280. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  281. p3 = Instance.new("Part", m)
  282. p3.BrickColor = BrickColor.new("Bright blue")
  283. p3.Material = "Neon"
  284. p3.FormFactor = Enum.FormFactor.Custom
  285. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  286. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  287. p3.CanCollide = false
  288. p3.Locked = true
  289. p3.Elasticity = 0
  290. p3.BottomSurface = Enum.SurfaceType.Smooth
  291. p3.TopSurface = Enum.SurfaceType.Smooth
  292. b3 = Instance.new("SpecialMesh", p3)
  293. b3.MeshType = Enum.MeshType.Wedge
  294. b3.Name = "Mesh"
  295. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  296. p4 = Instance.new("Part", m)
  297. p4.BrickColor = BrickColor.new("Bright blue")
  298. p4.Material = "Neon"
  299. p4.FormFactor = Enum.FormFactor.Custom
  300. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  301. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  302. p4.CanCollide = false
  303. p4.Locked = true
  304. p4.Elasticity = 0
  305. p4.BottomSurface = Enum.SurfaceType.Smooth
  306. p4.TopSurface = Enum.SurfaceType.Smooth
  307. b4 = Instance.new("SpecialMesh", p4)
  308. b4.MeshType = Enum.MeshType.Wedge
  309. b4.Name = "Mesh"
  310. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  311. p5 = Instance.new("Part", m)
  312. p5.BrickColor = BrickColor.new("Bright blue")
  313. p5.Material = "Neon"
  314. p5.FormFactor = Enum.FormFactor.Custom
  315. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  316. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  317. p5.CanCollide = false
  318. p5.Locked = true
  319. p5.Elasticity = 0
  320. p5.BottomSurface = Enum.SurfaceType.Smooth
  321. p5.TopSurface = Enum.SurfaceType.Smooth
  322. b5 = Instance.new("SpecialMesh", p5)
  323. b5.MeshType = Enum.MeshType.Wedge
  324. b5.Name = "Mesh"
  325. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  326. p6 = Instance.new("Part", m)
  327. p6.Name = "Handle"
  328. p6.BrickColor = BrickColor.new("Really black")
  329. p6.FormFactor = Enum.FormFactor.Custom
  330. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  331. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  332. p6.CanCollide = false
  333. p6.Locked = true
  334. p6.Elasticity = 0
  335. p6.BottomSurface = Enum.SurfaceType.Smooth
  336. p6.TopSurface = Enum.SurfaceType.Smooth
  337. b6 = Instance.new("BlockMesh", p6)
  338. b6.Name = "Mesh"
  339. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  340. p7 = Instance.new("Part", m)
  341. p7.BrickColor = BrickColor.new("Bright blue")
  342. p7.Material = "Neon"
  343. p7.FormFactor = Enum.FormFactor.Custom
  344. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  345. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  346. p7.CanCollide = false
  347. p7.Locked = true
  348. p7.Elasticity = 0
  349. p7.BottomSurface = Enum.SurfaceType.Smooth
  350. p7.TopSurface = Enum.SurfaceType.Smooth
  351. b7 = Instance.new("SpecialMesh", p7)
  352. b7.MeshType = Enum.MeshType.Wedge
  353. b7.Name = "Mesh"
  354. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  355. p8 = Instance.new("Part", m)
  356. p8.BrickColor = BrickColor.new("Bright blue")
  357. p8.Material = "Neon"
  358. p8.FormFactor = Enum.FormFactor.Custom
  359. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  360. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  361. p8.CanCollide = false
  362. p8.Locked = true
  363. p8.Elasticity = 0
  364. p8.BottomSurface = Enum.SurfaceType.Smooth
  365. p8.TopSurface = Enum.SurfaceType.Smooth
  366. b8 = Instance.new("SpecialMesh", p8)
  367. b8.MeshType = Enum.MeshType.Wedge
  368. b8.Name = "Mesh"
  369. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  370. p9 = Instance.new("Part", m)
  371. p9.BrickColor = BrickColor.new("Really black")
  372. p9.FormFactor = Enum.FormFactor.Custom
  373. p9.Size = Vector3.new(1, 1.07999957, 1)
  374. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  375. p9.CanCollide = false
  376. p9.Locked = true
  377. p9.Elasticity = 0
  378. p9.BottomSurface = Enum.SurfaceType.Smooth
  379. p9.TopSurface = Enum.SurfaceType.Smooth
  380. b9 = Instance.new("BlockMesh", p9)
  381. b9.Name = "Mesh"
  382. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  383. p10 = Instance.new("Part", m)
  384. p10.BrickColor = BrickColor.new("Really black")
  385. p10.FormFactor = Enum.FormFactor.Custom
  386. p10.Size = Vector3.new(1, 1.41999948, 1)
  387. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  388. p10.CanCollide = false
  389. p10.Locked = true
  390. p10.Elasticity = 0
  391. p10.BottomSurface = Enum.SurfaceType.Smooth
  392. p10.TopSurface = Enum.SurfaceType.Smooth
  393. b10 = Instance.new("BlockMesh", p10)
  394. b10.Name = "Mesh"
  395. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  396. p11 = Instance.new("Part", m)
  397. p11.BrickColor = BrickColor.new("Really black")
  398. p11.FormFactor = Enum.FormFactor.Custom
  399. p11.Size = Vector3.new(1, 1.50999951, 1)
  400. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  401. p11.CanCollide = false
  402. p11.Locked = true
  403. p11.Elasticity = 0
  404. p11.BottomSurface = Enum.SurfaceType.Smooth
  405. p11.TopSurface = Enum.SurfaceType.Smooth
  406. b11 = Instance.new("BlockMesh", p11)
  407. b11.Name = "Mesh"
  408. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  409. p12 = Instance.new("Part", m)
  410. p12.Name = "BladeCenter"
  411. p12.BrickColor = BrickColor.new("Dark stone grey")
  412. p12.Material = Enum.Material.Concrete
  413. p12.FormFactor = Enum.FormFactor.Symmetric
  414. p12.Size = Vector3.new(1, 2, 2)
  415. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  416. p12.CanCollide = false
  417. p12.Locked = true
  418. p12.BottomSurface = Enum.SurfaceType.Smooth
  419. p12.TopSurface = Enum.SurfaceType.Smooth
  420. b12 = Instance.new("SpecialMesh", p12)
  421. b12.MeshType = Enum.MeshType.Brick
  422. b12.Name = "Mesh"
  423. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  424. p13 = Instance.new("Part", m)
  425. p13.BrickColor = BrickColor.new("Really black")
  426. p13.FormFactor = Enum.FormFactor.Custom
  427. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  428. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  429. p13.CanCollide = false
  430. p13.Locked = true
  431. p13.Elasticity = 0
  432. p13.BottomSurface = Enum.SurfaceType.Smooth
  433. p13.TopSurface = Enum.SurfaceType.Smooth
  434. b13 = Instance.new("BlockMesh", p13)
  435. b13.Name = "Mesh"
  436. b13.Scale = Vector3.new(1, 1, 0.400000006)
  437. p14 = Instance.new("Part", m)
  438. p14.BrickColor = BrickColor.new("Really black")
  439. p14.FormFactor = Enum.FormFactor.Custom
  440. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  441. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  442. p14.CanCollide = false
  443. p14.Locked = true
  444. p14.Elasticity = 0
  445. p14.BottomSurface = Enum.SurfaceType.Smooth
  446. p14.TopSurface = Enum.SurfaceType.Smooth
  447. b14 = Instance.new("BlockMesh", p14)
  448. b14.Name = "Mesh"
  449. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  450. p15 = Instance.new("Part", m)
  451. p15.BrickColor = BrickColor.new("Really black")
  452. p15.FormFactor = Enum.FormFactor.Custom
  453. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  454. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  455. p15.CanCollide = false
  456. p15.Locked = true
  457. p15.Elasticity = 0
  458. p15.BottomSurface = Enum.SurfaceType.Smooth
  459. p15.TopSurface = Enum.SurfaceType.Smooth
  460. b15 = Instance.new("BlockMesh", p15)
  461. b15.Name = "Mesh"
  462. b15.Scale = Vector3.new(1, 1, 0.400000006)
  463. p16 = Instance.new("Part", m)
  464. p16.BrickColor = BrickColor.new("Really black")
  465. p16.FormFactor = Enum.FormFactor.Custom
  466. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  467. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  468. p16.CanCollide = false
  469. p16.Locked = true
  470. p16.Elasticity = 0
  471. p16.BottomSurface = Enum.SurfaceType.Smooth
  472. p16.TopSurface = Enum.SurfaceType.Smooth
  473. b16 = Instance.new("BlockMesh", p16)
  474. b16.Name = "Mesh"
  475. b16.Scale = Vector3.new(1, 1, 0.400000006)
  476. p17 = Instance.new("Part", m)
  477. p17.BrickColor = BrickColor.new("Really black")
  478. p17.FormFactor = Enum.FormFactor.Custom
  479. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  480. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  481. p17.CanCollide = false
  482. p17.Locked = true
  483. p17.Elasticity = 0
  484. p17.BottomSurface = Enum.SurfaceType.Smooth
  485. p17.TopSurface = Enum.SurfaceType.Smooth
  486. b17 = Instance.new("BlockMesh", p17)
  487. b17.Name = "Mesh"
  488. b17.Scale = Vector3.new(1, 1, 0.400000006)
  489. p18 = Instance.new("WedgePart", m)
  490. p18.BrickColor = BrickColor.new("Dark stone grey")
  491. p18.Name = "BladePart1"
  492. p18.Material = Enum.Material.Concrete
  493. p18.Name = "Wedge"
  494. p18.FormFactor = Enum.FormFactor.Symmetric
  495. p18.Size = Vector3.new(1, 4, 2)
  496. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  497. p18.CanCollide = false
  498. p18.Locked = true
  499. p18.BottomSurface = Enum.SurfaceType.Smooth
  500. p18.TopSurface = Enum.SurfaceType.Smooth
  501. b18 = Instance.new("SpecialMesh", p18)
  502. b18.MeshType = Enum.MeshType.Wedge
  503. b18.Name = "Mesh"
  504. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  505. p19 = Instance.new("WedgePart", m)
  506. p19.BrickColor = BrickColor.new("Dark stone grey")
  507. p19.Name = "BladePart2"
  508. p19.Material = Enum.Material.Concrete
  509. p19.Name = "Wedge"
  510. p19.FormFactor = Enum.FormFactor.Symmetric
  511. p19.Size = Vector3.new(1, 4, 2)
  512. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  513. p19.CanCollide = false
  514. p19.Locked = true
  515. p19.BottomSurface = Enum.SurfaceType.Smooth
  516. p19.TopSurface = Enum.SurfaceType.Smooth
  517. b19 = Instance.new("SpecialMesh", p19)
  518. b19.MeshType = Enum.MeshType.Wedge
  519. b19.Name = "Mesh"
  520. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  521. p20 = Instance.new("Part", m)
  522. p20.BrickColor = BrickColor.new("Really black")
  523. p20.FormFactor = Enum.FormFactor.Custom
  524. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  525. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  526. p20.CanCollide = false
  527. p20.Locked = true
  528. p20.Elasticity = 0
  529. p20.BottomSurface = Enum.SurfaceType.Smooth
  530. p20.TopSurface = Enum.SurfaceType.Smooth
  531. b20 = Instance.new("BlockMesh", p20)
  532. b20.Name = "Mesh"
  533. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  534. p21 = Instance.new("Part", m)
  535. p21.BrickColor = BrickColor.new("Bright blue")
  536. p21.Material = "Neon"
  537. p21.FormFactor = Enum.FormFactor.Custom
  538. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  539. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  540. p21.CanCollide = false
  541. p21.Locked = true
  542. p21.Elasticity = 0
  543. p21.BottomSurface = Enum.SurfaceType.Smooth
  544. p21.TopSurface = Enum.SurfaceType.Smooth
  545. b21 = Instance.new("SpecialMesh", p21)
  546. b21.MeshType = Enum.MeshType.Wedge
  547. b21.Name = "Mesh"
  548. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  549. w1 = Instance.new("Weld", p1)
  550. w1.Name = "Part_Weld"
  551. w1.Part0 = p1
  552. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  553. w1.Part1 = p2
  554. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  555. w2 = Instance.new("Weld", p2)
  556. w2.Name = "Part_Weld"
  557. w2.Part0 = p2
  558. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  559. w2.Part1 = p3
  560. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  561. w3 = Instance.new("Weld", p3)
  562. w3.Name = "Part_Weld"
  563. w3.Part0 = p3
  564. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  565. w3.Part1 = p4
  566. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  567. w4 = Instance.new("Weld", p4)
  568. w4.Name = "Part_Weld"
  569. w4.Part0 = p4
  570. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  571. w4.Part1 = p5
  572. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  573. w5 = Instance.new("Weld", p5)
  574. w5.Name = "Part_Weld"
  575. w5.Part0 = p5
  576. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  577. w5.Part1 = p6
  578. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  579. w6 = Instance.new("Weld", p6)
  580. w6.Name = "Part_Weld"
  581. w6.Part0 = p6
  582. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  583. w6.Part1 = p7
  584. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  585. w7 = Instance.new("Weld", p7)
  586. w7.Name = "Part_Weld"
  587. w7.Part0 = p7
  588. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  589. w7.Part1 = p8
  590. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  591. w8 = Instance.new("Weld", p8)
  592. w8.Name = "Part_Weld"
  593. w8.Part0 = p8
  594. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  595. w8.Part1 = p9
  596. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  597. w9 = Instance.new("Weld", p9)
  598. w9.Name = "Part_Weld"
  599. w9.Part0 = p9
  600. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  601. w9.Part1 = p10
  602. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  603. w10 = Instance.new("Weld", p10)
  604. w10.Name = "Part_Weld"
  605. w10.Part0 = p10
  606. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  607. w10.Part1 = p11
  608. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  609. w11 = Instance.new("Weld", p11)
  610. w11.Name = "Part_Weld"
  611. w11.Part0 = p11
  612. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  613. w11.Part1 = p12
  614. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  615. w12 = Instance.new("Weld", p12)
  616. w12.Name = "Part_Weld"
  617. w12.Part0 = p12
  618. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  619. w12.Part1 = p13
  620. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  621. w13 = Instance.new("Weld", p13)
  622. w13.Name = "Part_Weld"
  623. w13.Part0 = p13
  624. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  625. w13.Part1 = p14
  626. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  627. w14 = Instance.new("Weld", p14)
  628. w14.Name = "Part_Weld"
  629. w14.Part0 = p14
  630. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  631. w14.Part1 = p15
  632. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  633. w15 = Instance.new("Weld", p15)
  634. w15.Name = "Part_Weld"
  635. w15.Part0 = p15
  636. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  637. w15.Part1 = p16
  638. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  639. w16 = Instance.new("Weld", p16)
  640. w16.Name = "Part_Weld"
  641. w16.Part0 = p16
  642. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  643. w16.Part1 = p17
  644. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  645. w17 = Instance.new("Weld", p17)
  646. w17.Name = "Wedge_Weld"
  647. w17.Part0 = p17
  648. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  649. w17.Part1 = p18
  650. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  651. w18 = Instance.new("Weld", p18)
  652. w18.Name = "Wedge_Weld"
  653. w18.Part0 = p18
  654. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  655. w18.Part1 = p19
  656. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  657. w19 = Instance.new("Weld", p19)
  658. w19.Name = "Part_Weld"
  659. w19.Part0 = p19
  660. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  661. w19.Part1 = p20
  662. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  663. w20 = Instance.new("Weld", p20)
  664. w20.Name = "Part_Weld"
  665. w20.Part0 = p20
  666. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  667. w20.Part1 = p21
  668. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  669. m.Parent = char
  670. m:MakeJoints()
  671. ----------------------------------------------------
  672. local cor = Instance.new("Part", char.Absolution)
  673. cor.Name = "Thingy"
  674. cor.Locked = true
  675. cor.BottomSurface = 0
  676. cor.CanCollide = false
  677. cor.Size = Vector3.new(1, 13, 1)
  678. cor.Transparency = 1
  679. cor.TopSurface = 0
  680. corw = Instance.new("Weld", cor)
  681. corw.Part0 = rarm
  682. corw.Part1 = cor
  683. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  684. corw.C1 = CFrame.new(0, 0, 0)
  685. weld1 = Instance.new("Weld", char.Absolution)
  686. weld1.Part0 = cor
  687. weld1.Part1 = p6
  688. weld1.C0 = CFrame.new(0, 0, 0)
  689. ----------------------------------------------------
  690. hitb = Instance.new("Part", char.Absolution)
  691. hitb.Name = "Thingy2"
  692. hitb.Locked = true
  693. hitb.BottomSurface = 0
  694. hitb.CanCollide = false
  695. hitb.Size = Vector3.new(0, 8, 6)
  696. hitb.Transparency = 1
  697. hitb.TopSurface = 0
  698. weld2 = Instance.new("Weld", char.Absolution)
  699. weld2.Part0 = hitb
  700. weld2.Part1 = p12
  701. weld2.C0 = CFrame.new(0, .6, 1)
  702. ----------------------------------------------------
  703. local m = Instance.new("Model")
  704. m.Name = "Claw"
  705. p1 = Instance.new("Part", m)
  706. p1.BrickColor = BrickColor.new("Really black")
  707. p1.FormFactor = Enum.FormFactor.Custom
  708. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  709. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  710. p1.CanCollide = false
  711. p1.Locked = true
  712. p1.BottomSurface = Enum.SurfaceType.Smooth
  713. p1.TopSurface = Enum.SurfaceType.Smooth
  714. b1 = Instance.new("BlockMesh", p1)
  715. b1.Name = "Mesh"
  716. p2 = Instance.new("WedgePart", m)
  717. p2.BrickColor = BrickColor.new("Really black")
  718. p2.Name = "Wedge"
  719. p2.FormFactor = Enum.FormFactor.Custom
  720. p2.Size = Vector3.new(3, 1, 0.5)
  721. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  722. p2.CanCollide = false
  723. p2.Locked = true
  724. p2.BottomSurface = Enum.SurfaceType.Smooth
  725. p2.TopSurface = Enum.SurfaceType.Smooth
  726. p3 = Instance.new("Part", m)
  727. p3.BrickColor = BrickColor.new("Really black")
  728. p3.FormFactor = Enum.FormFactor.Custom
  729. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  730. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  731. p3.CanCollide = false
  732. p3.Locked = true
  733. p3.BottomSurface = Enum.SurfaceType.Smooth
  734. p3.TopSurface = Enum.SurfaceType.Smooth
  735. b2 = Instance.new("BlockMesh", p3)
  736. b2.Name = "Mesh"
  737. p4 = Instance.new("WedgePart", m)
  738. p4.BrickColor = BrickColor.new("Really black")
  739. p4.Name = "Wedge"
  740. p4.FormFactor = Enum.FormFactor.Custom
  741. p4.Size = Vector3.new(3, 1, 0.5)
  742. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  743. p4.CanCollide = false
  744. p4.Locked = true
  745. p4.BottomSurface = Enum.SurfaceType.Smooth
  746. p4.TopSurface = Enum.SurfaceType.Smooth
  747. p5 = Instance.new("Part", m)
  748. p5.BrickColor = BrickColor.new("Really black")
  749. p5.FormFactor = Enum.FormFactor.Custom
  750. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  751. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  752. p5.CanCollide = false
  753. p5.Locked = true
  754. p5.BottomSurface = Enum.SurfaceType.Smooth
  755. p5.TopSurface = Enum.SurfaceType.Smooth
  756. b3 = Instance.new("BlockMesh", p5)
  757. b3.Name = "Mesh"
  758. p6 = Instance.new("Part", m)
  759. p6.BrickColor = BrickColor.new("Really black")
  760. p6.FormFactor = Enum.FormFactor.Custom
  761. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  762. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  763. p6.CanCollide = false
  764. p6.Locked = true
  765. p6.BottomSurface = Enum.SurfaceType.Smooth
  766. p6.TopSurface = Enum.SurfaceType.Smooth
  767. b4 = Instance.new("BlockMesh", p6)
  768. b4.Name = "Mesh"
  769. p7 = Instance.new("Part", m)
  770. p7.BrickColor = BrickColor.new("Really black")
  771. p7.FormFactor = Enum.FormFactor.Custom
  772. p7.Size = Vector3.new(3, 1, 1.20000005)
  773. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  774. p7.CanCollide = false
  775. p7.Locked = true
  776. p7.BottomSurface = Enum.SurfaceType.Smooth
  777. p7.TopSurface = Enum.SurfaceType.Smooth
  778. b5 = Instance.new("BlockMesh", p7)
  779. b5.Name = "Mesh"
  780. p8 = Instance.new("Part", m)
  781. p8.BrickColor = BrickColor.new("Bright blue")
  782. p8.Material = "Neon"
  783. p8.FormFactor = Enum.FormFactor.Symmetric
  784. p8.Size = Vector3.new(1, 1, 1)
  785. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  786. p8.CanCollide = false
  787. p8.Locked = true
  788. b6 = Instance.new("SpecialMesh", p8)
  789. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  790. b6.TextureId = ""
  791. b6.MeshType = Enum.MeshType.FileMesh
  792. b6.Name = "Mesh"
  793. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  794. p9 = Instance.new("Part", m)
  795. p9.BrickColor = BrickColor.new("Really black")
  796. p9.FormFactor = Enum.FormFactor.Custom
  797. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  798. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  799. p9.CanCollide = false
  800. p9.Locked = true
  801. p9.BottomSurface = Enum.SurfaceType.Smooth
  802. p9.TopSurface = Enum.SurfaceType.Smooth
  803. b7 = Instance.new("BlockMesh", p9)
  804. b7.Name = "Mesh"
  805. p10 = Instance.new("Part", m)
  806. p10.BrickColor = BrickColor.new("Bright blue")
  807. p10.Material = "Neon"
  808. p10.FormFactor = Enum.FormFactor.Symmetric
  809. p10.Size = Vector3.new(1, 1, 1)
  810. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  811. p10.CanCollide = false
  812. p10.Locked = true
  813. b8 = Instance.new("SpecialMesh", p10)
  814. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  815. b8.TextureId = ""
  816. b8.MeshType = Enum.MeshType.FileMesh
  817. b8.Name = "Mesh"
  818. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  819. p11 = Instance.new("Part", m)
  820. p11.BrickColor = BrickColor.new("Really black")
  821. p11.FormFactor = Enum.FormFactor.Custom
  822. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  823. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  824. p11.CanCollide = false
  825. p11.Locked = true
  826. p11.BottomSurface = Enum.SurfaceType.Smooth
  827. p11.TopSurface = Enum.SurfaceType.Smooth
  828. b9 = Instance.new("BlockMesh", p11)
  829. b9.Name = "Mesh"
  830. p12 = Instance.new("Part", m)
  831. p12.BrickColor = BrickColor.new("Really black")
  832. p12.FormFactor = Enum.FormFactor.Custom
  833. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  834. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  835. p12.CanCollide = false
  836. p12.Locked = true
  837. p12.BottomSurface = Enum.SurfaceType.Smooth
  838. p12.TopSurface = Enum.SurfaceType.Smooth
  839. b10 = Instance.new("BlockMesh", p12)
  840. b10.Name = "Mesh"
  841. p13 = Instance.new("Part", m)
  842. p13.BrickColor = BrickColor.new("Really black")
  843. p13.FormFactor = Enum.FormFactor.Custom
  844. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  845. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  846. p13.CanCollide = false
  847. p13.Locked = true
  848. p13.BottomSurface = Enum.SurfaceType.Smooth
  849. p13.TopSurface = Enum.SurfaceType.Smooth
  850. b11 = Instance.new("BlockMesh", p13)
  851. b11.Name = "Mesh"
  852. p14 = Instance.new("Part", m)
  853. p14.BrickColor = BrickColor.new("Bright blue")
  854. p14.Material = "Neon"
  855. p14.FormFactor = Enum.FormFactor.Symmetric
  856. p14.Size = Vector3.new(1, 1, 1)
  857. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  858. p14.CanCollide = false
  859. p14.Locked = true
  860. b12 = Instance.new("SpecialMesh", p14)
  861. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  862. b12.TextureId = ""
  863. b12.MeshType = Enum.MeshType.FileMesh
  864. b12.Name = "Mesh"
  865. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  866. p15 = Instance.new("Part", m)
  867. p15.BrickColor = BrickColor.new("Medium stone grey")
  868. p15.Transparency = 1
  869. p15.Name = "ArmPart"
  870. p15.FormFactor = Enum.FormFactor.Custom
  871. p15.Size = Vector3.new(2, 1, 1)
  872. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  873. p15.CanCollide = false
  874. p15.Locked = true
  875. p15.BottomSurface = Enum.SurfaceType.Smooth
  876. p15.TopSurface = Enum.SurfaceType.Smooth
  877. b13 = Instance.new("BlockMesh", p15)
  878. b13.Name = "Mesh"
  879. p16 = Instance.new("Part", m)
  880. p16.BrickColor = BrickColor.new("Really black")
  881. p16.FormFactor = Enum.FormFactor.Custom
  882. p16.Size = Vector3.new(3, 1, 2.4000001)
  883. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  884. p16.CanCollide = false
  885. p16.Locked = true
  886. p16.BottomSurface = Enum.SurfaceType.Smooth
  887. p16.TopSurface = Enum.SurfaceType.Smooth
  888. b14 = Instance.new("BlockMesh", p16)
  889. b14.Name = "Mesh"
  890. p17 = Instance.new("Part", m)
  891. p17.BrickColor = BrickColor.new("Really black")
  892. p17.FormFactor = Enum.FormFactor.Custom
  893. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  894. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  895. p17.CanCollide = false
  896. p17.Locked = true
  897. p17.BottomSurface = Enum.SurfaceType.Smooth
  898. p17.TopSurface = Enum.SurfaceType.Smooth
  899. b15 = Instance.new("BlockMesh", p17)
  900. b15.Name = "Mesh"
  901. p18 = Instance.new("Part", m)
  902. p18.BrickColor = BrickColor.new("Bright blue")
  903. p18.Material = "Neon"
  904. p18.FormFactor = Enum.FormFactor.Symmetric
  905. p18.Size = Vector3.new(1, 1, 1)
  906. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  907. p18.CanCollide = false
  908. p18.Locked = true
  909. b16 = Instance.new("SpecialMesh", p18)
  910. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  911. b16.TextureId = ""
  912. b16.MeshType = Enum.MeshType.FileMesh
  913. b16.Name = "Mesh"
  914. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  915. p19 = Instance.new("Part", m)
  916. p19.BrickColor = BrickColor.new("Bright blue")
  917. p19.Material = "Neon"
  918. p19.FormFactor = Enum.FormFactor.Symmetric
  919. p19.Size = Vector3.new(1, 1, 1)
  920. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  921. p19.CanCollide = false
  922. p19.Locked = true
  923. b17 = Instance.new("SpecialMesh", p19)
  924. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  925. b17.TextureId = ""
  926. b17.MeshType = Enum.MeshType.FileMesh
  927. b17.Name = "Mesh"
  928. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  929. p20 = Instance.new("Part", m)
  930. p20.BrickColor = BrickColor.new("Really black")
  931. p20.FormFactor = Enum.FormFactor.Custom
  932. p20.Size = Vector3.new(3, 1, 2.4000001)
  933. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  934. p20.CanCollide = false
  935. p20.Locked = true
  936. p20.BottomSurface = Enum.SurfaceType.Smooth
  937. p20.TopSurface = Enum.SurfaceType.Smooth
  938. b18 = Instance.new("BlockMesh", p20)
  939. b18.Name = "Mesh"
  940. p21 = Instance.new("Part", m)
  941. p21.BrickColor = BrickColor.new("Really black")
  942. p21.FormFactor = Enum.FormFactor.Custom
  943. p21.Size = Vector3.new(3, 1, 1.19999993)
  944. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  945. p21.CanCollide = false
  946. p21.Locked = true
  947. p21.BottomSurface = Enum.SurfaceType.Smooth
  948. p21.TopSurface = Enum.SurfaceType.Smooth
  949. b19 = Instance.new("BlockMesh", p21)
  950. b19.Name = "Mesh"
  951. p22 = Instance.new("WedgePart", m)
  952. p22.BrickColor = BrickColor.new("Really black")
  953. p22.Name = "Wedge"
  954. p22.FormFactor = Enum.FormFactor.Custom
  955. p22.Size = Vector3.new(3, 1, 0.5)
  956. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  957. p22.CanCollide = false
  958. p22.Locked = true
  959. p22.BottomSurface = Enum.SurfaceType.Smooth
  960. p22.TopSurface = Enum.SurfaceType.Smooth
  961. p23 = Instance.new("Part", m)
  962. p23.BrickColor = BrickColor.new("Really black")
  963. p23.FormFactor = Enum.FormFactor.Custom
  964. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  965. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  966. p23.CanCollide = false
  967. p23.Locked = true
  968. p23.BottomSurface = Enum.SurfaceType.Smooth
  969. p23.TopSurface = Enum.SurfaceType.Smooth
  970. b20 = Instance.new("BlockMesh", p23)
  971. b20.Name = "Mesh"
  972. p24 = Instance.new("WedgePart", m)
  973. p24.BrickColor = BrickColor.new("Really black")
  974. p24.Name = "Wedge"
  975. p24.FormFactor = Enum.FormFactor.Custom
  976. p24.Size = Vector3.new(3, 1, 0.5)
  977. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  978. p24.CanCollide = false
  979. p24.Locked = true
  980. p24.BottomSurface = Enum.SurfaceType.Smooth
  981. p24.TopSurface = Enum.SurfaceType.Smooth
  982. p25 = Instance.new("Part", m)
  983. p25.BrickColor = BrickColor.new("Bright blue")
  984. p25.Material = "Neon"
  985. p25.FormFactor = Enum.FormFactor.Symmetric
  986. p25.Size = Vector3.new(1, 1, 1)
  987. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  988. p25.CanCollide = false
  989. p25.Locked = true
  990. p25.BottomSurface = Enum.SurfaceType.Smooth
  991. p25.TopSurface = Enum.SurfaceType.Smooth
  992. b21 = Instance.new("SpecialMesh", p25)
  993. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  994. b21.TextureId = ""
  995. b21.MeshType = Enum.MeshType.FileMesh
  996. b21.Name = "Mesh"
  997. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  998. p26 = Instance.new("Part", m)
  999. p26.BrickColor = BrickColor.new("Really black")
  1000. p26.FormFactor = Enum.FormFactor.Symmetric
  1001. p26.Size = Vector3.new(1, 1, 1)
  1002. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  1003. p26.CanCollide = false
  1004. p26.Locked = true
  1005. p26.BottomSurface = Enum.SurfaceType.Smooth
  1006. p26.TopSurface = Enum.SurfaceType.Smooth
  1007. b22 = Instance.new("SpecialMesh", p26)
  1008. b22.MeshType = Enum.MeshType.Brick
  1009. b22.Name = "Mesh"
  1010. w1 = Instance.new("Weld", p1)
  1011. w1.Name = "Wedge_Weld"
  1012. w1.Part0 = p1
  1013. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  1014. w1.Part1 = p2
  1015. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  1016. w2 = Instance.new("Weld", p2)
  1017. w2.Name = "Part_Weld"
  1018. w2.Part0 = p2
  1019. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  1020. w2.Part1 = p3
  1021. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  1022. w3 = Instance.new("Weld", p3)
  1023. w3.Name = "Wedge_Weld"
  1024. w3.Part0 = p3
  1025. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  1026. w3.Part1 = p4
  1027. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  1028. w4 = Instance.new("Weld", p4)
  1029. w4.Name = "Part_Weld"
  1030. w4.Part0 = p4
  1031. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  1032. w4.Part1 = p5
  1033. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  1034. w5 = Instance.new("Weld", p5)
  1035. w5.Name = "Part_Weld"
  1036. w5.Part0 = p5
  1037. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  1038. w5.Part1 = p6
  1039. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  1040. w6 = Instance.new("Weld", p6)
  1041. w6.Name = "Part_Weld"
  1042. w6.Part0 = p6
  1043. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  1044. w6.Part1 = p7
  1045. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  1046. w7 = Instance.new("Weld", p7)
  1047. w7.Name = "Part_Weld"
  1048. w7.Part0 = p7
  1049. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  1050. w7.Part1 = p8
  1051. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  1052. w8 = Instance.new("Weld", p8)
  1053. w8.Name = "Part_Weld"
  1054. w8.Part0 = p8
  1055. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  1056. w8.Part1 = p9
  1057. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  1058. w9 = Instance.new("Weld", p9)
  1059. w9.Name = "Part_Weld"
  1060. w9.Part0 = p9
  1061. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  1062. w9.Part1 = p10
  1063. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  1064. w10 = Instance.new("Weld", p10)
  1065. w10.Name = "Part_Weld"
  1066. w10.Part0 = p10
  1067. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  1068. w10.Part1 = p11
  1069. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  1070. w11 = Instance.new("Weld", p11)
  1071. w11.Name = "Part_Weld"
  1072. w11.Part0 = p11
  1073. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  1074. w11.Part1 = p12
  1075. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  1076. w12 = Instance.new("Weld", p12)
  1077. w12.Name = "Part_Weld"
  1078. w12.Part0 = p12
  1079. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  1080. w12.Part1 = p13
  1081. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  1082. w13 = Instance.new("Weld", p13)
  1083. w13.Name = "Part_Weld"
  1084. w13.Part0 = p13
  1085. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  1086. w13.Part1 = p14
  1087. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  1088. w14 = Instance.new("Weld", p14)
  1089. w14.Name = "ArmPart_Weld"
  1090. w14.Part0 = p14
  1091. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  1092. w14.Part1 = p15
  1093. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1094. w15 = Instance.new("Weld", p15)
  1095. w15.Name = "Part_Weld"
  1096. w15.Part0 = p15
  1097. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  1098. w15.Part1 = p16
  1099. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1100. w16 = Instance.new("Weld", p16)
  1101. w16.Name = "Part_Weld"
  1102. w16.Part0 = p16
  1103. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  1104. w16.Part1 = p17
  1105. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  1106. w17 = Instance.new("Weld", p17)
  1107. w17.Name = "Part_Weld"
  1108. w17.Part0 = p17
  1109. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  1110. w17.Part1 = p18
  1111. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  1112. w18 = Instance.new("Weld", p18)
  1113. w18.Name = "Part_Weld"
  1114. w18.Part0 = p18
  1115. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  1116. w18.Part1 = p19
  1117. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  1118. w19 = Instance.new("Weld", p19)
  1119. w19.Name = "Part_Weld"
  1120. w19.Part0 = p19
  1121. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  1122. w19.Part1 = p20
  1123. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1124. w20 = Instance.new("Weld", p20)
  1125. w20.Name = "Part_Weld"
  1126. w20.Part0 = p20
  1127. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  1128. w20.Part1 = p21
  1129. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1130. w21 = Instance.new("Weld", p21)
  1131. w21.Name = "Wedge_Weld"
  1132. w21.Part0 = p21
  1133. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  1134. w21.Part1 = p22
  1135. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  1136. w22 = Instance.new("Weld", p22)
  1137. w22.Name = "Part_Weld"
  1138. w22.Part0 = p22
  1139. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  1140. w22.Part1 = p23
  1141. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  1142. w23 = Instance.new("Weld", p23)
  1143. w23.Name = "Wedge_Weld"
  1144. w23.Part0 = p23
  1145. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  1146. w23.Part1 = p24
  1147. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  1148. w24 = Instance.new("Weld", p24)
  1149. w24.Name = "Part_Weld"
  1150. w24.Part0 = p24
  1151. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  1152. w24.Part1 = p25
  1153. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  1154. w25 = Instance.new("Weld", p25)
  1155. w25.Name = "Part_Weld"
  1156. w25.Part0 = p25
  1157. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  1158. w25.Part1 = p26
  1159. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  1160. m.Parent = char
  1161. m:MakeJoints()
  1162. ----------------------------------------------------
  1163. local cor2 = Instance.new("Part", char.Claw)
  1164. cor2.Name = "Thingy"
  1165. cor2.Locked = true
  1166. cor2.BottomSurface = 0
  1167. cor2.CanCollide = false
  1168. cor2.Size = Vector3.new(2, 1, 1)
  1169. cor2.Transparency = 1
  1170. cor2.TopSurface = 0
  1171. corw2 = Instance.new("Weld", cor2)
  1172. corw2.Part0 = larm
  1173. corw2.Part1 = cor2
  1174. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1175. corw2.C1 = CFrame.new(0, 0, 0)
  1176. weld2 = Instance.new("Weld", char.Claw)
  1177. weld2.Part0 = cor2
  1178. weld2.Part1 = char.Claw.ArmPart
  1179. weld2.C0 = CFrame.new(0, 0, 0)
  1180. ----------------------------------------------------
  1181. local m = Instance.new("Model")
  1182. m.Name = "LeftArm"
  1183. p1 = Instance.new("WedgePart", m)
  1184. p1.BrickColor = BrickColor.new("Bright blue")
  1185. p1.Material = Enum.Material.Neon
  1186. p1.Name = "Wedge"
  1187. p1.FormFactor = Enum.FormFactor.Custom
  1188. p1.Size = Vector3.new(1, 1.19999981, 4)
  1189. p1.CFrame = CFrame.new(60.830101, 8.39941978, -13.7674818, 1.52359269e-006, -0.707334042, 0.707343757, -2.62521735e-006, 0.707093, 0.707071185, -1.00027835, 3.43534703e-006, 4.43342998e-007)
  1190. p1.CanCollide = false
  1191. p1.Locked = true
  1192. p1.TopSurface = Enum.SurfaceType.Smooth
  1193. b1 = Instance.new("SpecialMesh", p1)
  1194. b1.MeshType = Enum.MeshType.Wedge
  1195. b1.Name = "Mesh"
  1196. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1197. p2 = Instance.new("WedgePart", m)
  1198. p2.BrickColor = BrickColor.new("Bright blue")
  1199. p2.Material = Enum.Material.Neon
  1200. p2.Name = "Wedge"
  1201. p2.FormFactor = Enum.FormFactor.Custom
  1202. p2.Size = Vector3.new(1, 1.19999981, 4)
  1203. p2.CFrame = CFrame.new(60.8306694, 8.39941502, -12.5672398, 1.56085741e-006, -0.707337618, 0.707340181, -2.7146209e-006, 0.707089424, 0.707074761, -1.00027835, 3.34575839e-006, 4.06471969e-007)
  1204. p2.CanCollide = false
  1205. p2.Locked = true
  1206. p2.TopSurface = Enum.SurfaceType.Smooth
  1207. b2 = Instance.new("SpecialMesh", p2)
  1208. b2.MeshType = Enum.MeshType.Wedge
  1209. b2.Name = "Mesh"
  1210. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1211. p3 = Instance.new("WedgePart", m)
  1212. p3.BrickColor = BrickColor.new("Bright blue")
  1213. p3.Material = Enum.Material.Neon
  1214. p3.Name = "Wedge"
  1215. p3.FormFactor = Enum.FormFactor.Custom
  1216. p3.Size = Vector3.new(1, 1.19999981, 4)
  1217. p3.CFrame = CFrame.new(60.8312187, 8.39939976, -13.1675138, 1.66519976e-006, -0.707341254, 0.707336545, -2.72952207e-006, 0.707085788, 0.707078397, -1.00027835, 3.26143936e-006, 4.69727013e-007)
  1218. p3.CanCollide = false
  1219. p3.Locked = true
  1220. p3.TopSurface = Enum.SurfaceType.Smooth
  1221. b3 = Instance.new("SpecialMesh", p3)
  1222. b3.MeshType = Enum.MeshType.Wedge
  1223. b3.Name = "Mesh"
  1224. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1225. p4 = Instance.new("WedgePart", m)
  1226. p4.BrickColor = BrickColor.new("Bright blue")
  1227. p4.Material = Enum.Material.Neon
  1228. p4.Name = "Wedge"
  1229. p4.FormFactor = Enum.FormFactor.Custom
  1230. p4.Size = Vector3.new(1, 1.19999981, 4)
  1231. p4.CFrame = CFrame.new(60.8317757, 8.39937305, -13.1676111, 1.74718321e-006, -0.70734489, 0.707332909, -2.7742235e-006, 0.707082152, 0.707082033, -1.00027835, 3.17185027e-006, 4.96093037e-007)
  1232. p4.CanCollide = false
  1233. p4.Locked = true
  1234. p4.TopSurface = Enum.SurfaceType.Smooth
  1235. b4 = Instance.new("SpecialMesh", p4)
  1236. b4.MeshType = Enum.MeshType.Wedge
  1237. b4.Name = "Mesh"
  1238. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1239. p5 = Instance.new("WedgePart", m)
  1240. p5.BrickColor = BrickColor.new("Bright blue")
  1241. p5.Material = Enum.Material.Neon
  1242. p5.Name = "Wedge"
  1243. p5.FormFactor = Enum.FormFactor.Custom
  1244. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1245. p5.CFrame = CFrame.new(60.4623528, 9.0813055, -13.1677084, -1.74365277e-006, 0.422768414, 0.90661031, 3.01146247e-006, -0.90627563, 0.422602654, 1.00028574, -3.16541991e-006, -6.48408104e-007)
  1246. p5.CanCollide = false
  1247. p5.Locked = true
  1248. p5.TopSurface = Enum.SurfaceType.Smooth
  1249. b5 = Instance.new("SpecialMesh", p5)
  1250. b5.MeshType = Enum.MeshType.Wedge
  1251. b5.Name = "Mesh"
  1252. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1253. p6 = Instance.new("WedgePart", m)
  1254. p6.BrickColor = BrickColor.new("Bright blue")
  1255. p6.Material = Enum.Material.Neon
  1256. p6.Name = "Wedge"
  1257. p6.FormFactor = Enum.FormFactor.Custom
  1258. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1259. p6.CFrame = CFrame.new(60.4629173, 9.08128643, -13.7679863, -1.75857326e-006, 0.422772557, 0.906618714, 3.13068858e-006, -0.906274974, 0.422602147, 1.00029314, -3.27979569e-006, -6.11540997e-007)
  1260. p6.CanCollide = false
  1261. p6.Locked = true
  1262. p6.TopSurface = Enum.SurfaceType.Smooth
  1263. b6 = Instance.new("SpecialMesh", p6)
  1264. b6.MeshType = Enum.MeshType.Wedge
  1265. b6.Name = "Mesh"
  1266. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1267. p7 = Instance.new("WedgePart", m)
  1268. p7.BrickColor = BrickColor.new("Bright blue")
  1269. p7.Material = Enum.Material.Neon
  1270. p7.Name = "Wedge"
  1271. p7.FormFactor = Enum.FormFactor.Custom
  1272. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1273. p7.CFrame = CFrame.new(60.4634781, 9.0812645, -12.5677195, -1.77349398e-006, 0.422776699, 0.906627119, 3.24991538e-006, -0.906274319, 0.42260164, 1.00030053, -3.39417238e-006, -5.74673834e-007)
  1274. p7.CanCollide = false
  1275. p7.Locked = true
  1276. p7.TopSurface = Enum.SurfaceType.Smooth
  1277. b7 = Instance.new("SpecialMesh", p7)
  1278. b7.MeshType = Enum.MeshType.Wedge
  1279. b7.Name = "Mesh"
  1280. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1281. p8 = Instance.new("Part", m)
  1282. p8.BrickColor = BrickColor.new("Really black")
  1283. p8.Material = Enum.Material.Neon
  1284. p8.FormFactor = Enum.FormFactor.Custom
  1285. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1286. p8.CFrame = CFrame.new(62.1344833, 9.89923668, -14.2683573, 1.0003655, -9.00030136e-006, -1.6914961e-006, -8.34465027e-007, 0.999961495, 3.15914986e-006, -2.15653972e-006, 3.05826416e-006, 1.00030792)
  1287. p8.CanCollide = false
  1288. p8.Locked = true
  1289. p8.BottomSurface = Enum.SurfaceType.Smooth
  1290. p8.TopSurface = Enum.SurfaceType.Smooth
  1291. b8 = Instance.new("SpecialMesh", p8)
  1292. b8.MeshType = Enum.MeshType.Sphere
  1293. b8.Name = "Mesh"
  1294. p9 = Instance.new("Part", m)
  1295. p9.BrickColor = BrickColor.new("Really black")
  1296. p9.Material = Enum.Material.Neon
  1297. p9.FormFactor = Enum.FormFactor.Custom
  1298. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1299. p9.CFrame = CFrame.new(62.1350441, 7.19933271, -14.2684784, 1.00037432, -9.11423649e-006, -1.78677055e-006, -8.82557742e-007, 0.999960482, 3.17407398e-006, -2.19382355e-006, 3.14769591e-006, 1.00031543)
  1300. p9.CanCollide = false
  1301. p9.Locked = true
  1302. p9.BottomSurface = Enum.SurfaceType.Smooth
  1303. p9.TopSurface = Enum.SurfaceType.Smooth
  1304. b9 = Instance.new("SpecialMesh", p9)
  1305. b9.MeshType = Enum.MeshType.Sphere
  1306. b9.Name = "Mesh"
  1307. p10 = Instance.new("Part", m)
  1308. p10.BrickColor = BrickColor.new("Bright blue")
  1309. p10.Material = Enum.Material.Neon
  1310. p10.FormFactor = Enum.FormFactor.Custom
  1311. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1312. p10.CFrame = CFrame.new(62.4732666, 7.92819929, -14.2685785, -0.906659067, -0.422771662, -1.80169195e-006, 0.422602057, -0.906270981, 3.2933026e-006, 3.38190716e-006, -1.99476835e-006, 1.00032294)
  1313. p10.CanCollide = false
  1314. p10.Locked = true
  1315. p10.BottomSurface = Enum.SurfaceType.Smooth
  1316. p10.TopSurface = Enum.SurfaceType.Smooth
  1317. p11 = Instance.new("Part", m)
  1318. p11.BrickColor = BrickColor.new("Bright blue")
  1319. p11.Material = Enum.Material.Neon
  1320. p11.FormFactor = Enum.FormFactor.Custom
  1321. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1322. p11.CFrame = CFrame.new(62.4794731, 9.45469475, -14.2686787, -0.819467902, 0.573809147, -1.81661335e-006, -0.573551893, -0.819118977, 3.41253167e-006, -9.27350783e-008, -4.03244348e-006, 1.00033033)
  1323. p11.CanCollide = false
  1324. p11.Locked = true
  1325. p11.BottomSurface = Enum.SurfaceType.Smooth
  1326. p11.TopSurface = Enum.SurfaceType.Smooth
  1327. p12 = Instance.new("Part", m)
  1328. p12.BrickColor = BrickColor.new("Really black")
  1329. p12.Material = Enum.Material.Neon
  1330. p12.FormFactor = Enum.FormFactor.Custom
  1331. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1332. p12.CFrame = CFrame.new(62.7369499, 6.29933262, -14.2688055, 1.00040102, -9.53674316e-006, -1.84644205e-006, -1.25169754e-006, 0.999957919, 3.50196092e-006, -2.25187659e-006, 3.46763295e-006, 1.00033784)
  1333. p12.CanCollide = false
  1334. p12.Locked = true
  1335. p12.BottomSurface = Enum.SurfaceType.Smooth
  1336. p12.TopSurface = Enum.SurfaceType.Smooth
  1337. b10 = Instance.new("SpecialMesh", p12)
  1338. b10.MeshType = Enum.MeshType.Sphere
  1339. b10.Name = "Mesh"
  1340. p13 = Instance.new("Part", m)
  1341. p13.BrickColor = BrickColor.new("Bright blue")
  1342. p13.Material = Enum.Material.Neon
  1343. p13.FormFactor = Enum.FormFactor.Custom
  1344. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1345. p13.CFrame = CFrame.new(62.8003883, 10.1991549, -13.2136488, 1.00040984, -9.59636054e-006, -1.88372474e-006, -1.43051466e-006, 0.999956846, 3.58340549e-006, -2.3487878e-006, 3.4825357e-006, 1.00034535)
  1346. p13.CanCollide = false
  1347. p13.Locked = true
  1348. p13.BottomSurface = Enum.SurfaceType.Smooth
  1349. p13.TopSurface = Enum.SurfaceType.Smooth
  1350. b11 = Instance.new("SpecialMesh", p13)
  1351. b11.MeshType = Enum.MeshType.Sphere
  1352. b11.Name = "Mesh"
  1353. p14 = Instance.new("Part", m)
  1354. p14.BrickColor = BrickColor.new("Really black")
  1355. p14.Material = Enum.Material.Neon
  1356. p14.FormFactor = Enum.FormFactor.Custom
  1357. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1358. p14.CFrame = CFrame.new(62.7374802, 9.79915905, -14.2689018, 1.00041437, -9.80505502e-006, -1.96572228e-006, -1.37091877e-006, 0.999956131, 3.62812011e-006, -2.37115751e-006, 3.4527211e-006, 1.00034904)
  1359. p14.CanCollide = false
  1360. p14.Locked = true
  1361. p14.BottomSurface = Enum.SurfaceType.Smooth
  1362. p14.TopSurface = Enum.SurfaceType.Smooth
  1363. b12 = Instance.new("SpecialMesh", p14)
  1364. b12.MeshType = Enum.MeshType.Sphere
  1365. b12.Name = "Mesh"
  1366. p15 = Instance.new("Part", m)
  1367. p15.BrickColor = BrickColor.new("Really black")
  1368. p15.Material = Enum.Material.Metal
  1369. p15.Name = "Main"
  1370. p15.FormFactor = Enum.FormFactor.Custom
  1371. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1372. p15.CFrame = CFrame.new(62.838131, 8.1992178, -13.1686192, 1.00041902, -9.80505047e-006, -1.96572933e-006, -1.54973122e-006, 0.999955654, 3.62813353e-006, -2.38607572e-006, 3.57197018e-006, 1.00035274)
  1373. p15.CanCollide = false
  1374. p15.Locked = true
  1375. p15.BottomSurface = Enum.SurfaceType.Smooth
  1376. p15.TopSurface = Enum.SurfaceType.Smooth
  1377. p16 = Instance.new("Part", m)
  1378. p16.BrickColor = BrickColor.new("Really black")
  1379. p16.Material = Enum.Material.Neon
  1380. p16.FormFactor = Enum.FormFactor.Custom
  1381. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1382. p16.CFrame = CFrame.new(62.9387741, 8.79918098, -14.2691231, 1.0004282, -9.95411301e-006, -2.00301338e-006, -1.66894927e-006, 0.999954581, 3.71756369e-006, -2.46808372e-006, 3.61668594e-006, 1.00036013)
  1383. p16.CanCollide = false
  1384. p16.Locked = true
  1385. p16.BottomSurface = Enum.SurfaceType.Smooth
  1386. p16.TopSurface = Enum.SurfaceType.Smooth
  1387. b13 = Instance.new("SpecialMesh", p16)
  1388. b13.MeshType = Enum.MeshType.Sphere
  1389. b13.Name = "Mesh"
  1390. p17 = Instance.new("Part", m)
  1391. p17.BrickColor = BrickColor.new("Bright blue")
  1392. p17.Material = Enum.Material.Neon
  1393. p17.FormFactor = Enum.FormFactor.Custom
  1394. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1395. p17.CFrame = CFrame.new(63.0825539, 6.854743, -14.2692442, -0.866409063, -0.50020963, -2.099928e-006, 0.499978155, -0.86598444, 3.73249213e-006, 4.01878242e-006, -1.94999211e-006, 1.00036764)
  1396. p17.CanCollide = false
  1397. p17.Locked = true
  1398. p17.BottomSurface = Enum.SurfaceType.Smooth
  1399. p17.TopSurface = Enum.SurfaceType.Smooth
  1400. p18 = Instance.new("Part", m)
  1401. p18.BrickColor = BrickColor.new("Bright blue")
  1402. p18.Material = Enum.Material.Neon
  1403. p18.FormFactor = Enum.FormFactor.Custom
  1404. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1405. p18.CFrame = CFrame.new(63.1831665, 8.15466595, -14.2693415, -0.906707585, 0.422816038, -2.11485258e-006, -0.422596663, -0.906265914, 3.8437388e-006, 6.9698217e-007, -4.50413063e-006, 1.00037515)
  1406. p18.CanCollide = false
  1407. p18.Locked = true
  1408. p18.BottomSurface = Enum.SurfaceType.Smooth
  1409. p18.TopSurface = Enum.SurfaceType.Smooth
  1410. p19 = Instance.new("Part", m)
  1411. p19.BrickColor = BrickColor.new("Bright blue")
  1412. p19.Material = Enum.Material.Neon
  1413. p19.FormFactor = Enum.FormFactor.Custom
  1414. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1415. p19.CFrame = CFrame.new(63.2069473, 8.53140068, -14.2694473, -0.707418501, 0.707425714, -2.09994369e-006, -0.707068563, -0.707078457, 3.72453474e-006, -9.59315798e-007, -4.56575162e-006, 1.00037515)
  1416. p19.CanCollide = false
  1417. p19.Locked = true
  1418. p19.BottomSurface = Enum.SurfaceType.Smooth
  1419. p19.TopSurface = Enum.SurfaceType.Smooth
  1420. p20 = Instance.new("Part", m)
  1421. p20.BrickColor = BrickColor.new("Bright blue")
  1422. p20.Material = Enum.Material.Neon
  1423. p20.FormFactor = Enum.FormFactor.Custom
  1424. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1425. p20.CFrame = CFrame.new(63.2280884, 9.68191624, -14.2694416, -0.342169315, 0.940117717, -2.11486008e-006, -0.93964541, -0.342010528, 3.84375198e-006, -2.7989995e-006, -3.73256239e-006, 1.00037885)
  1426. p20.CanCollide = false
  1427. p20.Locked = true
  1428. p20.BottomSurface = Enum.SurfaceType.Smooth
  1429. p20.TopSurface = Enum.SurfaceType.Smooth
  1430. p21 = Instance.new("Part", m)
  1431. p21.BrickColor = BrickColor.new("Bright blue")
  1432. p21.Material = Enum.Material.Neon
  1433. p21.FormFactor = Enum.FormFactor.Custom
  1434. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1435. p21.CFrame = CFrame.new(63.3539009, 9.07959557, -14.2694454, 0.707428038, 0.707422554, -2.12876989e-006, -0.707079053, 0.707067132, 3.83015185e-006, -4.56554562e-006, 9.7875602e-007, 1.00037885)
  1436. p21.CanCollide = false
  1437. p21.Locked = true
  1438. p21.BottomSurface = Enum.SurfaceType.Smooth
  1439. p21.TopSurface = Enum.SurfaceType.Smooth
  1440. p22 = Instance.new("Part", m)
  1441. p22.BrickColor = BrickColor.new("Really black")
  1442. p22.Material = Enum.Material.Neon
  1443. p22.FormFactor = Enum.FormFactor.Custom
  1444. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1445. p22.CFrame = CFrame.new(63.4412346, 7.49916172, -14.269558, 1.0004549, -5.30481339e-006, -2.11486781e-006, -7.24196434e-006, 0.999951959, 3.84376608e-006, -2.5650661e-006, 4.02606338e-006, 1.00038254)
  1446. p22.CanCollide = false
  1447. p22.Locked = true
  1448. p22.BottomSurface = Enum.SurfaceType.Smooth
  1449. p22.TopSurface = Enum.SurfaceType.Smooth
  1450. b14 = Instance.new("SpecialMesh", p22)
  1451. b14.MeshType = Enum.MeshType.Sphere
  1452. b14.Name = "Mesh"
  1453. p23 = Instance.new("Part", m)
  1454. p23.BrickColor = BrickColor.new("Really black")
  1455. p23.Material = Enum.Material.Neon
  1456. p23.FormFactor = Enum.FormFactor.Custom
  1457. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1458. p23.CFrame = CFrame.new(63.5412827, 8.29912186, -14.2695541, 1.00045943, -5.54520193e-006, -2.12978443e-006, -7.22709638e-006, 0.999951601, 3.96298356e-006, -2.56507747e-006, 4.02606247e-006, 1.00038624)
  1459. p23.CanCollide = false
  1460. p23.Locked = true
  1461. p23.BottomSurface = Enum.SurfaceType.Smooth
  1462. p23.TopSurface = Enum.SurfaceType.Smooth
  1463. b15 = Instance.new("SpecialMesh", p23)
  1464. b15.MeshType = Enum.MeshType.Sphere
  1465. b15.Name = "Mesh"
  1466. p24 = Instance.new("Part", m)
  1467. p24.BrickColor = BrickColor.new("Really black")
  1468. p24.Material = Enum.Material.Neon
  1469. p24.FormFactor = Enum.FormFactor.Custom
  1470. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1471. p24.CFrame = CFrame.new(63.7413521, 9.49905682, -14.2695513, 1.00045943, -5.51538596e-006, -2.12978443e-006, -7.25689733e-006, 0.999951601, 3.96298356e-006, -2.56507769e-006, 4.02606247e-006, 1.00038624)
  1472. p24.CanCollide = false
  1473. p24.Locked = true
  1474. p24.BottomSurface = Enum.SurfaceType.Smooth
  1475. p24.TopSurface = Enum.SurfaceType.Smooth
  1476. b16 = Instance.new("SpecialMesh", p24)
  1477. b16.MeshType = Enum.MeshType.Sphere
  1478. b16.Name = "Mesh"
  1479. w1 = Instance.new("Weld", p1)
  1480. w1.Name = "Wedge_Weld"
  1481. w1.Part0 = p1
  1482. w1.C0 = CFrame.new(-13.7623367, 38.4686089, -47.5196228, 1.82382877e-007, -1.21785519e-007, -1.0000037, -0.707109988, 0.707106709, -1.20249211e-007, 0.707110047, 0.707106352, 1.16605563e-007)
  1483. w1.Part1 = p2
  1484. w1.C1 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1485. w2 = Instance.new("Weld", p2)
  1486. w2.Name = "Wedge_Weld"
  1487. w2.Part0 = p2
  1488. w2.C0 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1489. w2.Part1 = p3
  1490. w2.C1 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1491. w3 = Instance.new("Weld", p3)
  1492. w3.Name = "Wedge_Weld"
  1493. w3.Part0 = p3
  1494. w3.C0 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1495. w3.Part1 = p4
  1496. w3.C1 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1497. w4 = Instance.new("Weld", p4)
  1498. w4.Name = "Wedge_Weld"
  1499. w4.Part0 = p4
  1500. w4.C0 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1501. w4.Part1 = p5
  1502. w4.C1 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1503. w5 = Instance.new("Weld", p5)
  1504. w5.Name = "Wedge_Weld"
  1505. w5.Part0 = p5
  1506. w5.C0 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1507. w5.Part1 = p6
  1508. w5.C1 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1509. w6 = Instance.new("Weld", p6)
  1510. w6.Name = "Wedge_Weld"
  1511. w6.Part0 = p6
  1512. w6.C0 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1513. w6.Part1 = p7
  1514. w6.C1 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1515. w7 = Instance.new("Weld", p7)
  1516. w7.Name = "Part_Weld"
  1517. w7.Part0 = p7
  1518. w7.C0 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1519. w7.Part1 = p8
  1520. w7.C1 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1521. w8 = Instance.new("Weld", p8)
  1522. w8.Name = "Part_Weld"
  1523. w8.Part0 = p8
  1524. w8.C0 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1525. w8.Part1 = p9
  1526. w8.C1 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1527. w9 = Instance.new("Weld", p9)
  1528. w9.Name = "Part_Weld"
  1529. w9.Part0 = p9
  1530. w9.C0 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1531. w9.Part1 = p10
  1532. w9.C1 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1533. w10 = Instance.new("Weld", p10)
  1534. w10.Name = "Part_Weld"
  1535. w10.Part0 = p10
  1536. w10.C0 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1537. w10.Part1 = p11
  1538. w10.C1 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1539. w11 = Instance.new("Weld", p11)
  1540. w11.Name = "Part_Weld"
  1541. w11.Part0 = p11
  1542. w11.C0 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1543. w11.Part1 = p12
  1544. w11.C1 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1545. w12 = Instance.new("Weld", p12)
  1546. w12.Name = "Part_Weld"
  1547. w12.Part0 = p12
  1548. w12.C0 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1549. w12.Part1 = p13
  1550. w12.C1 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1551. w13 = Instance.new("Weld", p13)
  1552. w13.Name = "Part_Weld"
  1553. w13.Part0 = p13
  1554. w13.C0 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1555. w13.Part1 = p14
  1556. w13.C1 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1557. w14 = Instance.new("Weld", p14)
  1558. w14.Name = "Part_Weld"
  1559. w14.Part0 = p14
  1560. w14.C0 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1561. w14.Part1 = p15
  1562. w14.C1 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1563. w15 = Instance.new("Weld", p15)
  1564. w15.Name = "Part_Weld"
  1565. w15.Part0 = p15
  1566. w15.C0 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1567. w15.Part1 = p16
  1568. w15.C1 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1569. w16 = Instance.new("Weld", p16)
  1570. w16.Name = "Part_Weld"
  1571. w16.Part0 = p16
  1572. w16.C0 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1573. w16.Part1 = p17
  1574. w16.C1 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1575. w17 = Instance.new("Weld", p17)
  1576. w17.Name = "Part_Weld"
  1577. w17.Part0 = p17
  1578. w17.C0 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1579. w17.Part1 = p18
  1580. w17.C1 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1581. w18 = Instance.new("Weld", p18)
  1582. w18.Name = "Part_Weld"
  1583. w18.Part0 = p18
  1584. w18.C0 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1585. w18.Part1 = p19
  1586. w18.C1 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1587. w19 = Instance.new("Weld", p19)
  1588. w19.Name = "Part_Weld"
  1589. w19.Part0 = p19
  1590. w19.C0 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1591. w19.Part1 = p20
  1592. w19.C1 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1593. w20 = Instance.new("Weld", p20)
  1594. w20.Name = "Part_Weld"
  1595. w20.Part0 = p20
  1596. w20.C0 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1597. w20.Part1 = p21
  1598. w20.C1 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1599. w21 = Instance.new("Weld", p21)
  1600. w21.Name = "Part_Weld"
  1601. w21.Part0 = p21
  1602. w21.C0 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1603. w21.Part1 = p22
  1604. w21.C1 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1605. w22 = Instance.new("Weld", p22)
  1606. w22.Name = "Part_Weld"
  1607. w22.Part0 = p22
  1608. w22.C0 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1609. w22.Part1 = p23
  1610. w22.C1 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1611. w23 = Instance.new("Weld", p23)
  1612. w23.Name = "Part_Weld"
  1613. w23.Part0 = p23
  1614. w23.C0 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1615. w23.Part1 = p24
  1616. w23.C1 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1617. w24 = Instance.new("Weld", p24)
  1618. w24.Name = "Part_Weld"
  1619. w24.Part0 = p24
  1620. w24.C0 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1621. m.Parent = larm
  1622. m:MakeJoints()
  1623. ----------------------------------------------------
  1624. local cor3 = Instance.new("Part", larm.LeftArm)
  1625. cor3.Name = "Thingy"
  1626. cor3.Locked = true
  1627. cor3.BottomSurface = 0
  1628. cor3.CanCollide = false
  1629. cor3.Size = Vector3.new(2, 1, 1)
  1630. cor3.Transparency = 1
  1631. cor3.TopSurface = 0
  1632. corw2 = Instance.new("Weld", cor3)
  1633. corw2.Part0 = larm
  1634. corw2.Part1 = cor3
  1635. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1636. corw2.C1 = CFrame.new(0, 0, 0)
  1637. weld2 = Instance.new("Weld", larm.LeftArm)
  1638. weld2.Part0 = cor3
  1639. weld2.Part1 = p15
  1640. weld2.C0 = CFrame.new(0, 0, 0)
  1641. ----------------------------------------------------
  1642. local m = Instance.new("Model")
  1643. m.Name = "RightArm"
  1644. p1 = Instance.new("WedgePart", m)
  1645. p1.BrickColor = BrickColor.new("Bright blue")
  1646. p1.Material = Enum.Material.Neon
  1647. p1.Name = "Wedge"
  1648. p1.FormFactor = Enum.FormFactor.Custom
  1649. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1650. p1.CFrame = CFrame.new(71.7528229, 9.08148766, -13.7657108, 2.20961255e-007, -0.422704399, -0.906498253, -1.70178805e-006, -0.906287491, 0.422612786, -1.00018191, -1.16194826e-006, 2.39246219e-006)
  1651. p1.CanCollide = false
  1652. p1.Locked = true
  1653. p1.TopSurface = Enum.SurfaceType.Smooth
  1654. b1 = Instance.new("SpecialMesh", p1)
  1655. b1.MeshType = Enum.MeshType.Wedge
  1656. b1.Name = "Mesh"
  1657. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1658. p2 = Instance.new("WedgePart", m)
  1659. p2.BrickColor = BrickColor.new("Bright blue")
  1660. p2.Material = Enum.Material.Neon
  1661. p2.Name = "Wedge"
  1662. p2.FormFactor = Enum.FormFactor.Custom
  1663. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1664. p2.CFrame = CFrame.new(71.7534714, 9.08147335, -12.5655851, 3.25293399e-007, -0.422708124, -0.906506479, -1.7167032e-006, -0.906286299, 0.422612339, -1.0001893, -1.13135729e-006, 2.49332743e-006)
  1665. p2.CanCollide = false
  1666. p2.Locked = true
  1667. p2.TopSurface = Enum.SurfaceType.Smooth
  1668. b2 = Instance.new("SpecialMesh", p2)
  1669. b2.MeshType = Enum.MeshType.Wedge
  1670. b2.Name = "Mesh"
  1671. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1672. p3 = Instance.new("WedgePart", m)
  1673. p3.BrickColor = BrickColor.new("Bright blue")
  1674. p3.Material = Enum.Material.Neon
  1675. p3.Name = "Wedge"
  1676. p3.FormFactor = Enum.FormFactor.Custom
  1677. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1678. p3.CFrame = CFrame.new(71.7541199, 9.08145237, -13.1658068, 4.29627249e-007, -0.422711849, -0.906514704, -1.73161834e-006, -0.906285107, 0.422611892, -1.0001967, -1.10076587e-006, 2.59419403e-006)
  1679. p3.CanCollide = false
  1680. p3.Locked = true
  1681. p3.TopSurface = Enum.SurfaceType.Smooth
  1682. b3 = Instance.new("SpecialMesh", p3)
  1683. b3.MeshType = Enum.MeshType.Wedge
  1684. b3.Name = "Mesh"
  1685. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1686. p4 = Instance.new("WedgePart", m)
  1687. p4.BrickColor = BrickColor.new("Bright blue")
  1688. p4.Material = Enum.Material.Neon
  1689. p4.Name = "Wedge"
  1690. p4.FormFactor = Enum.FormFactor.Custom
  1691. p4.Size = Vector3.new(1, 1.19999981, 4)
  1692. p4.CFrame = CFrame.new(71.4245453, 8.39948177, -13.7660398, -5.32960883e-007, 0.70726943, -0.707265258, 1.90324067e-006, 0.707083881, 0.707096815, 1.0001967, 9.87842554e-008, 2.61978244e-006)
  1693. p4.CanCollide = false
  1694. p4.Locked = true
  1695. p4.TopSurface = Enum.SurfaceType.Smooth
  1696. b4 = Instance.new("SpecialMesh", p4)
  1697. b4.MeshType = Enum.MeshType.Wedge
  1698. b4.Name = "Mesh"
  1699. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1700. p5 = Instance.new("WedgePart", m)
  1701. p5.BrickColor = BrickColor.new("Bright blue")
  1702. p5.Material = Enum.Material.Neon
  1703. p5.Name = "Wedge"
  1704. p5.FormFactor = Enum.FormFactor.Custom
  1705. p5.Size = Vector3.new(1, 1.19999981, 4)
  1706. p5.CFrame = CFrame.new(71.4251862, 8.39946651, -13.1660223, -6.3729243e-007, 0.707273066, -0.707261622, 1.91814229e-006, 0.707080245, 0.707100451, 1.0001967, 1.62003985e-007, 2.53547341e-006)
  1707. p5.CanCollide = false
  1708. p5.Locked = true
  1709. p5.TopSurface = Enum.SurfaceType.Smooth
  1710. b5 = Instance.new("SpecialMesh", p5)
  1711. b5.MeshType = Enum.MeshType.Wedge
  1712. b5.Name = "Mesh"
  1713. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1714. p6 = Instance.new("WedgePart", m)
  1715. p6.BrickColor = BrickColor.new("Bright blue")
  1716. p6.Material = Enum.Material.Neon
  1717. p6.Name = "Wedge"
  1718. p6.FormFactor = Enum.FormFactor.Custom
  1719. p6.Size = Vector3.new(1, 1.19999981, 4)
  1720. p6.CFrame = CFrame.new(71.4258194, 8.39945126, -12.5660009, -7.41623865e-007, 0.707276702, -0.707257986, 1.93304436e-006, 0.707076609, 0.707104087, 1.0001967, 2.25224142e-007, 2.45116462e-006)
  1721. p6.CanCollide = false
  1722. p6.Locked = true
  1723. p6.TopSurface = Enum.SurfaceType.Smooth
  1724. b6 = Instance.new("SpecialMesh", p6)
  1725. b6.MeshType = Enum.MeshType.Wedge
  1726. b6.Name = "Mesh"
  1727. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1728. p7 = Instance.new("Part", m)
  1729. p7.BrickColor = BrickColor.new("Really black")
  1730. p7.Material = Enum.Material.Neon
  1731. p7.FormFactor = Enum.FormFactor.Custom
  1732. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1733. p7.CFrame = CFrame.new(70.3255081, 6.6994977, -14.2663507, 1.00023162, 1.31726265e-005, -7.92685455e-007, -1.94311142e-005, 0.999976158, 1.97985287e-006, -1.62725564e-006, 1.86058458e-006, 1.00020039)
  1734. p7.CanCollide = false
  1735. p7.Locked = true
  1736. p7.BottomSurface = Enum.SurfaceType.Smooth
  1737. p7.TopSurface = Enum.SurfaceType.Smooth
  1738. b7 = Instance.new("SpecialMesh", p7)
  1739. b7.MeshType = Enum.MeshType.Sphere
  1740. b7.Name = "Mesh"
  1741. p8 = Instance.new("Part", m)
  1742. p8.BrickColor = BrickColor.new("Bright blue")
  1743. p8.Material = Enum.Material.Neon
  1744. p8.FormFactor = Enum.FormFactor.Custom
  1745. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1746. p8.CFrame = CFrame.new(70.0060196, 9.16293144, -14.2664633, 0.881308079, -0.429463804, -0.198316693, 0.401435703, 0.900625467, -0.166355878, 0.250050306, 0.0670034215, 0.966122985)
  1747. p8.CanCollide = false
  1748. p8.Locked = true
  1749. p8.BottomSurface = Enum.SurfaceType.Smooth
  1750. p8.TopSurface = Enum.SurfaceType.Smooth
  1751. p9 = Instance.new("Part", m)
  1752. p9.BrickColor = BrickColor.new("Really black")
  1753. p9.Material = Enum.Material.Neon
  1754. p9.FormFactor = Enum.FormFactor.Custom
  1755. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1756. p9.CFrame = CFrame.new(70.2268219, 8.59942532, -14.2665701, 1.00024557, 1.30422413e-005, -8.7916851e-007, -1.95577741e-005, 0.999974489, 1.9967556e-006, -1.75833702e-006, 2.01165676e-006, 1.00021148)
  1757. p9.CanCollide = false
  1758. p9.Locked = true
  1759. p9.BottomSurface = Enum.SurfaceType.Smooth
  1760. p9.TopSurface = Enum.SurfaceType.Smooth
  1761. b8 = Instance.new("SpecialMesh", p9)
  1762. b8.MeshType = Enum.MeshType.Sphere
  1763. b8.Name = "Mesh"
  1764. p10 = Instance.new("Part", m)
  1765. p10.BrickColor = BrickColor.new("Really black")
  1766. p10.Material = Enum.Material.Neon
  1767. p10.FormFactor = Enum.FormFactor.Custom
  1768. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1769. p10.CFrame = CFrame.new(69.8274002, 9.5993948, -14.266675, 1.00025487, 1.30049675e-005, -9.23888138e-007, -1.9595207e-005, 0.999973536, 2.11597762e-006, -1.80306665e-006, 2.13088947e-006, 1.00021887)
  1770. p10.CanCollide = false
  1771. p10.Locked = true
  1772. p10.BottomSurface = Enum.SurfaceType.Smooth
  1773. p10.TopSurface = Enum.SurfaceType.Smooth
  1774. b9 = Instance.new("SpecialMesh", p10)
  1775. b9.MeshType = Enum.MeshType.Sphere
  1776. b9.Name = "Mesh"
  1777. p11 = Instance.new("Part", m)
  1778. p11.BrickColor = BrickColor.new("Bright blue")
  1779. p11.Material = Enum.Material.Neon
  1780. p11.FormFactor = Enum.FormFactor.Custom
  1781. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1782. p11.CFrame = CFrame.new(69.693718, 7.37976837, -14.2265854, 0.690841019, -0.711695194, -0.129447505, 0.678571701, 0.699464202, -0.224133074, 0.250056893, 0.0670053288, 0.966144204)
  1783. p11.CanCollide = false
  1784. p11.Locked = true
  1785. p11.BottomSurface = Enum.SurfaceType.Smooth
  1786. p11.TopSurface = Enum.SurfaceType.Smooth
  1787. p12 = Instance.new("Part", m)
  1788. p12.BrickColor = BrickColor.new("Bright blue")
  1789. p12.Material = Enum.Material.Neon
  1790. p12.FormFactor = Enum.FormFactor.Custom
  1791. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1792. p12.CFrame = CFrame.new(69.47966, 8.73308277, -14.2467909, 0.176576898, -0.984305978, 0.022559464, 0.951990068, 0.164877579, -0.257825077, 0.25006038, 0.0670051575, 0.966151059)
  1793. p12.CanCollide = false
  1794. p12.Locked = true
  1795. p12.BottomSurface = Enum.SurfaceType.Smooth
  1796. p12.TopSurface = Enum.SurfaceType.Smooth
  1797. p13 = Instance.new("Part", m)
  1798. p13.BrickColor = BrickColor.new("Bright blue")
  1799. p13.Material = Enum.Material.Neon
  1800. p13.FormFactor = Enum.FormFactor.Custom
  1801. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1802. p13.CFrame = CFrame.new(69.3920746, 10.1993351, -13.2118578, 1.00028241, 1.27716921e-005, -1.06170774e-006, -1.99186616e-005, 0.999970496, 2.39908695e-006, -1.93528831e-006, 2.38418579e-006, 1.00024128)
  1803. p13.CanCollide = false
  1804. p13.Locked = true
  1805. p13.BottomSurface = Enum.SurfaceType.Smooth
  1806. p13.TopSurface = Enum.SurfaceType.Smooth
  1807. b10 = Instance.new("SpecialMesh", p13)
  1808. b10.MeshType = Enum.MeshType.Sphere
  1809. b10.Name = "Mesh"
  1810. p14 = Instance.new("Part", m)
  1811. p14.BrickColor = BrickColor.new("Really black")
  1812. p14.Material = Enum.Material.Metal
  1813. p14.Name = "Main"
  1814. p14.FormFactor = Enum.FormFactor.Custom
  1815. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1816. p14.CFrame = CFrame.new(69.4298401, 8.19937706, -13.1668339, 1.00029147, 1.25630004e-005, -1.16605349e-006, -2.0008245e-005, 0.999969125, 2.41400744e-006, -2.03963987e-006, 2.39908786e-006, 1.00024867)
  1817. p14.CanCollide = false
  1818. p14.Locked = true
  1819. p14.BottomSurface = Enum.SurfaceType.Smooth
  1820. p14.TopSurface = Enum.SurfaceType.Smooth
  1821. p15 = Instance.new("Part", m)
  1822. p15.BrickColor = BrickColor.new("Really black")
  1823. p15.Material = Enum.Material.Neon
  1824. p15.FormFactor = Enum.FormFactor.Custom
  1825. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1826. p15.CFrame = CFrame.new(69.1303406, 7.89936399, -14.2672224, 1.00030053, 1.24437429e-005, -1.24804228e-006, -2.02170359e-005, 0.999968052, 2.45872889e-006, -2.07692119e-006, 2.48851507e-006, 1.00025606)
  1827. p15.CanCollide = false
  1828. p15.Locked = true
  1829. p15.BottomSurface = Enum.SurfaceType.Smooth
  1830. p15.TopSurface = Enum.SurfaceType.Smooth
  1831. b11 = Instance.new("SpecialMesh", p15)
  1832. b11.MeshType = Enum.MeshType.Sphere
  1833. b11.Name = "Mesh"
  1834. p16 = Instance.new("Part", m)
  1835. p16.BrickColor = BrickColor.new("Bright blue")
  1836. p16.Material = Enum.Material.Neon
  1837. p16.FormFactor = Enum.FormFactor.Custom
  1838. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1839. p16.CFrame = CFrame.new(68.9101486, 8.4345789, -14.2572756, 0.881372392, -0.429496199, -0.198331535, 0.401431859, 0.900618315, -0.166353673, 0.250065029, 0.0670081601, 0.966180325)
  1840. p16.CanCollide = false
  1841. p16.Locked = true
  1842. p16.BottomSurface = Enum.SurfaceType.Smooth
  1843. p16.TopSurface = Enum.SurfaceType.Smooth
  1844. p17 = Instance.new("Part", m)
  1845. p17.BrickColor = BrickColor.new("Bright blue")
  1846. p17.Material = Enum.Material.Neon
  1847. p17.FormFactor = Enum.FormFactor.Custom
  1848. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1849. p17.CFrame = CFrame.new(68.8972092, 7.71862125, -14.2674294, -0.70732069, -0.707330942, -1.25169754e-006, 0.707094371, -0.707072854, 2.48849392e-006, 3.42912972e-006, -4.32133675e-007, 1.00026357)
  1850. p17.CanCollide = false
  1851. p17.Locked = true
  1852. p17.BottomSurface = Enum.SurfaceType.Smooth
  1853. p17.TopSurface = Enum.SurfaceType.Smooth
  1854. p18 = Instance.new("Part", m)
  1855. p18.BrickColor = BrickColor.new("Really black")
  1856. p18.Material = Enum.Material.Neon
  1857. p18.FormFactor = Enum.FormFactor.Custom
  1858. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1859. p18.CFrame = CFrame.new(68.6320877, 8.89929676, -14.2675419, 1.000319, 7.09295273e-006, -1.29642399e-006, -1.53779984e-005, 0.999966145, 2.53321537e-006, -2.20864695e-006, 2.76013293e-006, 1.00027096)
  1860. p18.CanCollide = false
  1861. p18.Locked = true
  1862. p18.BottomSurface = Enum.SurfaceType.Smooth
  1863. p18.TopSurface = Enum.SurfaceType.Smooth
  1864. b12 = Instance.new("SpecialMesh", p18)
  1865. b12.MeshType = Enum.MeshType.Sphere
  1866. b12.Name = "Mesh"
  1867. p19 = Instance.new("Part", m)
  1868. p19.BrickColor = BrickColor.new("Really black")
  1869. p19.Material = Enum.Material.Neon
  1870. p19.FormFactor = Enum.FormFactor.Custom
  1871. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1872. p19.CFrame = CFrame.new(68.6320801, 7.49934578, -14.2675457, 1.00032365, 7.02587113e-006, -1.41567671e-006, -1.53780693e-005, 0.999965429, 2.48852461e-006, -2.20865695e-006, 2.76013111e-006, 1.00027466)
  1873. p19.CanCollide = false
  1874. p19.Locked = true
  1875. p19.BottomSurface = Enum.SurfaceType.Smooth
  1876. p19.TopSurface = Enum.SurfaceType.Smooth
  1877. b13 = Instance.new("SpecialMesh", p19)
  1878. b13.MeshType = Enum.MeshType.Sphere
  1879. b13.Name = "Mesh"
  1880. w1 = Instance.new("Weld", p1)
  1881. w1.Name = "Wedge_Weld"
  1882. w1.Part0 = p1
  1883. w1.C0 = CFrame.new(-13.7623348, 36.7341995, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.9372038e-008)
  1884. w1.Part1 = p2
  1885. w1.C1 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  1886. w2 = Instance.new("Weld", p2)
  1887. w2.Name = "Wedge_Weld"
  1888. w2.Part0 = p2
  1889. w2.C0 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  1890. w2.Part1 = p3
  1891. w2.C1 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  1892. w3 = Instance.new("Weld", p3)
  1893. w3.Name = "Wedge_Weld"
  1894. w3.Part0 = p3
  1895. w3.C0 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  1896. w3.Part1 = p4
  1897. w3.C1 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1898. w4 = Instance.new("Weld", p4)
  1899. w4.Name = "Wedge_Weld"
  1900. w4.Part0 = p4
  1901. w4.C0 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1902. w4.Part1 = p5
  1903. w4.C1 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1904. w5 = Instance.new("Weld", p5)
  1905. w5.Name = "Wedge_Weld"
  1906. w5.Part0 = p5
  1907. w5.C0 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1908. w5.Part1 = p6
  1909. w5.C1 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  1910. w6 = Instance.new("Weld", p6)
  1911. w6.Name = "Part_Weld"
  1912. w6.Part0 = p6
  1913. w6.C0 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  1914. w6.Part1 = p7
  1915. w6.C1 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  1916. w7 = Instance.new("Weld", p7)
  1917. w7.Name = "Part_Weld"
  1918. w7.Part0 = p7
  1919. w7.C0 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  1920. w7.Part1 = p8
  1921. w7.C1 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  1922. w8 = Instance.new("Weld", p8)
  1923. w8.Name = "Part_Weld"
  1924. w8.Part0 = p8
  1925. w8.C0 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  1926. w8.Part1 = p9
  1927. w8.C1 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1928. w9 = Instance.new("Weld", p9)
  1929. w9.Name = "Part_Weld"
  1930. w9.Part0 = p9
  1931. w9.C0 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1932. w9.Part1 = p10
  1933. w9.C1 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1934. w10 = Instance.new("Weld", p10)
  1935. w10.Name = "Part_Weld"
  1936. w10.Part0 = p10
  1937. w10.C0 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1938. w10.Part1 = p11
  1939. w10.C1 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  1940. w11 = Instance.new("Weld", p11)
  1941. w11.Name = "Part_Weld"
  1942. w11.Part0 = p11
  1943. w11.C0 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  1944. w11.Part1 = p12
  1945. w11.C1 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  1946. w12 = Instance.new("Weld", p12)
  1947. w12.Name = "Part_Weld"
  1948. w12.Part0 = p12
  1949. w12.C0 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  1950. w12.Part1 = p13
  1951. w12.C1 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1952. w13 = Instance.new("Weld", p13)
  1953. w13.Name = "Part_Weld"
  1954. w13.Part0 = p13
  1955. w13.C0 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1956. w13.Part1 = p14
  1957. w13.C1 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1958. w14 = Instance.new("Weld", p14)
  1959. w14.Name = "Part_Weld"
  1960. w14.Part0 = p14
  1961. w14.C0 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1962. w14.Part1 = p15
  1963. w14.C1 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1964. w15 = Instance.new("Weld", p15)
  1965. w15.Name = "Part_Weld"
  1966. w15.Part0 = p15
  1967. w15.C0 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1968. w15.Part1 = p16
  1969. w15.C1 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  1970. w16 = Instance.new("Weld", p16)
  1971. w16.Name = "Part_Weld"
  1972. w16.Part0 = p16
  1973. w16.C0 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  1974. w16.Part1 = p17
  1975. w16.C1 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1976. w17 = Instance.new("Weld", p17)
  1977. w17.Name = "Part_Weld"
  1978. w17.Part0 = p17
  1979. w17.C0 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1980. w17.Part1 = p18
  1981. w17.C1 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  1982. w18 = Instance.new("Weld", p18)
  1983. w18.Name = "Part_Weld"
  1984. w18.Part0 = p18
  1985. w18.C0 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  1986. w18.Part1 = p19
  1987. w18.C1 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  1988. w19 = Instance.new("Weld", p19)
  1989. w19.Name = "Wedge_Weld"
  1990. w19.Part0 = p19
  1991. w19.C0 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  1992. m.Parent = rarm
  1993. m:MakeJoints()
  1994. ----------------------------------------------------
  1995. local cor4 = Instance.new("Part", rarm.RightArm)
  1996. cor4.Name = "Thingy"
  1997. cor4.Locked = true
  1998. cor4.BottomSurface = 0
  1999. cor4.CanCollide = false
  2000. cor4.Size = Vector3.new(2, 1, 1)
  2001. cor4.Transparency = 1
  2002. cor4.TopSurface = 0
  2003. corw2 = Instance.new("Weld", cor4)
  2004. corw2.Part0 = rarm
  2005. corw2.Part1 = cor4
  2006. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2007. corw2.C1 = CFrame.new(0, 0, 0)
  2008. weld2 = Instance.new("Weld", rarm.RightArm)
  2009. weld2.Part0 = cor4
  2010. weld2.Part1 = p14
  2011. weld2.C0 = CFrame.new(0, 0, 0)
  2012. ----------------------------------------------------
  2013. local m = Instance.new("Model")
  2014. m.Name = "Torso"
  2015. p1 = Instance.new("Part", m)
  2016. p1.BrickColor = BrickColor.new("Really black")
  2017. p1.Material = Enum.Material.Neon
  2018. p1.FormFactor = Enum.FormFactor.Custom
  2019. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2020. p1.CFrame = CFrame.new(67.3119202, 9.5997963, -14.263937, 1.00006402, 1.86259939e-007, 2.23464554e-008, -1.44914884e-006, 0.999991, -1.49014099e-008, -1.51248571e-006, 5.96053269e-008, 1.00005186)
  2021. p1.CanCollide = false
  2022. p1.Locked = true
  2023. p1.BottomSurface = Enum.SurfaceType.Smooth
  2024. p1.TopSurface = Enum.SurfaceType.Smooth
  2025. b1 = Instance.new("SpecialMesh", p1)
  2026. b1.MeshType = Enum.MeshType.Sphere
  2027. b1.Name = "Mesh"
  2028. p2 = Instance.new("Part", m)
  2029. p2.BrickColor = BrickColor.new("Really black")
  2030. p2.Material = Enum.Material.Neon
  2031. p2.FormFactor = Enum.FormFactor.Custom
  2032. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2033. p2.CFrame = CFrame.new(65.0111618, 9.59981537, -14.2638226, 1.00005496, 2.75671482e-007, 1.2665987e-007, -1.35973096e-006, 0.999992192, -2.98023224e-008, -1.40815973e-006, 4.47034836e-008, 1.00004447)
  2034. p2.CanCollide = false
  2035. p2.Locked = true
  2036. p2.BottomSurface = Enum.SurfaceType.Smooth
  2037. p2.TopSurface = Enum.SurfaceType.Smooth
  2038. b2 = Instance.new("SpecialMesh", p2)
  2039. b2.MeshType = Enum.MeshType.Sphere
  2040. b2.Name = "Mesh"
  2041. p3 = Instance.new("Part", m)
  2042. p3.BrickColor = BrickColor.new("Bright blue")
  2043. p3.Material = Enum.Material.Neon
  2044. p3.FormFactor = Enum.FormFactor.Custom
  2045. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2046. p3.CFrame = CFrame.new(67.6028595, 9.39744663, -14.2168236, 0.491504252, -0.868347466, -0.0669902489, 0.834227681, 0.491479307, -0.249998316, 0.250008702, 0.0669909269, 0.965961695)
  2047. p3.CanCollide = false
  2048. p3.Locked = true
  2049. p3.BottomSurface = Enum.SurfaceType.Smooth
  2050. p3.TopSurface = Enum.SurfaceType.Smooth
  2051. p4 = Instance.new("Part", m)
  2052. p4.BrickColor = BrickColor.new("Bright blue")
  2053. p4.Material = Enum.Material.Neon
  2054. p4.FormFactor = Enum.FormFactor.Custom
  2055. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2056. p4.CFrame = CFrame.new(64.6849442, 9.10655022, -14.2635975, 0.866056859, 0.500018656, 3.35280106e-007, -0.49999845, 0.866020203, -2.98035943e-008, -1.06866298e-006, -5.48167122e-007, 1.00002968)
  2057. p4.CanCollide = false
  2058. p4.Locked = true
  2059. p4.BottomSurface = Enum.SurfaceType.Smooth
  2060. p4.TopSurface = Enum.SurfaceType.Smooth
  2061. p5 = Instance.new("Part", m)
  2062. p5.BrickColor = BrickColor.new("Bright blue")
  2063. p5.Material = Enum.Material.Neon
  2064. p5.FormFactor = Enum.FormFactor.Custom
  2065. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2066. p5.CFrame = CFrame.new(66.9344177, 8.96636868, -14.2634897, -0.866048932, -0.500014246, 4.3958832e-007, 0.499999046, -0.866021395, -4.47044108e-008, 9.70867745e-007, 5.08911796e-007, 1.00002229)
  2067. p5.CanCollide = false
  2068. p5.Locked = true
  2069. p5.BottomSurface = Enum.SurfaceType.Smooth
  2070. p5.TopSurface = Enum.SurfaceType.Smooth
  2071. p6 = Instance.new("Part", m)
  2072. p6.BrickColor = BrickColor.new("Bright blue")
  2073. p6.Material = Enum.Material.Neon
  2074. p6.FormFactor = Enum.FormFactor.Custom
  2075. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2076. p6.CFrame = CFrame.new(65.358757, 9.04366112, -14.2633762, -0.866041601, 0.500008702, 5.43894771e-007, -0.499997824, -0.8660236, -5.96051208e-008, 8.43271948e-007, -5.21275751e-007, 1.0000149)
  2077. p6.CanCollide = false
  2078. p6.Locked = true
  2079. p6.BottomSurface = Enum.SurfaceType.Smooth
  2080. p6.TopSurface = Enum.SurfaceType.Smooth
  2081. p7 = Instance.new("Part", m)
  2082. p7.BrickColor = BrickColor.new("Really black")
  2083. p7.Material = Enum.Material.Neon
  2084. p7.FormFactor = Enum.FormFactor.Custom
  2085. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2086. p7.CFrame = CFrame.new(68.0082169, 9.19989014, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308121e-007, -8.7916851e-007, 5.96046519e-008, 1.00001121)
  2087. p7.CanCollide = false
  2088. p7.Locked = true
  2089. p7.BottomSurface = Enum.SurfaceType.Smooth
  2090. p7.TopSurface = Enum.SurfaceType.Smooth
  2091. b3 = Instance.new("SpecialMesh", p7)
  2092. b3.MeshType = Enum.MeshType.Sphere
  2093. b3.Name = "Mesh"
  2094. p8 = Instance.new("Part", m)
  2095. p8.BrickColor = BrickColor.new("Really black")
  2096. p8.Material = Enum.Material.Neon
  2097. p8.FormFactor = Enum.FormFactor.Custom
  2098. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2099. p8.CFrame = CFrame.new(64.4081497, 8.59989357, -14.2632627, 1.00001383, 5.32715489e-007, 5.6624458e-007, -8.4191629e-007, 0.999997973, -2.980277e-008, -9.08971174e-007, -1.4901623e-008, 1.00001121)
  2100. p8.CanCollide = false
  2101. p8.Locked = true
  2102. p8.BottomSurface = Enum.SurfaceType.Smooth
  2103. p8.TopSurface = Enum.SurfaceType.Smooth
  2104. b4 = Instance.new("SpecialMesh", p8)
  2105. b4.MeshType = Enum.MeshType.Sphere
  2106. b4.Name = "Mesh"
  2107. p9 = Instance.new("Part", m)
  2108. p9.BrickColor = BrickColor.new("Really black")
  2109. p9.Material = Enum.Material.Neon
  2110. p9.FormFactor = Enum.FormFactor.Custom
  2111. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2112. p9.CFrame = CFrame.new(67.8082123, 8.49989128, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308128e-007, -8.7916851e-007, 5.96046448e-008, 1.00001121)
  2113. p9.CanCollide = false
  2114. p9.Locked = true
  2115. p9.BottomSurface = Enum.SurfaceType.Smooth
  2116. p9.TopSurface = Enum.SurfaceType.Smooth
  2117. b5 = Instance.new("SpecialMesh", p9)
  2118. b5.MeshType = Enum.MeshType.Sphere
  2119. b5.Name = "Mesh"
  2120. p10 = Instance.new("Part", m)
  2121. p10.BrickColor = BrickColor.new("Bright blue")
  2122. p10.Material = Enum.Material.Neon
  2123. p10.FormFactor = Enum.FormFactor.Custom
  2124. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2125. p10.CFrame = CFrame.new(67.3000946, 8.34052181, -14.1962805, -0.323144197, -0.934642911, 0.148454338, 0.912730813, -0.349243045, -0.212012067, 0.250002205, 0.0669885725, 0.965932906)
  2126. p10.CanCollide = false
  2127. p10.Locked = true
  2128. p10.BottomSurface = Enum.SurfaceType.Smooth
  2129. p10.TopSurface = Enum.SurfaceType.Smooth
  2130. p11 = Instance.new("Part", m)
  2131. p11.BrickColor = BrickColor.new("Really black")
  2132. p11.Material = Enum.Material.Metal
  2133. p11.Name = "Main"
  2134. p11.FormFactor = Enum.FormFactor.Custom
  2135. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2136. p11.CFrame = CFrame.new(66.1075974, 8.19991207, -13.1631384, 1, 7.67355459e-007, 7.5990539e-007, -7.67355459e-007, 1, -2.98022478e-008, -7.5990539e-007, 2.98016651e-008, 1)
  2137. p11.CanCollide = false
  2138. p11.Locked = true
  2139. p11.BottomSurface = Enum.SurfaceType.Smooth
  2140. p11.TopSurface = Enum.SurfaceType.Smooth
  2141. p12 = Instance.new("Part", m)
  2142. p12.BrickColor = BrickColor.new("Really black")
  2143. p12.Material = Enum.Material.Neon
  2144. p12.FormFactor = Enum.FormFactor.Custom
  2145. p12.Size = Vector3.new(3, 3, 2)
  2146. p12.CFrame = CFrame.new(66.1075974, 8.19991302, -13.5631437, 1.00000453, 6.48145658e-007, 6.55599706e-007, -7.97160624e-007, 0.999999344, -1.49012251e-008, -7.5990863e-007, 2.98017362e-008, 1.0000037)
  2147. p12.CanCollide = false
  2148. p12.Locked = true
  2149. p12.BottomSurface = Enum.SurfaceType.Smooth
  2150. p12.TopSurface = Enum.SurfaceType.Smooth
  2151. b6 = Instance.new("SpecialMesh", p12)
  2152. b6.MeshType = Enum.MeshType.Sphere
  2153. b6.Name = "Mesh"
  2154. p13 = Instance.new("Part", m)
  2155. p13.BrickColor = BrickColor.new("Bright blue")
  2156. p13.Material = Enum.Material.Neon
  2157. p13.FormFactor = Enum.FormFactor.Custom
  2158. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2159. p13.CFrame = CFrame.new(66.1331863, 7.82621098, -12.0632286, 6.04434092e-007, -1.00000906, 6.55602378e-007, 0.999998689, 8.72662156e-007, -1.49012802e-008, 4.47028583e-008, 8.64220965e-007, 1.00000739)
  2160. p13.CanCollide = false
  2161. p13.Locked = true
  2162. p13.BottomSurface = Enum.SurfaceType.Smooth
  2163. p13.TopSurface = Enum.SurfaceType.Smooth
  2164. p14 = Instance.new("Part", m)
  2165. p14.BrickColor = BrickColor.new("Bright blue")
  2166. p14.Material = Enum.Material.Neon
  2167. p14.FormFactor = Enum.FormFactor.Custom
  2168. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2169. p14.CFrame = CFrame.new(65.0837555, 8.11279583, -12.0633221, 0.866040885, 0.500009477, 5.5129766e-007, -0.499999583, 0.866022587, -2.09610107e-013, -8.68580742e-007, -4.3265041e-007, 1.00001478)
  2170. p14.CanCollide = false
  2171. p14.Locked = true
  2172. p14.BottomSurface = Enum.SurfaceType.Smooth
  2173. p14.TopSurface = Enum.SurfaceType.Smooth
  2174. p15 = Instance.new("Part", m)
  2175. p15.BrickColor = BrickColor.new("Bright blue")
  2176. p15.Material = Enum.Material.Neon
  2177. p15.FormFactor = Enum.FormFactor.Custom
  2178. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2179. p15.CFrame = CFrame.new(67.0844116, 8.11277008, -12.0634222, 0.866049111, -0.500013351, 4.46991237e-007, 0.49999693, 0.866022587, 1.49009658e-008, -8.91868751e-007, 6.00952262e-007, 1.00002217)
  2180. p15.CanCollide = false
  2181. p15.Locked = true
  2182. p15.BottomSurface = Enum.SurfaceType.Smooth
  2183. p15.TopSurface = Enum.SurfaceType.Smooth
  2184. p16 = Instance.new("Part", m)
  2185. p16.BrickColor = BrickColor.new("Bright blue")
  2186. p16.Material = Enum.Material.Neon
  2187. p16.FormFactor = Enum.FormFactor.Custom
  2188. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2189. p16.CFrame = CFrame.new(65.484314, 7.30655766, -14.2634888, 0.906336308, 0.422632158, 3.49386681e-007, -0.422617853, 0.906302929, 2.46360354e-008, -1.01209048e-006, -3.84037776e-007, 1.00002587)
  2190. p16.CanCollide = false
  2191. p16.Locked = true
  2192. p16.BottomSurface = Enum.SurfaceType.Smooth
  2193. p16.TopSurface = Enum.SurfaceType.Smooth
  2194. p17 = Instance.new("Part", m)
  2195. p17.BrickColor = BrickColor.new("Bright blue")
  2196. p17.Material = Enum.Material.Neon
  2197. p17.FormFactor = Enum.FormFactor.Custom
  2198. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2199. p17.CFrame = CFrame.new(67.1100159, 7.10342312, -14.2635927, 0.866056919, -0.50001812, 3.65035532e-007, 0.499996245, 0.866021872, 5.96044032e-008, -8.79435504e-007, 6.97014912e-007, 1.00002956)
  2200. p17.CanCollide = false
  2201. p17.Locked = true
  2202. p17.BottomSurface = Enum.SurfaceType.Smooth
  2203. p17.TopSurface = Enum.SurfaceType.Smooth
  2204. p18 = Instance.new("Part", m)
  2205. p18.BrickColor = BrickColor.new("Bright blue")
  2206. p18.Material = Enum.Material.Neon
  2207. p18.FormFactor = Enum.FormFactor.Custom
  2208. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2209. p18.CFrame = CFrame.new(65.6104889, 7.05342484, -14.2637053, -0.707138717, -0.707138956, 3.36865924e-007, 0.707104087, -0.707101464, 1.4901164e-007, 9.95719802e-007, 5.95316749e-007, 1.00003707)
  2210. p18.CanCollide = false
  2211. p18.Locked = true
  2212. p18.BottomSurface = Enum.SurfaceType.Smooth
  2213. p18.TopSurface = Enum.SurfaceType.Smooth
  2214. p19 = Instance.new("Part", m)
  2215. p19.BrickColor = BrickColor.new("Really black")
  2216. p19.Material = Enum.Material.Neon
  2217. p19.FormFactor = Enum.FormFactor.Custom
  2218. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2219. p19.CFrame = CFrame.new(65.2110596, 6.69982004, -14.2638168, 1.00005388, -1.78813906e-007, 3.08695888e-007, -1.7285347e-006, 0.999993682, 2.38419489e-007, -1.15321473e-006, 3.72538381e-007, 1.0000447)
  2220. p19.CanCollide = false
  2221. p19.Locked = true
  2222. p19.BottomSurface = Enum.SurfaceType.Smooth
  2223. p19.TopSurface = Enum.SurfaceType.Smooth
  2224. b7 = Instance.new("SpecialMesh", p19)
  2225. b7.MeshType = Enum.MeshType.Sphere
  2226. b7.Name = "Mesh"
  2227. p20 = Instance.new("Part", m)
  2228. p20.BrickColor = BrickColor.new("Really black")
  2229. p20.Material = Enum.Material.Neon
  2230. p20.FormFactor = Enum.FormFactor.Custom
  2231. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2232. p20.CFrame = CFrame.new(66.7116928, 6.49980783, -14.2639294, 1.00006235, -2.98028993e-007, 2.80525398e-007, -1.8477574e-006, 0.999992907, 3.27827962e-007, -1.18139712e-006, 4.61949412e-007, 1.00005233)
  2233. p20.CanCollide = false
  2234. p20.Locked = true
  2235. p20.BottomSurface = Enum.SurfaceType.Smooth
  2236. p20.TopSurface = Enum.SurfaceType.Smooth
  2237. b8 = Instance.new("SpecialMesh", p20)
  2238. b8.MeshType = Enum.MeshType.Sphere
  2239. b8.Name = "Mesh"
  2240. p21 = Instance.new("Part", m)
  2241. p21.BrickColor = BrickColor.new("Bright blue")
  2242. p21.Material = Enum.Material.Neon
  2243. p21.FormFactor = Enum.FormFactor.Custom
  2244. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2245. p21.CFrame = CFrame.new(67.0623169, 6.40337944, -14.264039, 0.258836836, -0.965994418, 2.52354425e-007, 0.965917706, 0.258818805, 4.17237061e-007, 2.19511691e-007, 1.31106742e-006, 1.00005996)
  2246. p21.CanCollide = false
  2247. p21.Locked = true
  2248. p21.BottomSurface = Enum.SurfaceType.Smooth
  2249. p21.TopSurface = Enum.SurfaceType.Smooth
  2250. p22 = Instance.new("Part", m)
  2251. p22.BrickColor = BrickColor.new("Really black")
  2252. p22.Material = Enum.Material.Neon
  2253. p22.FormFactor = Enum.FormFactor.Custom
  2254. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2255. p22.CFrame = CFrame.new(67.5129166, 6.29977846, -14.2641516, 1.00007939, -5.96046448e-007, 2.24182997e-007, -2.14576721e-006, 0.999991298, 5.06646757e-007, -1.23776351e-006, 6.40773351e-007, 1.00006759)
  2256. p22.CanCollide = false
  2257. p22.Locked = true
  2258. p22.BottomSurface = Enum.SurfaceType.Smooth
  2259. p22.TopSurface = Enum.SurfaceType.Smooth
  2260. b9 = Instance.new("SpecialMesh", p22)
  2261. b9.MeshType = Enum.MeshType.Sphere
  2262. b9.Name = "Mesh"
  2263. w1 = Instance.new("Weld", p1)
  2264. w1.Name = "Part_Weld"
  2265. w1.Part0 = p1
  2266. w1.C0 = CFrame.new(-67.3029404, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2267. w1.Part1 = p2
  2268. w1.C1 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2269. w2 = Instance.new("Weld", p2)
  2270. w2.Name = "Part_Weld"
  2271. w2.Part0 = p2
  2272. w2.C0 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2273. w2.Part1 = p3
  2274. w2.C1 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2275. w3 = Instance.new("Weld", p3)
  2276. w3.Name = "Part_Weld"
  2277. w3.Part0 = p3
  2278. w3.C0 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2279. w3.Part1 = p4
  2280. w3.C1 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2281. w4 = Instance.new("Weld", p4)
  2282. w4.Name = "Part_Weld"
  2283. w4.Part0 = p4
  2284. w4.C0 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2285. w4.Part1 = p5
  2286. w4.C1 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2287. w5 = Instance.new("Weld", p5)
  2288. w5.Name = "Part_Weld"
  2289. w5.Part0 = p5
  2290. w5.C0 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2291. w5.Part1 = p6
  2292. w5.C1 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2293. w6 = Instance.new("Weld", p6)
  2294. w6.Name = "Part_Weld"
  2295. w6.Part0 = p6
  2296. w6.C0 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2297. w6.Part1 = p7
  2298. w6.C1 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2299. w7 = Instance.new("Weld", p7)
  2300. w7.Name = "Part_Weld"
  2301. w7.Part0 = p7
  2302. w7.C0 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2303. w7.Part1 = p8
  2304. w7.C1 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2305. w8 = Instance.new("Weld", p8)
  2306. w8.Name = "Part_Weld"
  2307. w8.Part0 = p8
  2308. w8.C0 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2309. w8.Part1 = p9
  2310. w8.C1 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2311. w9 = Instance.new("Weld", p9)
  2312. w9.Name = "Part_Weld"
  2313. w9.Part0 = p9
  2314. w9.C0 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2315. w9.Part1 = p10
  2316. w9.C1 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2317. w10 = Instance.new("Weld", p10)
  2318. w10.Name = "Main_Weld"
  2319. w10.Part0 = p10
  2320. w10.C0 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2321. w10.Part1 = p11
  2322. w10.C1 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2323. w11 = Instance.new("Weld", p11)
  2324. w11.Name = "Part_Weld"
  2325. w11.Part0 = p11
  2326. w11.C0 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2327. w11.Part1 = p12
  2328. w11.C1 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2329. w12 = Instance.new("Weld", p12)
  2330. w12.Name = "Part_Weld"
  2331. w12.Part0 = p12
  2332. w12.C0 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2333. w12.Part1 = p13
  2334. w12.C1 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2335. w13 = Instance.new("Weld", p13)
  2336. w13.Name = "Part_Weld"
  2337. w13.Part0 = p13
  2338. w13.C0 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2339. w13.Part1 = p14
  2340. w13.C1 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2341. w14 = Instance.new("Weld", p14)
  2342. w14.Name = "Part_Weld"
  2343. w14.Part0 = p14
  2344. w14.C0 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2345. w14.Part1 = p15
  2346. w14.C1 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2347. w15 = Instance.new("Weld", p15)
  2348. w15.Name = "Part_Weld"
  2349. w15.Part0 = p15
  2350. w15.C0 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2351. w15.Part1 = p16
  2352. w15.C1 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2353. w16 = Instance.new("Weld", p16)
  2354. w16.Name = "Part_Weld"
  2355. w16.Part0 = p16
  2356. w16.C0 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2357. w16.Part1 = p17
  2358. w16.C1 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2359. w17 = Instance.new("Weld", p17)
  2360. w17.Name = "Part_Weld"
  2361. w17.Part0 = p17
  2362. w17.C0 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2363. w17.Part1 = p18
  2364. w17.C1 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2365. w18 = Instance.new("Weld", p18)
  2366. w18.Name = "Part_Weld"
  2367. w18.Part0 = p18
  2368. w18.C0 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2369. w18.Part1 = p19
  2370. w18.C1 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2371. w19 = Instance.new("Weld", p19)
  2372. w19.Name = "Part_Weld"
  2373. w19.Part0 = p19
  2374. w19.C0 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2375. w19.Part1 = p20
  2376. w19.C1 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2377. w20 = Instance.new("Weld", p20)
  2378. w20.Name = "Part_Weld"
  2379. w20.Part0 = p20
  2380. w20.C0 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2381. w20.Part1 = p21
  2382. w20.C1 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2383. w21 = Instance.new("Weld", p21)
  2384. w21.Name = "Part_Weld"
  2385. w21.Part0 = p21
  2386. w21.C0 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2387. w21.Part1 = p22
  2388. w21.C1 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2389. w22 = Instance.new("Weld", p22)
  2390. w22.Name = "Wedge_Weld"
  2391. w22.Part0 = p22
  2392. w22.C0 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2393. m.Parent = torso
  2394. m:MakeJoints()
  2395. ----------------------------------------------------
  2396. local cor5 = Instance.new("Part", torso.Torso)
  2397. cor5.Name = "Thingy"
  2398. cor5.Locked = true
  2399. cor5.BottomSurface = 0
  2400. cor5.CanCollide = false
  2401. cor5.Size = Vector3.new(2, 1, 1)
  2402. cor5.Transparency = 1
  2403. cor5.TopSurface = 0
  2404. corw2 = Instance.new("Weld", cor5)
  2405. corw2.Part0 = torso
  2406. corw2.Part1 = cor5
  2407. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2408. corw2.C1 = CFrame.new(0, 0, 0)
  2409. weld2 = Instance.new("Weld", torso.Torso)
  2410. weld2.Part0 = cor5
  2411. weld2.Part1 = p11
  2412. weld2.C0 = CFrame.new(0, 0, 0)
  2413. ----------------------------------------------------
  2414. local m = Instance.new("Model")
  2415. m.Name = "RightLeg"
  2416. p1 = Instance.new("Part", m)
  2417. p1.BrickColor = BrickColor.new("Really black")
  2418. p1.Material = Enum.Material.Neon
  2419. p1.FormFactor = Enum.FormFactor.Custom
  2420. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2421. p1.CFrame = CFrame.new(67.2429962, 5.49923229, -14.269578, 1.00045943, -5.51538596e-006, -2.14306033e-006, -7.25689733e-006, 0.999951601, 3.93318305e-006, -2.55180248e-006, 4.05587616e-006, 1.00038624)
  2422. p1.CanCollide = false
  2423. p1.Locked = true
  2424. p1.BottomSurface = Enum.SurfaceType.Smooth
  2425. p1.TopSurface = Enum.SurfaceType.Smooth
  2426. b1 = Instance.new("SpecialMesh", p1)
  2427. b1.MeshType = Enum.MeshType.Sphere
  2428. b1.Name = "Mesh"
  2429. p2 = Instance.new("Part", m)
  2430. p2.BrickColor = BrickColor.new("Really black")
  2431. p2.Material = Enum.Material.Neon
  2432. p2.FormFactor = Enum.FormFactor.Custom
  2433. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2434. p2.CFrame = CFrame.new(67.6437836, 4.79925013, -14.2696915, 1.00046372, -5.51538369e-006, -2.14306829e-006, -7.37613163e-006, 0.999951243, 3.93319806e-006, -2.57999613e-006, 4.14531632e-006, 1.00039005)
  2435. p2.CanCollide = false
  2436. p2.Locked = true
  2437. p2.BottomSurface = Enum.SurfaceType.Smooth
  2438. p2.TopSurface = Enum.SurfaceType.Smooth
  2439. b2 = Instance.new("SpecialMesh", p2)
  2440. b2.MeshType = Enum.MeshType.Sphere
  2441. b2.Name = "Mesh"
  2442. p3 = Instance.new("Part", m)
  2443. p3.BrickColor = BrickColor.new("Bright blue")
  2444. p3.Material = Enum.Material.Neon
  2445. p3.FormFactor = Enum.FormFactor.Custom
  2446. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2447. p3.CFrame = CFrame.new(66.8881302, 5.17327356, -14.2696877, -0.707441688, -0.707433701, -2.14858301e-006, 0.707077265, -0.707066894, 4.0476084e-006, 4.7538756e-006, -1.07312485e-006, 1.00039387)
  2448. p3.CanCollide = false
  2449. p3.Locked = true
  2450. p3.BottomSurface = Enum.SurfaceType.Smooth
  2451. p3.TopSurface = Enum.SurfaceType.Smooth
  2452. p4 = Instance.new("Part", m)
  2453. p4.BrickColor = BrickColor.new("Really black")
  2454. p4.Material = Enum.Material.Neon
  2455. p4.FormFactor = Enum.FormFactor.Custom
  2456. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2457. p4.CFrame = CFrame.new(66.5432739, 4.7992568, -14.2696896, 1.00046802, -5.54323196e-006, -2.17126149e-006, -7.42077827e-006, 0.999950886, 4.02261594e-006, -2.58000705e-006, 4.14531496e-006, 1.00039387)
  2458. p4.CanCollide = false
  2459. p4.Locked = true
  2460. p4.BottomSurface = Enum.SurfaceType.Smooth
  2461. p4.TopSurface = Enum.SurfaceType.Smooth
  2462. b3 = Instance.new("SpecialMesh", p4)
  2463. b3.MeshType = Enum.MeshType.Sphere
  2464. b3.Name = "Mesh"
  2465. p5 = Instance.new("Part", m)
  2466. p5.BrickColor = BrickColor.new("Bright blue")
  2467. p5.Material = Enum.Material.Neon
  2468. p5.FormFactor = Enum.FormFactor.Custom
  2469. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2470. p5.CFrame = CFrame.new(67.8495178, 4.41932487, -14.269804, -0.906733274, 0.422823101, -2.17126944e-006, -0.422590762, -0.906265974, 4.0226314e-006, 5.74146384e-007, -4.94026517e-006, 1.00039768)
  2471. p5.CanCollide = false
  2472. p5.Locked = true
  2473. p5.BottomSurface = Enum.SurfaceType.Smooth
  2474. p5.TopSurface = Enum.SurfaceType.Smooth
  2475. p6 = Instance.new("Part", m)
  2476. p6.BrickColor = BrickColor.new("Bright blue")
  2477. p6.Material = Enum.Material.Neon
  2478. p6.FormFactor = Enum.FormFactor.Custom
  2479. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2480. p6.CFrame = CFrame.new(66.5438004, 4.21363878, -14.2698011, 1.00047636, -7.68899918e-006, -2.17678416e-006, -5.51342964e-006, 0.999950111, 4.13704174e-006, -2.63088032e-006, 4.20975539e-006, 1.0004015)
  2481. p6.CanCollide = false
  2482. p6.Locked = true
  2483. p6.BottomSurface = Enum.SurfaceType.Smooth
  2484. p6.TopSurface = Enum.SurfaceType.Smooth
  2485. p7 = Instance.new("Part", m)
  2486. p7.BrickColor = BrickColor.new("Really black")
  2487. p7.Material = Enum.Material.Metal
  2488. p7.Name = "Main"
  2489. p7.FormFactor = Enum.FormFactor.Custom
  2490. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2491. p7.CFrame = CFrame.new(67.2447891, 3.99926972, -13.1694622, 1.00048089, -5.69129634e-006, -2.186149e-006, -7.65911773e-006, 0.999949753, 4.1418657e-006, -2.63640663e-006, 4.32419529e-006, 1.00040531)
  2492. p7.CanCollide = false
  2493. p7.Locked = true
  2494. p7.BottomSurface = Enum.SurfaceType.Smooth
  2495. p7.TopSurface = Enum.SurfaceType.Smooth
  2496. p8 = Instance.new("Part", m)
  2497. p8.BrickColor = BrickColor.new("Bright blue")
  2498. p8.Material = Enum.Material.Neon
  2499. p8.FormFactor = Enum.FormFactor.Custom
  2500. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2501. p8.CFrame = CFrame.new(67.1560593, 4.19274044, -14.2700233, -0.766423643, -0.643097878, -2.21435107e-006, 0.642760634, -0.766000509, 4.23129995e-006, 4.88720252e-006, -1.69966381e-006, 1.00041294)
  2502. p8.CanCollide = false
  2503. p8.Locked = true
  2504. p8.BottomSurface = Enum.SurfaceType.Smooth
  2505. p8.TopSurface = Enum.SurfaceType.Smooth
  2506. p9 = Instance.new("WedgePart", m)
  2507. p9.BrickColor = BrickColor.new("Bright blue")
  2508. p9.Material = Enum.Material.Neon
  2509. p9.Name = "Wedge"
  2510. p9.FormFactor = Enum.FormFactor.Custom
  2511. p9.Size = Vector3.new(1, 1.19999981, 4)
  2512. p9.CFrame = CFrame.new(67.3460693, 3.49928832, -10.7686377, -1.00049889, -4.27957411e-006, 4.5400966e-006, 8.07642937e-006, 0.906259179, -0.422600418, 2.61850914e-006, -0.422791958, -0.906690836)
  2513. p9.CanCollide = false
  2514. p9.Locked = true
  2515. p9.TopSurface = Enum.SurfaceType.Smooth
  2516. b4 = Instance.new("SpecialMesh", p9)
  2517. b4.MeshType = Enum.MeshType.Wedge
  2518. b4.Name = "Mesh"
  2519. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2520. p10 = Instance.new("Part", m)
  2521. p10.BrickColor = BrickColor.new("Really black")
  2522. p10.Material = Enum.Material.Neon
  2523. p10.FormFactor = Enum.FormFactor.Custom
  2524. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2525. p10.CFrame = CFrame.new(68.0469971, 3.99923301, -14.2702446, 1.00050783, -6.09550762e-006, -2.27330474e-006, -8.07715332e-006, 0.999947786, 4.38094139e-006, -2.69438578e-006, 4.64916229e-006, 1.0004282)
  2526. p10.CanCollide = false
  2527. p10.Locked = true
  2528. p10.BottomSurface = Enum.SurfaceType.Smooth
  2529. p10.TopSurface = Enum.SurfaceType.Smooth
  2530. b5 = Instance.new("SpecialMesh", p10)
  2531. b5.MeshType = Enum.MeshType.Sphere
  2532. b5.Name = "Mesh"
  2533. p11 = Instance.new("Part", m)
  2534. p11.BrickColor = BrickColor.new("Really black")
  2535. p11.Material = Enum.Material.Neon
  2536. p11.FormFactor = Enum.FormFactor.Custom
  2537. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2538. p11.CFrame = CFrame.new(66.5467682, 3.59925723, -14.2703533, 1.00051641, -6.21477238e-006, -2.30150818e-006, -8.22622587e-006, 0.999947011, 4.47037792e-006, -2.72259308e-006, 4.73860473e-006, 1.00043583)
  2539. p11.CanCollide = false
  2540. p11.Locked = true
  2541. p11.BottomSurface = Enum.SurfaceType.Smooth
  2542. p11.TopSurface = Enum.SurfaceType.Smooth
  2543. b6 = Instance.new("SpecialMesh", p11)
  2544. b6.MeshType = Enum.MeshType.Sphere
  2545. b6.Name = "Mesh"
  2546. p12 = Instance.new("Part", m)
  2547. p12.BrickColor = BrickColor.new("Bright blue")
  2548. p12.Material = Enum.Material.Neon
  2549. p12.FormFactor = Enum.FormFactor.Custom
  2550. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2551. p12.CFrame = CFrame.new(67.558609, 3.39274073, -14.2704687, -0.766450763, -0.643119991, -2.33134415e-006, 0.642759323, -0.765998006, 4.5598149e-006, 5.20550884e-006, -1.92419975e-006, 1.00044346)
  2552. p12.CanCollide = false
  2553. p12.Locked = true
  2554. p12.BottomSurface = Enum.SurfaceType.Smooth
  2555. p12.TopSurface = Enum.SurfaceType.Smooth
  2556. p13 = Instance.new("Part", m)
  2557. p13.BrickColor = BrickColor.new("Really black")
  2558. p13.Material = Enum.Material.Neon
  2559. p13.FormFactor = Enum.FormFactor.Custom
  2560. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2561. p13.CFrame = CFrame.new(67.0482101, 2.79927826, -14.2705812, 1.00053358, -6.43730164e-006, -2.36118058e-006, -8.5234642e-006, 0.999945402, 4.64126742e-006, -2.78064022e-006, 4.90151251e-006, 1.00045109)
  2562. p13.CanCollide = false
  2563. p13.Locked = true
  2564. p13.BottomSurface = Enum.SurfaceType.Smooth
  2565. p13.TopSurface = Enum.SurfaceType.Smooth
  2566. b7 = Instance.new("SpecialMesh", p13)
  2567. b7.MeshType = Enum.MeshType.Sphere
  2568. b7.Name = "Mesh"
  2569. p14 = Instance.new("WedgePart", m)
  2570. p14.BrickColor = BrickColor.new("Bright blue")
  2571. p14.Material = Enum.Material.Neon
  2572. p14.Name = "Wedge"
  2573. p14.FormFactor = Enum.FormFactor.Custom
  2574. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2575. p14.CFrame = CFrame.new(66.8462448, 2.3492887, -14.7586241, 1.00054216, -6.55656913e-006, -2.38459074e-006, -8.61293847e-006, 0.999944568, 4.66311894e-006, -2.81690609e-006, 5.04259924e-006, 1.00045872)
  2576. p14.CanCollide = false
  2577. p14.Locked = true
  2578. p14.TopSurface = Enum.SurfaceType.Smooth
  2579. b8 = Instance.new("SpecialMesh", p14)
  2580. b8.MeshType = Enum.MeshType.Wedge
  2581. b8.Name = "Mesh"
  2582. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2583. p15 = Instance.new("WedgePart", m)
  2584. p15.BrickColor = BrickColor.new("Bright blue")
  2585. p15.Material = Enum.Material.Neon
  2586. p15.Name = "Wedge"
  2587. p15.FormFactor = Enum.FormFactor.Custom
  2588. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2589. p15.CFrame = CFrame.new(68.0474777, 2.34926867, -14.7587423, 1.00055075, -6.67583618e-006, -2.41442808e-006, -8.73221416e-006, 0.999943614, 4.74457238e-006, -2.84674707e-006, 5.12405404e-006, 1.00046635)
  2590. p15.CanCollide = false
  2591. p15.Locked = true
  2592. p15.TopSurface = Enum.SurfaceType.Smooth
  2593. b9 = Instance.new("SpecialMesh", p15)
  2594. b9.MeshType = Enum.MeshType.Wedge
  2595. b9.Name = "Mesh"
  2596. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2597. p16 = Instance.new("WedgePart", m)
  2598. p16.BrickColor = BrickColor.new("Bright blue")
  2599. p16.Material = Enum.Material.Neon
  2600. p16.Name = "Wedge"
  2601. p16.FormFactor = Enum.FormFactor.Custom
  2602. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2603. p16.CFrame = CFrame.new(67.4477234, 2.34926438, -14.7588549, 1.00055933, -6.79510413e-006, -2.44426587e-006, -8.85149075e-006, 0.99994266, 4.82602672e-006, -2.8765885e-006, 5.20550975e-006, 1.00047398)
  2604. p16.CanCollide = false
  2605. p16.Locked = true
  2606. p16.TopSurface = Enum.SurfaceType.Smooth
  2607. b10 = Instance.new("SpecialMesh", p16)
  2608. b10.MeshType = Enum.MeshType.Wedge
  2609. b10.Name = "Mesh"
  2610. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2611. w1 = Instance.new("Weld", p1)
  2612. w1.Name = "Part_Weld"
  2613. w1.Part0 = p1
  2614. w1.C0 = CFrame.new(-67.2025909, -3.50003719, 14.2622871, 1, -8.94065977e-008, 5.79734944e-008, 8.94065977e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2615. w1.Part1 = p2
  2616. w1.C1 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2617. w2 = Instance.new("Weld", p2)
  2618. w2.Name = "Part_Weld"
  2619. w2.Part0 = p2
  2620. w2.C0 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2621. w2.Part1 = p3
  2622. w2.C1 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2623. w3 = Instance.new("Weld", p3)
  2624. w3.Name = "Part_Weld"
  2625. w3.Part0 = p3
  2626. w3.C0 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2627. w3.Part1 = p4
  2628. w3.C1 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2629. w4 = Instance.new("Weld", p4)
  2630. w4.Name = "Part_Weld"
  2631. w4.Part0 = p4
  2632. w4.C0 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2633. w4.Part1 = p5
  2634. w4.C1 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2635. w5 = Instance.new("Weld", p5)
  2636. w5.Name = "Part_Weld"
  2637. w5.Part0 = p5
  2638. w5.C0 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2639. w5.Part1 = p6
  2640. w5.C1 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2641. w6 = Instance.new("Weld", p6)
  2642. w6.Name = "Part_Weld"
  2643. w6.Part0 = p6
  2644. w6.C0 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2645. w6.Part1 = p7
  2646. w6.C1 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2647. w7 = Instance.new("Weld", p7)
  2648. w7.Name = "Part_Weld"
  2649. w7.Part0 = p7
  2650. w7.C0 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2651. w7.Part1 = p8
  2652. w7.C1 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2653. w8 = Instance.new("Weld", p8)
  2654. w8.Name = "Wedge_Weld"
  2655. w8.Part0 = p8
  2656. w8.C0 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2657. w8.Part1 = p9
  2658. w8.C1 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2659. w9 = Instance.new("Weld", p9)
  2660. w9.Name = "Part_Weld"
  2661. w9.Part0 = p9
  2662. w9.C0 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2663. w9.Part1 = p10
  2664. w9.C1 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2665. w10 = Instance.new("Weld", p10)
  2666. w10.Name = "Part_Weld"
  2667. w10.Part0 = p10
  2668. w10.C0 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2669. w10.Part1 = p11
  2670. w10.C1 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2671. w11 = Instance.new("Weld", p11)
  2672. w11.Name = "Part_Weld"
  2673. w11.Part0 = p11
  2674. w11.C0 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2675. w11.Part1 = p12
  2676. w11.C1 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2677. w12 = Instance.new("Weld", p12)
  2678. w12.Name = "Part_Weld"
  2679. w12.Part0 = p12
  2680. w12.C0 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2681. w12.Part1 = p13
  2682. w12.C1 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2683. w13 = Instance.new("Weld", p13)
  2684. w13.Name = "Wedge_Weld"
  2685. w13.Part0 = p13
  2686. w13.C0 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2687. w13.Part1 = p14
  2688. w13.C1 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2689. w14 = Instance.new("Weld", p14)
  2690. w14.Name = "Wedge_Weld"
  2691. w14.Part0 = p14
  2692. w14.C0 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2693. w14.Part1 = p15
  2694. w14.C1 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2695. w15 = Instance.new("Weld", p15)
  2696. w15.Name = "Wedge_Weld"
  2697. w15.Part0 = p15
  2698. w15.C0 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2699. w15.Part1 = p16
  2700. w15.C1 = CFrame.new(-67.4004517, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2701. m.Parent = rleg
  2702. m:MakeJoints()
  2703. ----------------------------------------------------
  2704. local cor6 = Instance.new("Part", rleg.RightLeg)
  2705. cor6.Name = "Thingy"
  2706. cor6.Locked = true
  2707. cor6.BottomSurface = 0
  2708. cor6.CanCollide = false
  2709. cor6.Size = Vector3.new(2, 1, 1)
  2710. cor6.Transparency = 1
  2711. cor6.TopSurface = 0
  2712. corw2 = Instance.new("Weld", cor6)
  2713. corw2.Part0 = rleg
  2714. corw2.Part1 = cor6
  2715. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2716. corw2.C1 = CFrame.new(0, 0, 0)
  2717. weld2 = Instance.new("Weld", rleg.RightLeg)
  2718. weld2.Part0 = cor6
  2719. weld2.Part1 = p7
  2720. weld2.C0 = CFrame.new(0, 0, 0)
  2721. ----------------------------------------------------
  2722. local m = Instance.new("Model")
  2723. m.Name = "LeftLeg"
  2724. p1 = Instance.new("WedgePart", m)
  2725. p1.BrickColor = BrickColor.new("Bright blue")
  2726. p1.Material = Enum.Material.Neon
  2727. p1.Name = "Wedge"
  2728. p1.FormFactor = Enum.FormFactor.Custom
  2729. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2730. p1.CFrame = CFrame.new(64.3107605, 2.34980536, -14.7520046, 1.00008786, -7.1526415e-007, 2.00803143e-007, -2.2649931e-006, 0.999990404, 5.36453001e-007, -1.27237047e-006, 7.81809263e-007, 1.00007522)
  2731. p1.CanCollide = false
  2732. p1.Locked = true
  2733. p1.TopSurface = Enum.SurfaceType.Smooth
  2734. b1 = Instance.new("SpecialMesh", p1)
  2735. b1.MeshType = Enum.MeshType.Wedge
  2736. b1.Name = "Mesh"
  2737. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2738. p2 = Instance.new("WedgePart", m)
  2739. p2.BrickColor = BrickColor.new("Bright blue")
  2740. p2.Material = Enum.Material.Neon
  2741. p2.Name = "Wedge"
  2742. p2.FormFactor = Enum.FormFactor.Custom
  2743. p2.Size = Vector3.new(1, 1.19999981, 4)
  2744. p2.CFrame = CFrame.new(64.9138336, 3.49979234, -10.7640553, -1.00009644, -6.38643314e-007, 1.81689501e-007, 2.53323037e-006, 0.906298041, -0.422614515, 1.23479219e-006, -0.422652602, -0.906383216)
  2745. p2.CanCollide = false
  2746. p2.Locked = true
  2747. p2.TopSurface = Enum.SurfaceType.Smooth
  2748. b2 = Instance.new("SpecialMesh", p2)
  2749. b2.MeshType = Enum.MeshType.Wedge
  2750. b2.Name = "Mesh"
  2751. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2752. p3 = Instance.new("Part", m)
  2753. p3.BrickColor = BrickColor.new("Really black")
  2754. p3.Material = Enum.Material.Metal
  2755. p3.Name = "Main"
  2756. p3.FormFactor = Enum.FormFactor.Custom
  2757. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2758. p3.CFrame = CFrame.new(65.0144501, 3.99976897, -13.1643734, 1.00010526, -9.43461771e-007, 1.5135204e-007, -2.48442234e-006, 0.999988973, 7.74860382e-007, -1.32394814e-006, 8.94069672e-007, 1.00009048)
  2759. p3.CanCollide = false
  2760. p3.Locked = true
  2761. p3.BottomSurface = Enum.SurfaceType.Smooth
  2762. p3.TopSurface = Enum.SurfaceType.Smooth
  2763. p4 = Instance.new("Part", m)
  2764. p4.BrickColor = BrickColor.new("Really black")
  2765. p4.Material = Enum.Material.Neon
  2766. p4.FormFactor = Enum.FormFactor.Custom
  2767. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2768. p4.CFrame = CFrame.new(64.8149185, 4.09976244, -14.2645903, 1.00011396, -1.07351866e-006, 1.23178822e-007, -2.62327239e-006, 0.999988258, 8.64272579e-007, -1.33881622e-006, 1.01328953e-006, 1.00009811)
  2769. p4.CanCollide = false
  2770. p4.Locked = true
  2771. p4.BottomSurface = Enum.SurfaceType.Smooth
  2772. p4.TopSurface = Enum.SurfaceType.Smooth
  2773. b3 = Instance.new("SpecialMesh", p4)
  2774. b3.MeshType = Enum.MeshType.Sphere
  2775. b3.Name = "Mesh"
  2776. p5 = Instance.new("WedgePart", m)
  2777. p5.BrickColor = BrickColor.new("Bright blue")
  2778. p5.Material = Enum.Material.Neon
  2779. p5.Name = "Wedge"
  2780. p5.FormFactor = Enum.FormFactor.Custom
  2781. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2782. p5.CFrame = CFrame.new(64.9130707, 2.34976578, -14.7524614, 1.00012243, -1.19274011e-006, 9.97973828e-008, -2.74250215e-006, 0.999987364, 8.94081438e-007, -1.37342522e-006, 1.15432931e-006, 1.00010574)
  2783. p5.CanCollide = false
  2784. p5.Locked = true
  2785. p5.TopSurface = Enum.SurfaceType.Smooth
  2786. b4 = Instance.new("SpecialMesh", p5)
  2787. b4.MeshType = Enum.MeshType.Wedge
  2788. b4.Name = "Mesh"
  2789. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2790. p6 = Instance.new("Part", m)
  2791. p6.BrickColor = BrickColor.new("Bright blue")
  2792. p6.Material = Enum.Material.Neon
  2793. p6.FormFactor = Enum.FormFactor.Custom
  2794. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2795. p6.CFrame = CFrame.new(65.1539307, 3.56787443, -14.2648125, -0.81925869, 0.573652625, 6.3568308e-008, -0.573566198, -0.819142461, 1.03511331e-006, 4.69596898e-007, -1.7646264e-006, 1.00011337)
  2796. p6.CanCollide = false
  2797. p6.Locked = true
  2798. p6.BottomSurface = Enum.SurfaceType.Smooth
  2799. p6.TopSurface = Enum.SurfaceType.Smooth
  2800. p7 = Instance.new("Part", m)
  2801. p7.BrickColor = BrickColor.new("Bright blue")
  2802. p7.Material = Enum.Material.Neon
  2803. p7.FormFactor = Enum.FormFactor.Custom
  2804. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2805. p7.CFrame = CFrame.new(64.9899063, 4.4266243, -14.2649202, 0.86614728, 0.500068843, 4.87115699e-008, -0.499995351, 0.866011381, 1.14634361e-006, -1.86828663e-006, 3.82691809e-007, 1.000121)
  2806. p7.CanCollide = false
  2807. p7.Locked = true
  2808. p7.BottomSurface = Enum.SurfaceType.Smooth
  2809. p7.TopSurface = Enum.SurfaceType.Smooth
  2810. p8 = Instance.new("Part", m)
  2811. p8.BrickColor = BrickColor.new("Really black")
  2812. p8.Material = Enum.Material.Neon
  2813. p8.FormFactor = Enum.FormFactor.Custom
  2814. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2815. p8.CFrame = CFrame.new(65.2172623, 4.89969873, -14.2650318, 1.00014877, -1.43051147e-006, 2.05365609e-008, -3.09944153e-006, 0.99998486, 1.2357583e-006, -1.44150738e-006, 1.38478742e-006, 1.00012863)
  2816. p8.CanCollide = false
  2817. p8.Locked = true
  2818. p8.BottomSurface = Enum.SurfaceType.Smooth
  2819. p8.TopSurface = Enum.SurfaceType.Smooth
  2820. b5 = Instance.new("SpecialMesh", p8)
  2821. b5.MeshType = Enum.MeshType.Sphere
  2822. b5.Name = "Mesh"
  2823. p9 = Instance.new("Part", m)
  2824. p9.BrickColor = BrickColor.new("Really black")
  2825. p9.Material = Enum.Material.Neon
  2826. p9.FormFactor = Enum.FormFactor.Custom
  2827. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2828. p9.CFrame = CFrame.new(65.517868, 2.99971151, -14.2651463, 1.00015736, -1.5520751e-006, -9.27031252e-009, -3.21633729e-006, 0.999984026, 1.32517368e-006, -1.46969478e-006, 1.46621869e-006, 1.00013626)
  2829. p9.CanCollide = false
  2830. p9.Locked = true
  2831. p9.BottomSurface = Enum.SurfaceType.Smooth
  2832. p9.TopSurface = Enum.SurfaceType.Smooth
  2833. b6 = Instance.new("SpecialMesh", p9)
  2834. b6.MeshType = Enum.MeshType.Sphere
  2835. b6.Name = "Mesh"
  2836. p10 = Instance.new("Part", m)
  2837. p10.BrickColor = BrickColor.new("Bright blue")
  2838. p10.Material = Enum.Material.Neon
  2839. p10.FormFactor = Enum.FormFactor.Custom
  2840. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2841. p10.CFrame = CFrame.new(64.79879, 5.1497221, -14.2652512, -0.642893076, 0.766172707, -3.7446263e-008, -0.766029418, -0.64277941, 1.40660427e-006, -2.27817864e-007, -2.14863894e-006, 1.00014389)
  2842. p10.CanCollide = false
  2843. p10.Locked = true
  2844. p10.BottomSurface = Enum.SurfaceType.Smooth
  2845. p10.TopSurface = Enum.SurfaceType.Smooth
  2846. p11 = Instance.new("Part", m)
  2847. p11.BrickColor = BrickColor.new("Bright blue")
  2848. p11.Material = Enum.Material.Neon
  2849. p11.FormFactor = Enum.FormFactor.Custom
  2850. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2851. p11.CFrame = CFrame.new(65.2189484, 5.30325174, -14.2653618, 1.00017476, -1.78813934e-006, -6.56227002e-008, -3.4570694e-006, 0.999982595, 1.49602079e-006, -1.52770292e-006, 1.64505627e-006, 1.00015152)
  2852. p11.CanCollide = false
  2853. p11.Locked = true
  2854. p11.BottomSurface = Enum.SurfaceType.Smooth
  2855. p11.TopSurface = Enum.SurfaceType.Smooth
  2856. p12 = Instance.new("WedgePart", m)
  2857. p12.BrickColor = BrickColor.new("Bright blue")
  2858. p12.Material = Enum.Material.Neon
  2859. p12.Name = "Wedge"
  2860. p12.FormFactor = Enum.FormFactor.Custom
  2861. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2862. p12.CFrame = CFrame.new(65.5171509, 2.34969687, -14.7532635, 1.00018334, -1.89246384e-006, -8.90070169e-008, -3.54650388e-006, 0.999981821, 1.52583425e-006, -1.56231545e-006, 1.78610321e-006, 1.00015914)
  2863. p12.CanCollide = false
  2864. p12.Locked = true
  2865. p12.TopSurface = Enum.SurfaceType.Smooth
  2866. b7 = Instance.new("SpecialMesh", p12)
  2867. b7.MeshType = Enum.MeshType.Wedge
  2868. b7.Name = "Mesh"
  2869. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2870. p13 = Instance.new("Part", m)
  2871. p13.BrickColor = BrickColor.new("Really black")
  2872. p13.Material = Enum.Material.Neon
  2873. p13.FormFactor = Enum.FormFactor.Custom
  2874. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2875. p13.CFrame = CFrame.new(64.3198929, 5.59963703, -14.2655821, 1.00019193, -1.97098893e-006, -1.23608402e-007, -3.67657594e-006, 0.999981046, 1.66687016e-006, -1.58571254e-006, 1.81590929e-006, 1.00016677)
  2876. p13.CanCollide = false
  2877. p13.Locked = true
  2878. p13.BottomSurface = Enum.SurfaceType.Smooth
  2879. p13.TopSurface = Enum.SurfaceType.Smooth
  2880. b8 = Instance.new("SpecialMesh", p13)
  2881. b8.MeshType = Enum.MeshType.Sphere
  2882. b8.Name = "Mesh"
  2883. p14 = Instance.new("Part", m)
  2884. p14.BrickColor = BrickColor.new("Really black")
  2885. p14.Material = Enum.Material.Neon
  2886. p14.FormFactor = Enum.FormFactor.Custom
  2887. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2888. p14.CFrame = CFrame.new(65.2206192, 5.79961872, -14.2656937, 1.00020039, -2.10105645e-006, -1.51786239e-007, -3.75511786e-006, 0.99998033, 1.7562885e-006, -1.6139021e-006, 1.90533035e-006, 1.0001744)
  2889. p14.CanCollide = false
  2890. p14.Locked = true
  2891. p14.BottomSurface = Enum.SurfaceType.Smooth
  2892. p14.TopSurface = Enum.SurfaceType.Smooth
  2893. b9 = Instance.new("SpecialMesh", p14)
  2894. b9.MeshType = Enum.MeshType.Sphere
  2895. b9.Name = "Mesh"
  2896. w1 = Instance.new("Weld", p1)
  2897. w1.Name = "Wedge_Weld"
  2898. w1.Part0 = p1
  2899. w1.C0 = CFrame.new(-64.3004303, -0.350028396, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2900. w1.Part1 = p2
  2901. w1.C1 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  2902. w2 = Instance.new("Weld", p2)
  2903. w2.Name = "Part_Weld"
  2904. w2.Part0 = p2
  2905. w2.C0 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  2906. w2.Part1 = p3
  2907. w2.C1 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2908. w3 = Instance.new("Weld", p3)
  2909. w3.Name = "Part_Weld"
  2910. w3.Part0 = p3
  2911. w3.C0 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2912. w3.Part1 = p4
  2913. w3.C1 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2914. w4 = Instance.new("Weld", p4)
  2915. w4.Name = "Wedge_Weld"
  2916. w4.Part0 = p4
  2917. w4.C0 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2918. w4.Part1 = p5
  2919. w4.C1 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2920. w5 = Instance.new("Weld", p5)
  2921. w5.Name = "Part_Weld"
  2922. w5.Part0 = p5
  2923. w5.C0 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2924. w5.Part1 = p6
  2925. w5.C1 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2926. w6 = Instance.new("Weld", p6)
  2927. w6.Name = "Part_Weld"
  2928. w6.Part0 = p6
  2929. w6.C0 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2930. w6.Part1 = p7
  2931. w6.C1 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2932. w7 = Instance.new("Weld", p7)
  2933. w7.Name = "Part_Weld"
  2934. w7.Part0 = p7
  2935. w7.C0 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2936. w7.Part1 = p8
  2937. w7.C1 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2938. w8 = Instance.new("Weld", p8)
  2939. w8.Name = "Part_Weld"
  2940. w8.Part0 = p8
  2941. w8.C0 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2942. w8.Part1 = p9
  2943. w8.C1 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2944. w9 = Instance.new("Weld", p9)
  2945. w9.Name = "Part_Weld"
  2946. w9.Part0 = p9
  2947. w9.C0 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2948. w9.Part1 = p10
  2949. w9.C1 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2950. w10 = Instance.new("Weld", p10)
  2951. w10.Name = "Part_Weld"
  2952. w10.Part0 = p10
  2953. w10.C0 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2954. w10.Part1 = p11
  2955. w10.C1 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2956. w11 = Instance.new("Weld", p11)
  2957. w11.Name = "Wedge_Weld"
  2958. w11.Part0 = p11
  2959. w11.C0 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2960. w11.Part1 = p12
  2961. w11.C1 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2962. w12 = Instance.new("Weld", p12)
  2963. w12.Name = "Part_Weld"
  2964. w12.Part0 = p12
  2965. w12.C0 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2966. w12.Part1 = p13
  2967. w12.C1 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2968. w13 = Instance.new("Weld", p13)
  2969. w13.Name = "Part_Weld"
  2970. w13.Part0 = p13
  2971. w13.C0 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2972. w13.Part1 = p14
  2973. w13.C1 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2974. w14 = Instance.new("Weld", p14)
  2975. w14.Name = "Wedge_Weld"
  2976. w14.Part0 = p14
  2977. w14.C0 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2978. m.Parent = lleg
  2979. m:MakeJoints()
  2980. ----------------------------------------------------
  2981. local cor7 = Instance.new("Part", lleg.LeftLeg)
  2982. cor7.Name = "Thingy"
  2983. cor7.Locked = true
  2984. cor7.BottomSurface = 0
  2985. cor7.CanCollide = false
  2986. cor7.Size = Vector3.new(2, 1, 1)
  2987. cor7.Transparency = 1
  2988. cor7.TopSurface = 0
  2989. corw2 = Instance.new("Weld", cor7)
  2990. corw2.Part0 = lleg
  2991. corw2.Part1 = cor7
  2992. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2993. corw2.C1 = CFrame.new(0, 0, 0)
  2994. weld2 = Instance.new("Weld", lleg.LeftLeg)
  2995. weld2.Part0 = cor7
  2996. weld2.Part1 = p3
  2997. weld2.C0 = CFrame.new(0, 0, 0)
  2998. ----------------------------------------------------
  2999. function weld5(part0, part1, c0, c1)
  3000. weeld=Instance.new("Weld", part0)
  3001. weeld.Part0=part0
  3002. weeld.Part1=part1
  3003. weeld.C0=c0
  3004. weeld.C1=c1
  3005. return weeld
  3006. end
  3007. ----------------------------------------------------
  3008. function newRay(start,face,range,wat)
  3009. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3010. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3011. return rey,hit,pos
  3012. end
  3013. ----------------------------------------------------
  3014. mod5 = Instance.new("Model",char)
  3015.  
  3016. function FindNearestTorso(Position,Distance,SinglePlayer)
  3017. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3018. local List = {}
  3019. for i,v in pairs(workspace:GetChildren())do
  3020. if v:IsA("Model")then
  3021. if v:findFirstChild("Torso")then
  3022. if v ~= char then
  3023. if(v.Torso.Position -Position).magnitude <= Distance then
  3024. table.insert(List,v)
  3025. end
  3026. end
  3027. end
  3028. end
  3029. end
  3030. return List
  3031. end
  3032.  
  3033. function Landing()
  3034. part=Instance.new('Part',mod5)
  3035. part.Anchored=true
  3036. part.CanCollide=false
  3037. part.FormFactor='Custom'
  3038. part.Size=Vector3.new(.2,.2,.2)
  3039. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3040. part.Transparency=.7
  3041. part.BrickColor=BrickColor.new('Really black')
  3042. part2=part:clone()
  3043. part2.Parent = mod5
  3044. part2.BrickColor=BrickColor.new('Bright blue')
  3045. mesh=Instance.new('SpecialMesh',part)
  3046. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3047. mesh.Scale=Vector3.new(10,5,10)
  3048. mesh2=mesh:clone()
  3049. mesh2.Parent=part2
  3050. mesh2.Scale=Vector3.new(12, 6, 12)
  3051.  
  3052. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3053. if v:FindFirstChild('Humanoid') then
  3054. v.Humanoid:TakeDamage(math.random(20,30))
  3055. v.Humanoid.PlatformStand = true
  3056. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
  3057. end
  3058. end
  3059.  
  3060. coroutine.resume(coroutine.create(function()
  3061. for i=0,3.8,0.05 do
  3062. wait()
  3063. part.CFrame=part.CFrame
  3064. part.Transparency=i
  3065. part2.CFrame=part2.CFrame
  3066. part2.Transparency=i
  3067. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3068. mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3069. end
  3070. part.Parent = nil
  3071. end))
  3072. end
  3073. ----------------------------------------------------
  3074. mod4 = Instance.new("Model",char)
  3075.  
  3076. ptez = {0.7, 0.8, 0.9, 1}
  3077.  
  3078. function FindNearestTorso(Position,Distance,SinglePlayer)
  3079. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3080. local List = {}
  3081. for i,v in pairs(workspace:GetChildren())do
  3082. if v:IsA("Model")then
  3083. if v:findFirstChild("Torso")then
  3084. if v ~= char then
  3085. if(v.Torso.Position -Position).magnitude <= Distance then
  3086. table.insert(List,v)
  3087. end
  3088. end
  3089. end
  3090. end
  3091. end
  3092. return List
  3093. end
  3094.  
  3095. function GroundPound()
  3096. part=Instance.new('Part',mod4)
  3097. part.Anchored=true
  3098. part.CanCollide=false
  3099. part.FormFactor='Custom'
  3100. part.Size=Vector3.new(.2,.2,.2)
  3101. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3102. part.Transparency=.7
  3103. part.BrickColor=BrickColor.new('Really black')
  3104. mesh=Instance.new('SpecialMesh',part)
  3105. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3106. mesh.Scale=Vector3.new(3,3,3)
  3107. part2=Instance.new('Part',mod4)
  3108. part2.Anchored=true
  3109. part2.CanCollide=false
  3110. part2.FormFactor='Custom'
  3111. part2.Size=Vector3.new(.2,.2,.2)
  3112. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3113. part2.Transparency=.7
  3114. part2.BrickColor=BrickColor.new('Really red')
  3115. mesh2=Instance.new('SpecialMesh',part2)
  3116. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3117. mesh2.Scale=Vector3.new(3,1.5,3)
  3118. x = Instance.new("Sound",char)
  3119. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  3120. x.Pitch = ptez[math.random(1,#ptez)]
  3121. x.Volume = 1
  3122. wait(.1)
  3123. x:Play()
  3124. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3125. if v:FindFirstChild('Humanoid') then
  3126. v.Humanoid:TakeDamage(math.random(8,15))
  3127. end
  3128. end
  3129. coroutine.resume(coroutine.create(function()
  3130. for i=0,0.62,0.13 do
  3131. wait()
  3132. part.CFrame=part.CFrame
  3133. part.Transparency=i
  3134. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3135. part2.CFrame=part2.CFrame
  3136. part2.Transparency=i
  3137. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3138. end
  3139. part.Parent=nil
  3140. part2.Parent=nil
  3141. x:Destroy()
  3142. end))
  3143. end
  3144. ----------------------------------------------------
  3145. mod=Instance.new('Model',char)
  3146.  
  3147. function charge()
  3148. hed.Velocity=hed.CFrame.lookVector*200
  3149. part=Instance.new('Part',mod)
  3150. part.Anchored=true
  3151. part.CanCollide=false
  3152. part.FormFactor='Custom'
  3153. part.Size=Vector3.new(.2,.2,.2)
  3154. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3155. part.Transparency=.7
  3156. part.BrickColor=BrickColor.new('Black')
  3157. mesh=Instance.new('SpecialMesh',part)
  3158. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3159. mesh.Scale=Vector3.new(10,5,10)
  3160. part2=part:clone()
  3161. part2.Parent=mod
  3162. part2.BrickColor=BrickColor.new('Bright red')
  3163. mesh2=mesh:clone()
  3164. mesh2.Parent=part2
  3165. mesh2.Scale=Vector3.new(20,10,20)
  3166. part3=part2:clone()
  3167. part3.Parent = mod
  3168. part3.BrickColor=BrickColor.new('Really black')
  3169. mesh3=mesh2:clone()
  3170. mesh2.Parent=part3
  3171. mesh3.Scale=Vector3.new(30,15,30)
  3172. coroutine.resume(coroutine.create(function()
  3173. for i=0,1,0.1 do
  3174. wait()
  3175. part.CFrame=part.CFrame
  3176. part.Transparency=i
  3177. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3178. part2.CFrame=part2.CFrame
  3179. part2.Transparency=i
  3180. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3181. part3.CFrame=part3.CFrame
  3182. part3.Transparency=i
  3183. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3184. end
  3185. part.Parent=nil
  3186. part2.Parent=nil
  3187. part3.Parent = nil
  3188. end))
  3189. end
  3190. ----------------------------------------------------
  3191. function FindNearestTorso(Position,Distance,SinglePlayer)
  3192. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3193. local List = {}
  3194. for i,v in pairs(workspace:GetChildren())do
  3195. if v:IsA("Model")then
  3196. if v:findFirstChild("Torso")then
  3197. if v ~= char then
  3198. if(v.Torso.Position -Position).magnitude <= Distance then
  3199. table.insert(List,v)
  3200. end
  3201. end
  3202. end
  3203. end
  3204. end
  3205. return List
  3206. end
  3207.  
  3208. mod3 = Instance.new("Model",rleg)
  3209.  
  3210. function Stomp()
  3211. part=Instance.new('Part',mod3)
  3212. part.Anchored=true
  3213. part.CanCollide=false
  3214. part.FormFactor='Custom'
  3215. part.Size=Vector3.new(.2,.2,.2)
  3216. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3217. part.Transparency=.7
  3218. part.BrickColor=BrickColor.new('Bright green')
  3219. mesh=Instance.new('SpecialMesh',part)
  3220. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3221. mesh.Scale=Vector3.new(25,25,25)
  3222. part2=part:clone()
  3223. part2.Parent=mod3
  3224. part2.BrickColor=BrickColor.new('Bright green')
  3225. mesh2=mesh:clone()
  3226. mesh2.Parent=part2
  3227. mesh2.Scale=Vector3.new(15,15,15)
  3228. part3=part:clone()
  3229. part3.Parent=mod3
  3230. part3.TopSurface=0
  3231. part3.BottomSurface=0
  3232. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3233. mesh3=Instance.new('SpecialMesh',part3)
  3234. mesh3.MeshType = 3
  3235. mesh3.Scale=Vector3.new(12,12,12)
  3236. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3237. if v:FindFirstChild('Humanoid') then
  3238. v.Humanoid:TakeDamage(math.random(20,60))
  3239. v.Humanoid.PlatformStand = true
  3240. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3241. end
  3242. end
  3243. coroutine.resume(coroutine.create(function()
  3244. for i=0,3.8,0.05 do
  3245. wait()
  3246. part.CFrame=part.CFrame
  3247. part.Transparency=i
  3248. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3249. part2.CFrame=part2.CFrame
  3250. part2.Transparency=i
  3251. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3252. part3.CFrame=part3.CFrame
  3253. part3.Transparency=i
  3254. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3255. end
  3256. end))
  3257. end
  3258. ----------------------------------------------------
  3259.  
  3260. local acos = math.acos
  3261. local sqrt = math.sqrt
  3262. local Vec3 = Vector3.new
  3263. local fromAxisAngle = CFrame.fromAxisAngle
  3264.  
  3265. local function toAxisAngle(CFr)
  3266. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3267. local Angle = math.acos((R00+R11+R22-1)/2)
  3268. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3269. A = A == 0 and 0.00001 or A
  3270. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3271. B = B == 0 and 0.00001 or B
  3272. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3273. C = C == 0 and 0.00001 or C
  3274. local x = (R21-R12)/sqrt(A)
  3275. local y = (R02-R20)/sqrt(B)
  3276. local z = (R10-R01)/sqrt(C)
  3277. return Vec3(x,y,z),Angle
  3278. end
  3279.  
  3280. function ApplyTrig(Num,Func)
  3281. local Min,Max = Func(0),Func(1)
  3282. local i = Func(Num)
  3283. return (i-Min)/(Max-Min)
  3284. --[[if Func == "sin" then
  3285. return (math.sin((1-Num)*math.pi)+1)/2
  3286. elseif Func == "cos" then
  3287. return (math.cos((1-Num)*math.pi)+1)/2
  3288. end]]
  3289. end
  3290.  
  3291. function LerpCFrame(CFrame1,CFrame2,Num)
  3292. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3293. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3294. end
  3295.  
  3296. function Crater(Torso,Radius)
  3297. Spawn(function()
  3298. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  3299. local Ignore = {}
  3300. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3301. if v.Character ~= nil then
  3302. Ignore[#Ignore+1] = v.Character
  3303. end
  3304. end
  3305. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3306. if Hit == nil then return end
  3307. local Parts = {}
  3308. for i = 1,360,10 do
  3309. local P = Instance.new("Part",Torso.Parent)
  3310. P.Anchored = true
  3311. P.FormFactor = "Custom"
  3312. P.BrickColor = Hit.BrickColor
  3313. P.Material = Hit.Material
  3314. P.TopSurface = "Smooth"
  3315. P.BottomSurface = "Smooth"
  3316. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3317. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  3318. Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
  3319. if math.random(0,5) == 0 then -- rubble
  3320. local P = Instance.new("Part",Torso.Parent)
  3321. P.Anchored = true
  3322. P.FormFactor = "Custom"
  3323. P.BrickColor = Hit.BrickColor
  3324. P.Material = Hit.Material
  3325. P.TopSurface = "Smooth"
  3326. P.BottomSurface = "Smooth"
  3327. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3328. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  3329. Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
  3330. end
  3331. end
  3332. for i = 0,1,0.05 do
  3333. for i2,v in pairs(Parts) do
  3334. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3335. end
  3336. wait(0.02)
  3337. end
  3338. for i,v in pairs(Parts) do
  3339. if v[1].Size.X > 2.1 then
  3340. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3341. end
  3342. v[1].Anchored = false
  3343. end
  3344. for i = 0,1,0.05 do
  3345. for i2,v in pairs(Parts) do
  3346. v[1].Transparency = i
  3347. if i == 1 then
  3348. v[1]:Destroy()
  3349. elseif i >= 0.25 then
  3350. v[1].CanCollide = false
  3351. end
  3352. end
  3353. wait(0.02)
  3354. end
  3355. Parts = nil
  3356. end)
  3357. end
  3358.  
  3359. ----------------------------------------------------
  3360. mouse.KeyDown:connect(function(key)
  3361. if key == "r" then
  3362. larm.BrickColor = BrickColor.new("Bright red")
  3363. rarm.BrickColor = BrickColor.new("Bright red")
  3364. if Debounces.CanAttack == true then
  3365. Debounces.CanAttack = false
  3366. Debounces.on = true
  3367. Debounces.NoIdl = true
  3368. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3369. hit = ht.Parent
  3370. if ht and hit:IsA("Model") then
  3371. if hit:FindFirstChild("Humanoid") then
  3372. if hit.Name ~= p.Name then
  3373. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3374. Debounces.Slashed = true]]--
  3375. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3376. wait(1)
  3377. --Debounces.Slashed = false
  3378. --end
  3379. end
  3380. end
  3381. elseif ht and hit:IsA("Hat") then
  3382. if hit.Parent.Name ~= p.Name then
  3383. if hit.Parent:FindFirstChild("Humanoid") then
  3384. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3385. Debounces.Slashed = true]]--
  3386. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3387. wait(1)
  3388. --Debounces.Slashed = false
  3389. end
  3390. end
  3391. end
  3392. end)
  3393. q = Instance.new("Sound",hed)
  3394. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3395. q.Pitch = 0.85
  3396. q.Looped = false
  3397. q1 = Instance.new("Sound",hed)
  3398. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3399. q1.Pitch = 0.85
  3400. q1.Looped = false
  3401. q:Play()
  3402. q1:Play()
  3403. for i = 1,20 do
  3404. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
  3405. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
  3406. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3407. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3408. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3409. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3410. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.25)
  3411. if Debounces.on == false then break end
  3412. rs:wait(.6)
  3413. end
  3414. n = Instance.new("Sound",hed)
  3415. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3416. n.Pitch = 0.94
  3417. n.Looped = false
  3418. n1 = Instance.new("Sound",hed)
  3419. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3420. n1.Pitch = 0.94
  3421. n1.Looped = false
  3422. n:Play()
  3423. n1:Play()
  3424. b = Instance.new("Sound",hed)
  3425. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3426. b.Pitch = 0.94
  3427. b.Looped = false
  3428. b1 = Instance.new("Sound",hed)
  3429. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3430. b1.Pitch = 0.94
  3431. b1.Looped = false
  3432. b:Play()
  3433. b1:Play()
  3434. for i = 1,26 do
  3435. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.25)
  3436. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.25)
  3437. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.25)
  3438. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3439. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3440. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3441. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.25)
  3442. if Debounces.on == false then break end
  3443. rs:wait(1)
  3444. end
  3445. wait(.5)
  3446. to:disconnect()
  3447. q:Destroy()
  3448. q1:Destroy()
  3449. n:Destroy()
  3450. n1:Destroy()
  3451. larm.BrickColor = BrickColor.new("Really black")
  3452. rarm.BrickColor = BrickColor.new("Really black")
  3453. if Debounces.CanAttack == false then
  3454. Debounces.CanAttack = true
  3455. Debounces.on = false
  3456. Debounces.NoIdl = false
  3457. end
  3458. end
  3459. end
  3460. end)
  3461. ----------------------------------------------------
  3462. mouse.KeyDown:connect(function(key)
  3463. if key == "q" then
  3464. larm.BrickColor = BrickColor.new("Bright red")
  3465. rarm.BrickColor = BrickColor.new("Bright red")
  3466. if Debounces.CanAttack == true then
  3467. Debounces.CanAttack = false
  3468. Debounces.on = true
  3469. Debounces.NoIdl = true
  3470. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3471. hit = ht.Parent
  3472. if ht and hit:IsA("Model") then
  3473. if hit:FindFirstChild("Humanoid") then
  3474. if hit.Name ~= p.Name then
  3475. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3476. Debounces.Slashed = true]]--
  3477. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3478. wait(1)
  3479. --Debounces.Slashed = false
  3480. --end
  3481. end
  3482. end
  3483. elseif ht and hit:IsA("Hat") then
  3484. if hit.Parent.Name ~= p.Name then
  3485. if hit.Parent:FindFirstChild("Humanoid") then
  3486. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3487. Debounces.Slashed = true]]--
  3488. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3489. wait(1)
  3490. --Debounces.Slashed = false
  3491. end
  3492. end
  3493. end
  3494. end)
  3495. for i = 1, 20 do
  3496. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  3497. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  3498. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3499. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  3500. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3501. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3502. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3503. if Debounces.on == false then break end
  3504. rs:wait(2)
  3505. end
  3506. z = Instance.new("Sound",hed)
  3507. z.SoundId = "rbxassetid://160069154"
  3508. z.Looped = false
  3509. z.Pitch = .9
  3510. z1 = Instance.new("Sound",hed)
  3511. z1.SoundId = "rbxassetid://160069154"
  3512. z1.Looped = false
  3513. z1.Pitch = .9
  3514. wait(0.01)
  3515. z:Play()
  3516. z1:Play()
  3517. for i = 1, 20 do
  3518. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  3519. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  3520. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3521. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  3522. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3523. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3524. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3525. if Debounces.on == false then break end
  3526. rs:wait(2)
  3527. end
  3528. for i = 1, 20 do
  3529. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  3530. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  3531. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3532. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3533. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3534. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3535. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3536. if Debounces.on == false then break end
  3537. rs:wait(2)
  3538. end
  3539. z = Instance.new("Sound",hed)
  3540. z.SoundId = "rbxassetid://168586621"
  3541. z.Looped = false
  3542. z.Pitch = 1
  3543. z1 = Instance.new("Sound",hed)
  3544. z1.SoundId = "rbxassetid://168586621"
  3545. z1.Looped = false
  3546. z1.Pitch = 1
  3547. wait(0.01)
  3548. z:Play()
  3549. z1:Play()
  3550. for i = 1, 20 do
  3551. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  3552. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  3553. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3554. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3555. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3556. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3557. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  3558. if Debounces.on == false then break end
  3559. rs:wait(2)
  3560. end
  3561. to:disconnect()
  3562. larm.BrickColor = BrickColor.new("Really black")
  3563. rarm.BrickColor = BrickColor.new("Really black")
  3564. if Debounces.CanAttack == false then
  3565. Debounces.CanAttack = true
  3566. Debounces.on = false
  3567. Debounces.NoIdl = false
  3568. end
  3569. end
  3570. end
  3571. end)
  3572. ----------------------------------------------------
  3573. Sit = false
  3574. mouse.KeyDown:connect(function(key)
  3575. if key == "v" then
  3576. if Sit == false then
  3577. Sit = true
  3578. hum.WalkSpeed = 0.001
  3579. stanceToggle = "Sitting"
  3580. elseif Sit == true then
  3581. Sit = false
  3582. hum.WalkSpeed = 7
  3583. stanceToggle = "Normal"
  3584. end
  3585. end
  3586. end)
  3587. ----------------------------------------------------
  3588. mouse.KeyDown:connect(function(key)
  3589. if key == "t" then
  3590. if Debounces.CanAttack == true then
  3591. Debounces.CanAttack = false
  3592. Debounces.on = true
  3593. Debounces.NoIdl = true
  3594. for i = 1, 20 do
  3595. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
  3596. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
  3597. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3598. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3599. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3600. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3601. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  3602. if Debounces.on == false then break end
  3603. rs:wait(2.6)
  3604. end
  3605. Spawn(function()
  3606. local Parts = {}
  3607. for Y = -5,5 do
  3608. local P = Instance.new("Part",char)
  3609. P.Anchored = true
  3610. P.FormFactor = "Custom"
  3611. P.CanCollide = false
  3612. P.Size = Vector3.new(1,2,1)
  3613. P.TopSurface = "SmoothNoOutlines"
  3614. P.BottomSurface = "SmoothNoOutlines"
  3615. P.BrickColor = BrickColor.new("Really black")
  3616. P.Name = tostring(Y)
  3617. local i = (Y+5)/(10)
  3618. i = 1-math.cos(math.pi*i-(math.pi/2))
  3619. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3620. --[[P.Touched:connect(function(ht)
  3621. local hit = ht.Parent
  3622. if hit:FindFirstChild("Humanoid") then
  3623. hit.Humanoid:TakeDamage(math.random(20,50))
  3624. end
  3625. end)]]--
  3626. s = Instance.new("Sound",P)
  3627. s.SoundId = "rbxassetid://228343271"
  3628. s.Volume = .7
  3629. s.Pitch = 0.9
  3630. s:Play()
  3631. P.Touched:connect(function(ht)
  3632. hit = ht.Parent
  3633. if ht and hit:IsA("Model") then
  3634. if hit:FindFirstChild("Humanoid") then
  3635. if hit.Name ~= p.Name then
  3636. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3637. Debounces.Slashed = true]]--
  3638. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  3639. hit:FindFirstChild("Humanoid").PlatformStand = true
  3640. wait(1)
  3641. --Debounces.Slashed = false
  3642. --end
  3643. end
  3644. end
  3645. elseif ht and hit:IsA("Hat") then
  3646. if hit.Parent.Name ~= p.Name then
  3647. if hit.Parent:FindFirstChild("Humanoid") then
  3648. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3649. Debounces.Slashed = true]]--
  3650. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  3651. hit:FindFirstChild("Humanoid").PlatformStand = true
  3652. wait(1)
  3653. --Debounces.Slashed = false
  3654. --end
  3655. end
  3656. end
  3657. end
  3658. end)
  3659. Parts[#Parts+1] = P
  3660. end
  3661. local BREAKIT = false
  3662. local CParts = {}
  3663. local Rocks = {}
  3664. local LastPos = nil
  3665. for i = 1,70 do
  3666. for i2,v in pairs(Parts) do
  3667. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3668. local cf = v.CFrame
  3669. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  3670. v.CFrame = cf
  3671. v.Transparency = v.Transparency+0.02
  3672. if v.Transparency >= 0.975 then BREAKIT = true end
  3673. if v.Name == "0" then
  3674. local Ignore = {}
  3675. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3676. if v.Character ~= nil then
  3677. Ignore[#Ignore+1] = v.Character
  3678. end
  3679. end
  3680. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3681. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3682. if Hit ~= nil then
  3683. if #Rocks == 0 then
  3684. for i = 1,5 do
  3685. local P = Instance.new("Part",char)
  3686. Rocks[#Rocks+1] = P
  3687. P.Anchored = true
  3688. P.FormFactor = "Custom"
  3689. P.BrickColor = Hit.BrickColor
  3690. P.Material = Hit.Material
  3691. P.TopSurface = "Smooth"
  3692. P.BottomSurface = "Smooth"
  3693. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3694. end
  3695. end
  3696. for i,P in pairs(Rocks) do
  3697. 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)))
  3698. end
  3699. local P = Instance.new("Part",char)
  3700. CParts[#CParts+1] = {P,tick()}
  3701. P.Anchored = true
  3702. P.FormFactor = "Custom"
  3703. P.BrickColor = Hit.BrickColor
  3704. P.Material = Hit.Material
  3705. P.TopSurface = "Smooth"
  3706. P.BottomSurface = "Smooth"
  3707. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3708. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3709. Pos = Pos.p
  3710. 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)))
  3711. local P = P:Clone()
  3712. CParts[#CParts+1] = {P,tick()}
  3713. P.Parent = char
  3714. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3715. Pos = Pos.p
  3716. 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)))
  3717. if LastPos ~= nil then
  3718. local P = P:Clone()
  3719. CParts[#CParts+1] = {P,tick()}
  3720. P.Parent = char
  3721. P.BrickColor = BrickColor.new("Really black")
  3722. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3723. Pos = Pos.p
  3724. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3725. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3726. --P.Velocity = Vector3.new(0,-1000,0)
  3727. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3728. end
  3729. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3730. end
  3731. end
  3732. end
  3733. if BREAKIT then break end
  3734. wait(0.002)
  3735. end
  3736. for i,v in pairs(Rocks) do
  3737. CParts[#CParts+1] = {v,tick()}
  3738. end
  3739. for i,v in pairs(Parts) do
  3740. v:Destroy()
  3741. end
  3742. Parts = nil
  3743. while true do
  3744. local t = tick()
  3745. local p = nil
  3746. for i,v in pairs(CParts) do
  3747. if t-v[2] > 4 then
  3748. v[1].Transparency = v[1].Transparency+0.05
  3749. if v[1].Transparency >= 1 then
  3750. v[1]:Destroy()
  3751. CParts[i] = nil
  3752. end
  3753. end
  3754. p = v
  3755. end
  3756. if p == nil then break end
  3757. wait(0.002)
  3758. end
  3759. for i,v in pairs(CParts) do
  3760. v:Destroy()
  3761. end
  3762. CParts = {}
  3763. end)
  3764. for i = 1, 20 do
  3765. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  3766. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  3767. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  3768. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3769. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3770. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3771. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  3772. if Debounces.on == false then break end
  3773. rs:wait(2)
  3774. end
  3775. if Debounces.CanAttack == false then
  3776. Debounces.CanAttack = true
  3777. Debounces.on = false
  3778. Debounces.NoIdl = false
  3779. end
  3780. end
  3781. end
  3782. end)
  3783. ----------------------------------------------------
  3784. mouse.KeyDown:connect(function(key)
  3785. if key == "e" then
  3786. larm.BrickColor = BrickColor.new("Bright red")
  3787. rarm.BrickColor = BrickColor.new("Bright red")
  3788. if Debounces.CanAttack == true then
  3789. Debounces.CanAttack = false
  3790. Debounces.on = true
  3791. Debounces.NoIdl = true
  3792. for i = 1, 18 do
  3793. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  3794. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  3795. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3796. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3797. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3798. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3799. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3800. if Debounces.on == false then break end
  3801. rs:wait(4)
  3802. end
  3803. local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  3804. local rng = Instance.new("Part", char.Absolution.Handle)
  3805. rng.Anchored = true
  3806. rng.BrickColor = BrickColor.new("Really black")
  3807. rng.CanCollide = true
  3808. rng.FormFactor = 3
  3809. rng.Name = "Ring"
  3810. rng.Size = Vector3.new(1, 1, 1)
  3811. rng.CanCollide = false
  3812. rng.Transparency = 0.35
  3813. rng.TopSurface = 0
  3814. rng.BottomSurface = 0
  3815. rng.CFrame = HandCF
  3816. local rngm = Instance.new("SpecialMesh", rng)
  3817. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3818. rngm.Scale = Vector3.new(1, 1, 2)
  3819. x = Instance.new("Sound", hed)
  3820. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3821. x.Looped = false
  3822. x.Pitch = .7
  3823. x.Volume = 1
  3824. x1 = Instance.new("Sound", hed)
  3825. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3826. x1.Looped = false
  3827. x1.Pitch = .7
  3828. x1.Volume = 1
  3829. x:Play()
  3830. x1:Play()
  3831. rngto = rng.Touched:connect(function(ht)
  3832. hit = ht.Parent
  3833. if ht and hit:IsA("Model") then
  3834. if hit:FindFirstChild("Humanoid") then
  3835. if hit.Name ~= p.Name then
  3836. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3837. Debounces.Slashed = true]]--
  3838. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3839. hit:FindFirstChild("Humanoid").PlatformStand = true
  3840. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3841. --Debounces.Slashed = false
  3842. --end
  3843. end
  3844. end
  3845. elseif ht and hit:IsA("Hat") then
  3846. if hit.Parent.Name ~= p.Name then
  3847. if hit.Parent:FindFirstChild("Humanoid") then
  3848. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3849. Debounces.Slashed = true]]--
  3850. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3851. hit:FindFirstChild("Humanoid").PlatformStand = true
  3852. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3853. --Debounces.Slashed = false
  3854. end
  3855. end
  3856. end
  3857. end)
  3858. coroutine.wrap(function()
  3859. for i = 1, 60, 2 do
  3860. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3861. rng.Size = rngm.Scale
  3862. rng.CFrame = HandCF
  3863. rng.Transparency = i/60
  3864. wait()
  3865. end
  3866. wait()
  3867. rng:Destroy()
  3868. end)()
  3869. for i = 1, 18 do
  3870. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  3871. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  3872. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3873. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3874. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3875. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3876. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3877. if Debounces.on == false then break end
  3878. rs:wait(2.4)
  3879. end
  3880. larm.BrickColor = BrickColor.new("Really black")
  3881. rarm.BrickColor = BrickColor.new("Really black")
  3882. x:Destroy()
  3883. x1:Destroy()
  3884. if Debounces.CanAttack == false then
  3885. Debounces.CanAttack = true
  3886. Debounces.on = false
  3887. Debounces.NoIdl = false
  3888. end
  3889. end
  3890. end
  3891. end)
  3892. ----------------------------------------------------
  3893. mouse.KeyDown:connect(function(key)
  3894. if key == "y" then
  3895. if Debounces.CanAttack == true then
  3896. Debounces.CanAttack = false
  3897. Debounces.on = true
  3898. Debounces.NoIdl = true
  3899. for i = 1, 15 do
  3900. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  3901. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-89)), 0.6)
  3902. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3903. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3904. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3905. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3906. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3907. if Debounces.on == false then break end
  3908. rs:wait(2.7)
  3909. end
  3910. x = Instance.new("Sound",char)
  3911. x.SoundId = "rbxassetid://228343271"
  3912. x.Pitch = 1
  3913. x.Volume = .8
  3914. wait(.1)
  3915. x:Play()
  3916. Debounces.on = false
  3917. Debounces.Here = false
  3918. shot = shot + 1
  3919. local rng = Instance.new("Part", char)
  3920. rng.Anchored = true
  3921. rng.BrickColor = BrickColor.new("Bright blue")
  3922. rng.CanCollide = false
  3923. rng.FormFactor = 3
  3924. rng.Name = "Ring"
  3925. rng.Size = Vector3.new(1, 1, 1)
  3926. rng.Transparency = 0.35
  3927. rng.TopSurface = 0
  3928. rng.BottomSurface = 0
  3929. rng2 = rng:clone()
  3930. rng3 = rng2:clone()
  3931. rng4 = rng2:clone()
  3932. local rngm = Instance.new("SpecialMesh", rng)
  3933. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3934. rngm.Scale = Vector3.new(10, 10, 1)
  3935. rngm2 = rngm:clone()
  3936. rngm2.Scale = Vector3.new(5, 5, 3)
  3937. rngm3=rngm2:clone()
  3938. rngm3.Parent = rng3
  3939. rngm3.Scale = Vector3.new(8, 8, 1)
  3940. rngm4 = rngm2:clone()
  3941. rngm4.Parent = rng4
  3942. rngm4.Scale = Vector3.new(6, 6, 1)
  3943. local bem = Instance.new("Part", char)
  3944. bem.Anchored = true
  3945. bem.BrickColor = BrickColor.new("Really black")
  3946. bem.CanCollide = false
  3947. bem.FormFactor = 3
  3948. bem.Name = "Beam" .. shot
  3949. bem.Size = Vector3.new(1, 1, 1)
  3950. bem.Transparency = 0.35
  3951. bem.TopSurface = 0
  3952. bem.BottomSurface = 0
  3953. local bemm = Instance.new("SpecialMesh", bem)
  3954. bemm.MeshType = 4
  3955. bemm.Scale = Vector3.new(1, 4, 4)
  3956. local out = Instance.new("Part", char)
  3957. out.Anchored = true
  3958. out.BrickColor = BrickColor.new("Really black")
  3959. out.CanCollide = false
  3960. out.FormFactor = 3
  3961. out.Name = "Out"
  3962. out.Size = Vector3.new(4, 4, 4)
  3963. out.Transparency = 0.35
  3964. out.TopSurface = 0
  3965. out.BottomSurface = 0
  3966. local outm = Instance.new("SpecialMesh", out)
  3967. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  3968. outm.Scale = Vector3.new(4, 4, 4)
  3969. local bnd = Instance.new("Part", char)
  3970. bnd.Anchored = true
  3971. bnd.BrickColor = BrickColor.new("Bright blue")
  3972. bnd.CanCollide = false
  3973. bnd.FormFactor = 3
  3974. bnd.Name = "Bend"
  3975. bnd.Size = Vector3.new(1, 1, 1)
  3976. bnd.Transparency = 1
  3977. bnd.TopSurface = 0
  3978. bnd.BottomSurface = 0
  3979. local bndm = Instance.new("SpecialMesh", bnd)
  3980. bndm.MeshType = 3
  3981. bndm.Scale = Vector3.new(8, 8, 8)
  3982. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3983. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  3984. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  3985. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  3986. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  3987. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  3988. Debounces.Shewt = true
  3989. coroutine.wrap(function()
  3990. for i = 1, 20, 0.2 do
  3991. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  3992. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  3993. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  3994. rng.Transparency = i/20
  3995. rng3.Transparency = 1/24
  3996. rng4.Transparency = i/26
  3997. wait()
  3998. end
  3999. wait()
  4000. rng:Destroy()
  4001. end)()
  4002. if Debounces.Shewt == true then
  4003. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4004. hit = ht.Parent
  4005. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4006. if HasntTouched(hit.Name) == true and deb == false then
  4007. deb = true
  4008. coroutine.wrap(function()
  4009. hit:FindFirstChild("Humanoid").PlatformStand = true
  4010. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4011. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  4012. end)()
  4013. table.insert(Touche, hit.Name)
  4014. deb = false
  4015. end
  4016. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4017. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4018. deb = true
  4019. coroutine.wrap(function()
  4020. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4021. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4022. wait(1)
  4023. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4024. end)()
  4025. table.insert(Touche, hit.Parent.Name)
  4026. deb = false
  4027. for i, v in pairs(Touche) do
  4028. print(v)
  4029. end
  4030. end
  4031. end
  4032. end)
  4033. end
  4034. for i = 0, 260, 8 do
  4035. bem.Size = Vector3.new(i, 2, 2)
  4036. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4037. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4038. bnd.Size = Vector3.new(1,1,1)
  4039. bndm.Scale = Vector3.new(8,8,8)
  4040. if i % 10 == 0 then
  4041. local newRng = rng2:Clone()
  4042. newRng.Parent = char
  4043. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4044. local newRngm = rngm2:clone()
  4045. newRngm.Parent=newRng
  4046. coroutine.wrap(function()
  4047. for i = 1, 10, 0.2 do
  4048. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4049. newRng.Transparency = i/10
  4050. wait()
  4051. end
  4052. wait()
  4053. newRng:Destroy()
  4054. end)()
  4055. end
  4056. wait()
  4057. end
  4058. wait()
  4059. Debounces.Shewt = false
  4060. bem:Destroy()
  4061. out:Destroy()
  4062. bnd:Destroy()
  4063. Debounces.Ready = false
  4064. for i, v in pairs(Touche) do
  4065. table.remove(Touche, i)
  4066. end
  4067. wait()
  4068. table.insert(Touche, char.Name)
  4069. Debounces.NoIdl = false
  4070. if Debounces.CanAttack == false then
  4071. Debounces.CanAttack = true
  4072. end
  4073. end
  4074. end
  4075. end)
  4076. ----------------------------------------------------
  4077. sidz = {"231917888", "231917845", "231917806"}
  4078. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4079. mouse.KeyDown:connect(function(key)
  4080. if key == "f" then
  4081. larm.BrickColor = BrickColor.new("Bright red")
  4082. rarm.BrickColor = BrickColor.new("Bright red")
  4083. if Debounces.CanAttack == true then
  4084. Debounces.CanAttack = false
  4085. Debounces.on = true
  4086. Debounces.NoIdl = true
  4087. for i = 1, 20 do
  4088. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  4089. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  4090. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4091. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4092. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4093. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4094. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4095. if Debounces.on == false then break end
  4096. rs:wait(6)
  4097. end
  4098. z = Instance.new("Sound",char)
  4099. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4100. z.Pitch = ptz[math.random(1,#ptz)]
  4101. z.Volume = 1
  4102. z1 = Instance.new("Sound",char)
  4103. z1.SoundId = z.SoundId
  4104. z1.Pitch = z.Pitch
  4105. z1.Volume = 1
  4106. z:Play()
  4107. z1:Play()
  4108. Stomp()
  4109. for i = 1, 20 do
  4110. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  4111. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  4112. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4113. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4114. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4115. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4116. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4117. if Debounces.on == false then break end
  4118. rs:wait(2.5)
  4119. end
  4120. if Debounces.CanAttack == false then
  4121. Debounces.CanAttack = true
  4122. Debounces.on = false
  4123. Debounces.NoIdl = false
  4124. larm.BrickColor = BrickColor.new("Really black")
  4125. rarm.BrickColor = BrickColor.new("Really black")
  4126. end
  4127. end
  4128. end
  4129. end)
  4130. ----------------------------------------------------
  4131. mouse.KeyDown:connect(function(key)
  4132. if key == "g" then
  4133. larm.BrickColor = BrickColor.new("Bright red")
  4134. rarm.BrickColor = BrickColor.new("Bright red")
  4135. if Debounces.CanAttack == true then
  4136. Debounces.CanAttack = false
  4137. Debounces.on = true
  4138. Debounces.NoIdl = true
  4139. chrg = lleg.Touched:connect(function(ht)
  4140. hit = ht.Parent
  4141. if ht and hit:IsA("Model") then
  4142. if hit:FindFirstChild("Humanoid") then
  4143. if hit.Name ~= p.Name then
  4144. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4145. Debounces.Slashed = true]]--
  4146. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4147. hit:FindFirstChild("Humanoid").PlatformStand = true
  4148. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4149. --Debounces.Slashed = false
  4150. --end
  4151. end
  4152. end
  4153. elseif ht and hit:IsA("Hat") then
  4154. if hit.Parent.Name ~= p.Name then
  4155. if hit.Parent:FindFirstChild("Humanoid") then
  4156. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4157. Debounces.Slashed = true]]--
  4158. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4159. hit:FindFirstChild("Humanoid").PlatformStand = true
  4160. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4161. --Debounces.Slashed = false
  4162. end
  4163. end
  4164. end
  4165. end)
  4166. for i = 1, 14 do
  4167. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  4168. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.2)
  4169. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.2)
  4170. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.2)
  4171. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  4172. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  4173. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  4174. if Debounces.on == false then break end
  4175. rs:wait(3)
  4176. end
  4177. charge()
  4178. z = Instance.new("Sound",char)
  4179. z.SoundId = "rbxassetid://200632875"
  4180. z.Volume = 1
  4181. z.Pitch = .8
  4182. z1 = Instance.new("Sound",char)
  4183. z1.SoundId = "rbxassetid://200632875"
  4184. z1.Volume = 1
  4185. z1.Pitch = .9
  4186. z:Play()
  4187. z1:Play()
  4188. wait(1)
  4189. z:Destroy()
  4190. z1:Destroy()
  4191. chrg:disconnect()
  4192. if Debounces.CanAttack == false then
  4193. Debounces.CanAttack = true
  4194. Debounces.on = false
  4195. Debounces.NoIdl = false
  4196. larm.BrickColor = BrickColor.new("Really black")
  4197. rarm.BrickColor = BrickColor.new("Really black")
  4198. end
  4199. end
  4200. end
  4201. end)
  4202. ----------------------------------------------------
  4203. pt = {0.7, 0.8, 0.9}
  4204. mouse.KeyDown:connect(function(key)
  4205. if key == "h" then
  4206. if Debounces.CanJoke == true then
  4207. Debounces.CanJoke = false
  4208. u = Instance.new("Sound")
  4209. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4210. u.Parent = char
  4211. u.Looped = false
  4212. u.Pitch = pt[math.random(1,#pt)]
  4213. u.Volume = 1
  4214. u2 = Instance.new("Sound")
  4215. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4216. u2.Parent = char
  4217. u2.Looped = false
  4218. u2.Pitch = u.Pitch
  4219. u2.Volume = 1
  4220. wait(.01)
  4221. u:Play()
  4222. u2:Play()
  4223. wait(6)
  4224. u:Destroy()
  4225. u2:Destroy()
  4226. if Debounces.CanJoke == false then
  4227. Debounces.CanJoke = true
  4228. end
  4229. end
  4230. end
  4231. end)
  4232. ----------------------------------------------------
  4233. mouse.KeyDown:connect(function(key)
  4234. if key == "j" then
  4235. if Debounces.CanJoke == true then
  4236. Debounces.CanJoke = false
  4237. z = Instance.new("Sound",char)
  4238. z.SoundId = "rbxassetid://135017755"
  4239. z.Pitch = .76
  4240. z.Volume = 1
  4241. wait()
  4242. z:Play()
  4243. wait(6)
  4244. z:Destroy()
  4245. if Debounces.CanJoke == false then
  4246. Debounces.CanJoke = true
  4247. end
  4248. end
  4249. end
  4250. end)
  4251. ----------------------------------------------------
  4252. mouse.KeyDown:connect(function(key)
  4253. if key == "k" then
  4254. if Debounces.CanJoke == true then
  4255. Debounces.CanJoke = false
  4256. z = Instance.new("Sound",char)
  4257. z.SoundId = "rbxassetid://135017578"
  4258. z.Pitch = .76
  4259. z.Volume = 1
  4260. wait()
  4261. z:Play()
  4262. wait(4)
  4263. z:Destroy()
  4264. if Debounces.CanJoke == false then
  4265. Debounces.CanJoke = true
  4266. end
  4267. end
  4268. end
  4269. end)
  4270. ----------------------------------------------------
  4271. mouse.KeyDown:connect(function(key)
  4272. if key == "x" then
  4273. if Debounces.CanAttack == true then
  4274. Debounces.CanAttack = false
  4275. Debounces.NoIdl = true
  4276. Debounces.on = true
  4277. Debounces.ks = true
  4278. for i = 1, 10 do
  4279. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  4280. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.2)
  4281. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4282. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4283. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  4284. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.2)
  4285. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4286. if Debounces.on == false then break end
  4287. rs:wait(1)
  4288. end
  4289. z = Instance.new("Sound",hed)
  4290. z.SoundId = "rbxassetid://169445092"
  4291. z.Volume = 1
  4292. wait(0.1)
  4293. z:Play()
  4294. kik = rleg.Touched:connect(function(ht)
  4295. hit = ht.Parent
  4296. if ht and hit:IsA("Model") then
  4297. if hit:FindFirstChild("Humanoid") then
  4298. if hit.Name ~= p.Name then
  4299. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4300. Debounces.Slashed = true]]--
  4301. if Debounces.ks==true then
  4302. z = Instance.new("Sound",hed)
  4303. z.SoundId = "rbxassetid://169380525"
  4304. z.Volume = 1
  4305. z:Play()
  4306. Debounces.ks=false
  4307. end
  4308. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4309. hit:FindFirstChild("Humanoid").PlatformStand = true
  4310. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4311. --Debounces.Slashed = false
  4312. --end
  4313. end
  4314. end
  4315. elseif ht and hit:IsA("Hat") then
  4316. if hit.Parent.Name ~= p.Name then
  4317. if hit.Parent:FindFirstChild("Humanoid") then
  4318. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4319. Debounces.Slashed = true]]--
  4320. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4321. hit:FindFirstChild("Humanoid").PlatformStand = true
  4322. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4323. --Debounces.Slashed = false
  4324. --end
  4325. end
  4326. end
  4327. end
  4328. end)
  4329. for i = 1, 8 do
  4330. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.3)
  4331. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.3)
  4332. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4333. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4334. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.3)
  4335. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.3)
  4336. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4337. if Debounces.on == false then break end
  4338. rs:wait(.7)
  4339. end
  4340. kik:disconnect()
  4341. if Debounces.CanAttack == false then
  4342. Debounces.CanAttack = true
  4343. Debounces.on = false
  4344. Debounces.NoIdl = false
  4345. end
  4346. end
  4347. end
  4348. end)
  4349. ----------------------------------------------------
  4350. mouse.KeyDown:connect(function(key)
  4351. if key == "c" then
  4352. if Debounces.CanAttack == true then
  4353. Debounces.CanAttack = false
  4354. Debounces.NoIdl = true
  4355. Debounces.on = true
  4356. SIDZ = {"231917744", "231917742"}
  4357. PTZ = {0.7, 0.8, 0.9, 1}
  4358. for i = 1, 20 do
  4359. wait()
  4360. for i,v in pairs(char.Absolution:children()) do
  4361. if v:IsA("Part") or v:IsA("WedgePart") then
  4362. v.Transparency = v.Transparency + 0.05
  4363. end
  4364. end
  4365. end
  4366. function FindNearestTorso(Position,Distance,SinglePlayer)
  4367. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4368. local List = {}
  4369. for i,v in pairs(workspace:GetChildren())do
  4370. if v:IsA("Model")then
  4371. if v:findFirstChild("Torso")then
  4372. if v ~= char then
  4373. if(v.Torso.Position -Position).magnitude <= Distance then
  4374. table.insert(List,v)
  4375. end
  4376. end
  4377. end
  4378. end
  4379. end
  4380. return List
  4381. end
  4382. GroundPound()
  4383. for i = 1, 11 do
  4384. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4385. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4386. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4387. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4388. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4389. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4390. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4391. if Debounces.on == false then break end
  4392. rs:wait(1.4)
  4393. end
  4394. GroundPound()
  4395. for i = 1, 11 do
  4396. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4397. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4398. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4399. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4400. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4401. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4402. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4403. if Debounces.on == false then break end
  4404. rs:wait(1.4)
  4405. end
  4406. GroundPound()
  4407. for i = 1, 11 do
  4408. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4409. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4410. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4411. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4412. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4413. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4414. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4415. if Debounces.on == false then break end
  4416. rs:wait(1.4)
  4417. end
  4418. GroundPound()
  4419. for i = 1, 11 do
  4420. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4421. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4422. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4423. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4424. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4425. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4426. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4427. if Debounces.on == false then break end
  4428. rs:wait(1.4)
  4429. end
  4430. GroundPound()
  4431. for i = 1, 11 do
  4432. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4433. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4434. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4435. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4436. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4437. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4438. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4439. if Debounces.on == false then break end
  4440. rs:wait(1.4)
  4441. end
  4442. GroundPound()
  4443. for i = 1, 11 do
  4444. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4445. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4446. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4447. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4448. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4449. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4450. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4451. if Debounces.on == false then break end
  4452. rs:wait(1.4)
  4453. end
  4454. for i = 1, 24 do
  4455. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.2)
  4456. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.2)
  4457. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4458. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4459. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4460. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4461. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4462. if Debounces.on == false then break end
  4463. rs:wait(3)
  4464. end
  4465. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4466. if v:FindFirstChild('Humanoid') then
  4467. v.Humanoid:TakeDamage(math.random(20,60))
  4468. v.Humanoid.PlatformStand = true
  4469. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4470. end
  4471. end
  4472. x = Instance.new("Sound",char)
  4473. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4474. x.Pitch = PTZ[math.random(1,#PTZ)]
  4475. x.Volume = 1
  4476. wait(0.1)
  4477. x:Play()
  4478. Crater(hed,20)
  4479. for i = 1, 20 do
  4480. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  4481. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  4482. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4483. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4484. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  4485. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  4486. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4487. if Debounces.on == false then break end
  4488. rs:wait(2)
  4489. end
  4490. if Debounces.CanAttack == false then
  4491. Debounces.CanAttack = true
  4492. Debounces.on = false
  4493. Debounces.NoIdl = false
  4494. for i = 1, 20 do
  4495. wait()
  4496. for i,v in pairs(char.Absolution:children()) do
  4497. if v:IsA("Part") or v:IsA("WedgePart") then
  4498. v.Transparency = v.Transparency - 0.05
  4499. end
  4500. end
  4501. end
  4502. end
  4503. end
  4504. end
  4505. end)
  4506. ----------------------------------------------------176349813
  4507. mouse.KeyDown:connect(function(key)
  4508. if key == "b" then
  4509. hum.WalkSpeed = 0.01
  4510. if Debounces.CanAttack == true then
  4511. Debounces.CanAttack = false
  4512. Debounces.NoIdl = true
  4513. Debounces.on = true
  4514. for i = 1, 30 do
  4515. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  4516. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  4517. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4518. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4519. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4520. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4521. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4522. if Debounces.on == false then break end
  4523. rs:wait(6)
  4524. end
  4525. v = Instance.new("Sound")
  4526. v.SoundId = "rbxassetid://181384451"
  4527. v.Parent = char
  4528. v.Looped = false
  4529. v.Pitch = .94
  4530. v.Volume = 1
  4531. wait(.01)
  4532. v:Play()
  4533.  
  4534. if Daytime == true then
  4535. Daytime = false
  4536. l.TimeOfDay = 24
  4537. else
  4538. Daytime = true
  4539. l.TimeOfDay = 12
  4540. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4541. end
  4542.  
  4543. local Shockwave = function()
  4544. local rng1 = Instance.new("Part", char)
  4545. rng1.Anchored = true
  4546. rng1.BrickColor = BrickColor.new("Really black")
  4547. rng1.CanCollide = false
  4548. rng1.FormFactor = 3
  4549. rng1.Name = "Ring"
  4550. rng1.Size = Vector3.new(1, 1, 1)
  4551. rng1.Transparency = 0.35
  4552. rng1.TopSurface = 0
  4553. rng1.BottomSurface = 0
  4554. local rngm1 = Instance.new("SpecialMesh", rng)
  4555. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4556. rngm1.Scale = Vector3.new(10, 10, 1)
  4557. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4558. local Wave = Instance.new("Part", game.Workspace--[[?]])
  4559. Wave.Name = "Shockwave"
  4560. Wave.BrickColor = BrickColor.new("Really black")
  4561. Wave.Size = Vector3.new(1, 1, 1)
  4562. Wave.Shape = "Ball"
  4563. Wave.CanCollide = false
  4564. Wave.Anchored = true
  4565. Wave.TopSurface = 0
  4566. Wave.BottomSurface = 0
  4567. Wave.Touched:connect(function(hit)
  4568. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4569. local Occlude = true
  4570. local NotOccludes = {
  4571. char.Name;
  4572. "Wings";
  4573. "Scythe";
  4574. "Thingy";
  4575. "Thingy2"; -- put all of the names in a table pls
  4576. }
  4577. for i,v in pairs(NotOccludes) do
  4578. if hit.Parent.Name == v then
  4579. Occlude = false
  4580. end
  4581. end
  4582. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  4583. if Occlude then
  4584. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4585. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4586. end
  4587. end
  4588. end)
  4589.  
  4590. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4591.  
  4592. coroutine.wrap(function()
  4593. for i = 1, 20, 0.2 do
  4594. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4595. rng1.Transparency = i/20
  4596. wait()
  4597. end
  4598. wait()
  4599. rng1:Destroy()
  4600. end)()
  4601.  
  4602. Delay(0, function()
  4603.  
  4604. if Daytime == false then
  4605. for i = 1, 50, 1 do
  4606. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4607. Wave.CFrame = char.Torso.CFrame
  4608. local t = i / 50
  4609. Wave.Transparency = t
  4610. wait()
  4611. end
  4612. else
  4613. for i = 1, 50, 1 do
  4614. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4615. Wave.CFrame = char.Torso.CFrame
  4616. local t = i / 50
  4617. Wave.Transparency = t
  4618. wait()
  4619. end
  4620. end
  4621. Wave:Destroy()
  4622. end)
  4623. Delay(0, function()
  4624. while wait() do
  4625. if Wave ~= nil then
  4626. Wave.CFrame = char.Torso.CFrame
  4627. else
  4628. break
  4629. end
  4630. end
  4631. end)
  4632. end
  4633. Shockwave()
  4634. for i = 1, 30 do
  4635. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
  4636. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  4637. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  4638. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  4639. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  4640. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4641. if Debounces.on == false then break end
  4642. rs:wait()
  4643. end
  4644. wait(2.4)
  4645. Debounces.NoIdl = false
  4646. hum.WalkSpeed = 5
  4647. Debounces.on = false
  4648. wait()
  4649. if Debounces.CanAttack == false then
  4650. Debounces.CanAttack = true
  4651. v:Destroy()
  4652. end
  4653. end
  4654. end
  4655. end)
  4656. ----------------------------------------------------
  4657. mouse.KeyDown:connect(function(key)
  4658. if key == "l" then
  4659. for i = 1, 20 do
  4660. wait()
  4661. for i,v in pairs(char.Absolution:children()) do
  4662. if v:IsA("Part") or v:IsA("WedgePart") then
  4663. v.Transparency = v.Transparency + 0.05
  4664. end
  4665. end
  4666. end
  4667. if Debounces.CanAttack == true then
  4668. Debounces.CanAttack = false
  4669. Debounces.NoIdl = true
  4670. Debounces.on = true
  4671. bv = Instance.new("BodyVelocity",torso)
  4672. bv.maxForce = Vector3.new(0,200000,0)
  4673. bv.P = 100000
  4674. bv.velocity = Vector3.new(0,500,0)
  4675. wait(2)
  4676. bv:Destroy()
  4677. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4678. for i = 1, 20 do
  4679. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  4680. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4681. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
  4682. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-40)), 0.3)
  4683. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4684. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4685. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4686. if Debounces.on == false then break end
  4687. wait()
  4688. end
  4689. for i = 1, 360, 20 do wait()
  4690. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4691. end
  4692. end
  4693. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4694. local ry,ht,ps=nil,nil,nil
  4695. while ht==nil do
  4696. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4697. wait()
  4698. end
  4699. z = Instance.new("Sound",char)
  4700. z.SoundId = "rbxassetid://245537790"
  4701. z.Pitch = 1
  4702. z.Volume = 1
  4703. wait(0.1)
  4704. z:Play()
  4705. local sp = Instance.new("Part", char)
  4706. sp.Name = "Energy"
  4707. sp.BrickColor = BrickColor.new("Really black")
  4708. sp.Size = Vector3.new(1, 1, 1)
  4709. sp.Shape = "Ball"
  4710. sp.CanCollide = false
  4711. sp.Anchored = true
  4712. sp.TopSurface = 0
  4713. sp.BottomSurface = 0
  4714. local spm = Instance.new("SpecialMesh",sp)
  4715. spm.MeshId = "rbxassetid://9982590"
  4716. spm.Scale = Vector3.new(3,3,3)
  4717. local sp2 = Instance.new("Part", char)
  4718. sp2.Name = "Energy2"
  4719. sp2.BrickColor = BrickColor.new("Really black")
  4720. sp2.Size = Vector3.new(1, 1, 1)
  4721. sp2.Shape = "Ball"
  4722. sp2.CanCollide = false
  4723. sp2.Anchored = true
  4724. sp2.TopSurface = 0
  4725. sp2.BottomSurface = 0
  4726. local spm2 = Instance.new("SpecialMesh",sp2)
  4727. spm2.MeshId = "rbxassetid://9982590"
  4728. spm2.Scale = Vector3.new(3,3,3)
  4729. sp.Touched:connect(function(hit)
  4730. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4731. local Occlude = true
  4732. local NotOccludes = {
  4733. char.Name;
  4734. "Wings";
  4735. "Scythe";
  4736. "Thingy";
  4737. "Thingy2"; -- put all of the names in a table pls
  4738. }
  4739. for i,v in pairs(NotOccludes) do
  4740. if hit.Parent.Name == v then
  4741. Occlude = false
  4742. end
  4743. end
  4744. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  4745. if Occlude then
  4746. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4747. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4748. end
  4749. end
  4750. end)
  4751. sp2.Touched:connect(function(hit)
  4752. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4753. local Occlude = true
  4754. local NotOccludes = {
  4755. char.Name;
  4756. "Wings";
  4757. "Scythe";
  4758. "Thingy";
  4759. "Thingy2"; -- put all of the names in a table pls
  4760. }
  4761. for i,v in pairs(NotOccludes) do
  4762. if hit.Parent.Name == v then
  4763. Occlude = false
  4764. end
  4765. end
  4766. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  4767. if Occlude then
  4768. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4769. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4770. end
  4771. end
  4772. end)
  4773. for i = 1, 100, 1 do
  4774. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4775. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4776. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4777. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4778. spm.Scale = sp.Size
  4779. spm2.Scale = sp2.Size
  4780. local t = i / 100
  4781. sp.Transparency = t
  4782. sp2.Transparency = t
  4783. wait()
  4784. end
  4785. sp:Destroy()
  4786. sp2:Destroy()
  4787. z:Destroy()
  4788. for i = 1, 20 do
  4789. wait()
  4790. for i,v in pairs(char.Absolution:children()) do
  4791. if v:IsA("Part") or v:IsA("WedgePart") then
  4792. v.Transparency = v.Transparency - 0.05
  4793. end
  4794. end
  4795. end
  4796. if Debounces.CanAttack == false then
  4797. Debounces.CanAttack = true
  4798. Debounces.NoIdl = false
  4799. Debounces.on = false
  4800. end
  4801. end
  4802. end
  4803. end)
  4804. ----------------------------------------------------
  4805. local orbt={}
  4806. local stlt={}
  4807. local chot={}
  4808. local cfxt={}
  4809. local pfxt={}
  4810. local cns=0
  4811. local cnOrb=nil
  4812. mouse.KeyDown:connect(function(key)
  4813. if key == "u" then
  4814. if Debounces.CanAttack == true then
  4815. Debounces.CanAttack = false
  4816. Debounces.NoIdl = true
  4817. Debounces.on = true
  4818. orbt={}
  4819. stlt={}
  4820. chot={}
  4821. cfxt={}
  4822. for i = 1, 20 do
  4823. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(30)), 0.2)
  4824. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(170),math.rad(-20),math.rad(-30)), 0.2)
  4825. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  4826. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4827. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0.4) * CFrame.Angles(math.rad(-20), math.rad(20), math.rad(-10)), 0.2)
  4828. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, -0.4) * CFrame.Angles(math.rad(20), math.rad(-10), math.rad(10)), 0.2)
  4829. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4830. if Debounces.on == false then end
  4831. rs:wait()
  4832. end
  4833. z = Instance.new("Sound",char)
  4834. z.SoundId = "rbxassetid://170053944"
  4835. z.Pitch = 1.07
  4836. z.Volume = 1
  4837. wait(0.1)
  4838. z:Play()
  4839. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  4840. debris:AddItem(cnOrb,50)
  4841. cnOrb.Mesh.MeshType=3
  4842. table.insert(orbt,cnOrb)
  4843. table.insert(stlt,cnOrb)
  4844. local nt=0
  4845. for i=0,5,0.02 do
  4846. nt=nt+1
  4847. cns=i
  4848. if nt>=2 then
  4849. nt=0
  4850. local cho=nwPrt(mod3,Vector3.new(2,2,2),cnOrb.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")
  4851. debris:AddItem(cho,1)
  4852. cho.Mesh.MeshType=3
  4853. table.insert(chot,cho)
  4854. end
  4855. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4856. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  4857. wait()
  4858. end
  4859. for i = 1, 14 do
  4860. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  4861. if Debounces.on == false then end
  4862. rs:wait()
  4863. end
  4864. coroutine.wrap(function()
  4865. for i = 1, 20 do
  4866. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.45)
  4867. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.8,-.3)*CFrame.Angles(math.rad(70),math.rad(20),math.rad(50)), 0.6)
  4868. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  4869. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  4870. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, -0.4) * CFrame.Angles(math.rad(60), math.rad(20), math.rad(-10)), 0.5)
  4871. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0.4) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.5)
  4872. if Debounces.on == false then end
  4873. rs:wait()
  4874. end
  4875. end)()
  4876. wait(0.1)
  4877. stlt={}
  4878. local ry,ht,ps=newRay(root.CFrame*CFrame.new(0,0,-4),root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)*CFrame.new(0,0,-2),160,{char})
  4879. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4880. local nt=0
  4881. for i=0,160,3 do
  4882. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4883. nt=nt+1
  4884. if nt>=6 then
  4885. nt=0
  4886. local cfx=nwPrt(mod3,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Really black")
  4887. cfx.Mesh.MeshId="rbxassetid://20329976"
  4888. cfx.Transparency=0.4
  4889. table.insert(cfxt,cfx)
  4890. debris:AddItem(cfx,1)
  4891. end
  4892. if (cnOrb.Position-ps).magnitude<6 then
  4893. break
  4894. end
  4895. wait()
  4896. end
  4897. orbt={}
  4898.  
  4899. for i=0,1,0.1 do
  4900. local cs=cnOrb.Mesh.Scale
  4901. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
  4902. wait()
  4903. end
  4904. local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4905. ofx.Transparency=0.5
  4906. ofx.Mesh.MeshType=3
  4907. ofx.Mesh.Scale=Vector3.new(30,30,30)
  4908. for _,v in pairs(game:service"Players":GetChildren()) do
  4909. pcall(function()
  4910. for _,c in pairs(v.Character:GetChildren()) do
  4911. if v~=p and c:IsA("Part") and (cnOrb.CFrame.p-c.CFrame.p).magnitude<60 and (cnOrb.CFrame.p-c.CFrame.p).magnitude>15 then
  4912. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  4913. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  4914. end
  4915. end
  4916. end)
  4917. end
  4918. for i=0,1,0.05 do
  4919. local cs=cnOrb.Mesh.Scale
  4920. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  4921. local ofs=ofx.Mesh.Scale
  4922. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  4923. ofx.Transparency=Tween(ofx.Transparency,1,i)
  4924. wait()
  4925. end
  4926. ofx:Destroy()
  4927. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  4928. local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4929. cnfx.Mesh.MeshType=3
  4930. cnOrb.Transparency=0.05
  4931. local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4932. cnr.Mesh.MeshType=3
  4933. local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
  4934. rn1.Transparency=1
  4935. rn1.Mesh.MeshId="rbxassetid://3270017"
  4936. local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4937. rn2.Transparency=1
  4938. rn2.Mesh.MeshId="rbxassetid://3270017"
  4939. local nt=0
  4940. local cs=nil
  4941. for i=0,1,0.05 do
  4942. cs=cnOrb.Mesh.Scale
  4943. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  4944. local fs=cnfx.Mesh.Scale
  4945. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  4946. cnfx.Transparency=cnfx.Transparency+0.05
  4947. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4948. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4949. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4950. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4951. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  4952. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  4953. local rs=cnr.Mesh.Scale
  4954. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  4955. nt=nt+1
  4956. if nt>=6 then
  4957. local pls={}
  4958. for _,v in pairs(game.Players:GetChildren()) do
  4959. table.insert(pls,v)
  4960. end
  4961. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  4962. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  4963. pffx.Mesh.MeshId="rbxassetid://20329976"
  4964. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  4965. debris:AddItem(pffx,2)
  4966. table.insert(pfxt,pffx)
  4967. nt=0
  4968. end
  4969. wait()
  4970. end
  4971. local int=0
  4972. coroutine.wrap(function()
  4973. for i=1,500 do
  4974. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4975. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4976. nt=nt+1
  4977. int=int+1
  4978. local htd={p}
  4979. for _,v in pairs(game:service"Players":GetChildren()) do
  4980. pcall(function()
  4981. for _,c in pairs(v.Character:GetChildren()) do
  4982. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4983. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  4984. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  4985. table.insert(htd,v)
  4986. end
  4987. end
  4988. end)
  4989. end
  4990. htd={p}
  4991. if int>=6 then
  4992. for _,v in pairs(game:service"Players":GetChildren()) do
  4993. pcall(function()
  4994. for _,c in pairs(v.Character:GetChildren()) do
  4995. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4996. table.insert(htd,v)
  4997. local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Really black")
  4998. hfx.Mesh.Scale=Vector3.new(2,2,2)
  4999. hfx.Mesh.MeshType=3
  5000. debris:AddItem(hfx,2)
  5001. coroutine.wrap(function()
  5002. pcall(function()
  5003. for i=0,1,0.05 do
  5004. pcall(function()
  5005. local hs=hfx.Mesh.Scale
  5006. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5007. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5008. end)
  5009. wait()
  5010. end
  5011. hfx:Destroy()
  5012. end)
  5013. end)()
  5014. end
  5015. end
  5016. end)
  5017. end
  5018. int=0
  5019. end
  5020. if nt>=4 then
  5021. local pls={}
  5022. for _,v in pairs(game.Players:GetChildren()) do
  5023. table.insert(pls,v)
  5024. end
  5025. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5026. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5027. pffx.Transparency=0.4
  5028. pffx.Mesh.MeshId="rbxassetid://20329976"
  5029. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5030. debris:AddItem(pffx,2)
  5031. table.insert(pfxt,pffx)
  5032. nt=0
  5033. end
  5034. wait()
  5035. end
  5036. cnOrb:Destroy()
  5037. cnfx:Destroy()
  5038. for _,v in pairs(mod3:GetChildren()) do
  5039. v:Destroy()
  5040. end
  5041. orbt={}
  5042. stlt={}
  5043. chot={}
  5044. cfxt={}
  5045. pfxt={}
  5046. end)()
  5047. if Debounces.CanAttack == false then
  5048. Debounces.CanAttack = true
  5049. Debounces.NoIdl = false
  5050. Debounces.on = false
  5051. end
  5052. end
  5053. end
  5054. end)
  5055. ----------------------------------------------------
  5056. mouse.KeyDown:connect(function(key)
  5057. if key == "m" then
  5058. if Debounces.CanAttack == true then
  5059. Debounces.CanAttack = false
  5060. Debounces.on = true
  5061. Debounces.NoIdl = true
  5062. --[[x = Instance.new("Sound",char)
  5063. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5064. x.Looped = false
  5065. x.Pitch = 1.1
  5066. x.Volume = 1
  5067. x:Play()
  5068. x2 = Instance.new("Sound",char)
  5069. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5070. x2.Looped = false
  5071. x2.Pitch = .7
  5072. x2.Volume = 1
  5073. wait(.1)
  5074. x:Play()
  5075. x2:Play()
  5076. for i = 1, 20 do
  5077. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  5078. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  5079. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  5080. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  5081. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  5082. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  5083. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  5084. if Debounces.on == false then break end
  5085. wait()
  5086. x:Destroy()
  5087. x2:Destroy()
  5088. end
  5089. wait(1)]]--
  5090. local rng = Instance.new("Part", char)
  5091. rng.Anchored = true
  5092. rng.BrickColor = BrickColor.new("Really black")
  5093. rng.CanCollide = false
  5094. rng.FormFactor = 3
  5095. rng.Name = "Ring"
  5096. rng.Size = Vector3.new(1, 1, 1)
  5097. rng.Transparency = 0.35
  5098. rng.TopSurface = 0
  5099. rng.BottomSurface = 0
  5100. rng.Position = torso.Position - Vector3.new(0,5,0)
  5101. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5102. local rngm = Instance.new("SpecialMesh", rng)
  5103. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5104. rngm.Scale = Vector3.new(1, 1, 2)
  5105. x = Instance.new("Sound",char)
  5106. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5107. x.Looped = false
  5108. x.Pitch = .7
  5109. x.Volume = 1
  5110. x:Play()
  5111. coroutine.wrap(function()
  5112. for i = 1, 60, 2 do
  5113. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5114. rng.Transparency = i/60
  5115. wait()
  5116. end
  5117. wait()
  5118. rng:Destroy()
  5119. end)()
  5120. hum.WalkSpeed = 100
  5121. BV = Instance.new("BodyVelocity", torso)
  5122. BV.maxForce = Vector3.new(0,200000,0)
  5123. BV.P = 240000
  5124. BV.velocity = Vector3.new(0,700,0)
  5125. for i = 1, 20 do
  5126. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  5127. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  5128. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  5129. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  5130. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5131. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5132. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5133. if Debounces.on == false then break end
  5134. wait()
  5135. end
  5136. x:Destroy()
  5137. BV:Destroy()
  5138. --[[for i = 1, 30 do
  5139. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  5140. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  5141. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  5142. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  5143. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5144. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  5145. if Debounces.on == false then break end
  5146. wait()
  5147. end]]--
  5148. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5149. for i = 1, 30 do
  5150. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  5151. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  5152. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-120)), 0.3)
  5153. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(120)), 0.3)
  5154. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  5155. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  5156. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5157. if Debounces.on == false then break end
  5158. wait()
  5159. end
  5160. end
  5161. Debounces.on = false
  5162. Debounces.NoIdl = false
  5163. local ry,ht,ps=nil,nil,nil
  5164. while ht==nil do
  5165. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5166. wait()
  5167. end
  5168. z = Instance.new("Sound",char)
  5169. z.SoundId = "rbxassetid://142070127"
  5170. z.Volume = 1
  5171. wait(.1)
  5172. z:Play()
  5173. Landing()
  5174. hum.WalkSpeed = 8
  5175. if Debounces.CanAttack == false then
  5176. Debounces.CanAttack = true
  5177. end
  5178. end
  5179. end
  5180. end)
  5181. ----------------------------------------------------
  5182. Grab = false
  5183. mouse.KeyDown:connect(function(key)
  5184. if key == "z" then
  5185. Debounces.on = true
  5186. Debounces.NoIdl = true
  5187. if Grab == false then
  5188. gp = nil
  5189. con1=larm.Touched:connect(function(hit) -- this is grab
  5190. ht = hit.Parent
  5191. hum1=ht:FindFirstChild('Humanoid')
  5192. if hum1 ~= nil then
  5193. hum1.PlatformStand=true
  5194. gp = ht
  5195. Grab = true
  5196. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5197. asd.Parent = larm
  5198. asd.Name = "asd"
  5199. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5200. con1:disconnect()
  5201. elseif hum1 ~= nil then
  5202. con1:disconnect()
  5203. wait() return
  5204. end
  5205. end)
  5206. for i = 1, 18 do
  5207. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  5208. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  5209. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5210. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5211. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  5212. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  5213. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  5214. if Debounces.on == false then break end
  5215. wait()
  5216. end
  5217. con1:disconnect()
  5218. Debounces.on = false
  5219. Debounces.NoIdl = false
  5220. elseif Grab == true then
  5221. Grab = false
  5222. for i = 1, 20 do
  5223. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  5224. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  5225. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5226. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5227. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5228. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5229. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5230. if Debounces.on == false then end
  5231. wait()
  5232. end
  5233. if gp ~= nil then
  5234. for i,v in pairs(larm:GetChildren()) do
  5235. if v.Name == "asd" and v:IsA("Weld") then
  5236. v:Remove()
  5237. end
  5238. end
  5239. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  5240. bv.maxForce = Vector3.new(400000, 400000, 400000)
  5241. bv.P = 125000
  5242. bv.velocity = char.Head.CFrame.lookVector * 200
  5243. for i = 1, 12 do
  5244. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  5245. if Debounces.on == false then end
  5246. wait()
  5247. end--
  5248. ht=nil
  5249. Spawn(function()
  5250. wait(0.5)
  5251. bv:Destroy()
  5252. end)
  5253. Debounces.on = false
  5254. Debounces.NoIdl = false
  5255. elseif ht == nil then wait()
  5256. Grab = false
  5257. Debounces.on = false
  5258. Debounces.NoIdl = false
  5259. end
  5260. end
  5261. end
  5262. end)
  5263. ----------------------------------------------------
  5264. mouse.KeyDown:connect(function(key)
  5265. if string.byte(key) == 52 then
  5266. char.Humanoid.WalkSpeed = 21
  5267. end
  5268. end)
  5269. mouse.KeyUp:connect(function(key)
  5270. if string.byte(key) == 52 then
  5271. char.Humanoid.WalkSpeed = 5
  5272. end
  5273. end)
  5274. ----------------------------------------------------
  5275. Change = false
  5276. mouse.KeyDown:connect(function(key)
  5277. if key == "n" then
  5278. if Change == false then
  5279. Change = true
  5280. stanceToggle = "Normal2"
  5281. elseif Change == true then
  5282. Change = false
  5283. stanceToggle = "Normal"
  5284. end
  5285. end
  5286. end)
  5287. ----------------------------------------------------
  5288. local animpose = "Idle"
  5289. local lastanimpose = "Idle"
  5290. local sine = 0
  5291. local change = 1
  5292. local val = 0
  5293. local ffing = false
  5294. local och = 0
  5295. ----------------------------------------------------
  5296. game:GetService("RunService").RenderStepped:connect(function()
  5297. --[[if char.Humanoid.Jump == true then
  5298. jump = true
  5299. else
  5300. jump = false
  5301. end]]
  5302. char.Humanoid.FreeFalling:connect(function(f)
  5303. if f then
  5304. ffing = true
  5305. else
  5306. ffing = false
  5307. end
  5308. end)
  5309. sine = sine + change
  5310. if jumpn == true then
  5311. animpose = "Jumping"
  5312. elseif ffing == true then
  5313. animpose = "Freefalling"
  5314. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5315. animpose = "Idle"
  5316. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5317. animpose = "Walking"
  5318. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5319. animpose = "Running"
  5320. end
  5321. if animpose ~= lastanimpose then
  5322. sine = 0
  5323. if Debounces.NoIdl == false then
  5324. if animpose == "Idle" then
  5325. for i = 1, 2 do
  5326. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  5327. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  5328. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5329. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5330. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5331. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5332. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5333. end
  5334. elseif animpose == "Walking" then
  5335. for i = 1, 2 do
  5336. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2)
  5337. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5338. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  5339. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5340. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5341. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5342. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5343. end
  5344. elseif animpose == "Running" then
  5345. for i = 1, 2 do
  5346. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  5347. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  5348. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  5349. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  5350. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  5351. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  5352. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5353. end
  5354. rs:wait(2)
  5355. end
  5356. else
  5357. end
  5358. end
  5359. lastanimpose = animpose
  5360. if Debounces.NoIdl == false then
  5361. if animpose == "Idle" then
  5362. if stanceToggle == "Normal" then
  5363. change = 0.5
  5364. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  5365. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5366. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  5367. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5368. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  5369. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  5370. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5371. elseif stanceToggle == "Sitting" then
  5372. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  5373. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(math.rad(-36+1*math.cos(sine/14)), math.rad(0), math.rad(-30)), 0.2)
  5374. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  5375. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.8, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  5376. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  5377. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  5378. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5379. elseif stanceToggle == "Normal2" then
  5380. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(30+2*math.cos(sine/14)),math.rad(40),math.rad(40)), 0.2)
  5381. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5382. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(-40),0), 0.2)
  5383. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5384. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(-20), math.rad(-14)), 0.2)
  5385. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(10), math.rad(-30), math.rad(18)), 0.2)
  5386. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5387. end
  5388. elseif animpose == "Walking" then
  5389. if stanceToggle == "Normal" then
  5390. change = 1
  5391. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  5392. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  5393. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0-8*math.cos(sine/14)), math.rad(0)),0.2)
  5394. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), math.rad(0+8*math.cos(sine/14)), math.rad(0)), 0.2)
  5395. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + -math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5396. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5397. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5398. elseif stanceToggle == "Normal2" then
  5399. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), math.sin(sine/14)/2)*CFrame.Angles(-math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(20)), 0.2)
  5400. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(-20)), 0.2)
  5401. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  5402. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  5403. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  5404. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  5405. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5406. end
  5407. elseif animpose == "Running" then
  5408. change = 1
  5409. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  5410. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  5411. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  5412. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  5413. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  5414. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  5415. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5416. end
  5417. end
  5418. och=och+1
  5419. for _,v in pairs(orbt) do
  5420. pcall(function()
  5421. v.Mesh.Scale=Vector3.new(cns+(0.2*math.cos(och/12)),cns+(0.2*math.cos(och/10)),cns+(0.2*math.cos(och/8)))
  5422. end)
  5423. end
  5424. for _,v in pairs(stlt) do
  5425. pcall(function()
  5426. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5427. end)
  5428. end
  5429. for _,v in pairs(chot) do
  5430. pcall(function()
  5431. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5432. 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))
  5433. end)
  5434. end
  5435. for _,v in pairs(cfxt) do
  5436. pcall(function()
  5437. local vs=v.Mesh.Scale
  5438. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5439. v.Transparency=v.Transparency+0.05
  5440. end)
  5441. end
  5442. for _,v in pairs(pfxt) do
  5443. pcall(function()
  5444. local vs=v.Mesh.Scale
  5445. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5446. v.Transparency=v.Transparency+0.025
  5447. end)
  5448. end
  5449. end)
  5450. -
  5451. plr = game.Players.LocalPlayer
  5452. mouse = plr:GetMouse()
  5453. part = nil
  5454. bp = nil
  5455. particles = nil
  5456. function clerp(a,b,c,d)
  5457. for i = 0,d,.01 do
  5458. a.CFrame = CFrame.new(b:lerp(c,i))
  5459. wait()
  5460. end
  5461. end
  5462. function slerp(a2,b2,c2,d2)
  5463. for i2 = 0,d2,.01 do
  5464. a2.CFrame = CFrame.new(b2:lerp(c2,i2))
  5465. wait()
  5466. end
  5467. end
  5468. mouse.KeyDown:connect(function(key)
  5469. if key == "e" and plr.Character.Parent == workspace then
  5470. plr.Character.Parent = workspace.Camera
  5471. plr.Character.Archivable = true
  5472. Instance.new("ForceField",plr.Character).Visible = false
  5473. for y,t in pairs(plr.Character:GetChildren()) do
  5474. if t:IsA("Part") and t.Name ~= "HumanoidRootPart" then
  5475. t.Transparency = 1
  5476. if t.Name == "Head" and t:FindFirstChild("face") then
  5477. t.face.Transparency = 1
  5478. end
  5479. elseif t:IsA("Accessory") and t:FindFirstChild("Handle") then
  5480. t.Handle.Transparency = 1
  5481. end
  5482. end
  5483. elseif key == "z" and plr.Character.Parent == workspace.Camera and part == nil then
  5484. plr.Character.Torso.CFrame = CFrame.new(Vector3.new(mouse.hit.p.X,mouse.hit.p.Y+1.5,mouse.hit.p.Z),plr.Character.Torso.CFrame.p)
  5485. elseif key == "x" and plr.Character.Parent == workspace.Camera and part == nil then
  5486. if plr.Character.Torso.Anchored == true then
  5487. for y,t in pairs(plr.Character:GetChildren()) do
  5488. if t:IsA("Part") then
  5489. t.Anchored = false
  5490. end
  5491. end
  5492. else
  5493. for y,t in pairs(plr.Character:GetChildren()) do
  5494. if t:IsA("Part") then
  5495. t.Anchored = true
  5496. end
  5497. end
  5498. end
  5499. elseif key == "c" and plr.Character.Parent == workspace.Camera and part ~= nil then
  5500. local clone = part:Clone()
  5501. clone.Parent = workspace
  5502. clone.Anchored = false
  5503. clone:ClearAllChildren()
  5504. clone.CanCollide = true
  5505. bp.Parent = clone
  5506. particles.Parent = clone
  5507. if part.Parent:FindFirstChildOfClass("Humanoid") then
  5508. part.Parent:FindFirstChildOfClass("Humanoid").PlatformStand = false
  5509. end
  5510. part:Destroy()
  5511. part = clone
  5512. elseif key == "t" and plr.Character.Parent == workspace.Camera and part == nil then
  5513. plr.Character.Parent = workspace
  5514. plr.Character.Archivable = false
  5515. plr.Character:FindFirstChildOfClass("ForceField"):Remove()
  5516. for y,t in pairs(plr.Character:GetChildren()) do
  5517. if t:IsA("Part") and t.Name ~= "HumanoidRootPart" then
  5518. t.Transparency = 0
  5519. if t.Name == "Head" and t:FindFirstChild("face") then
  5520. t.face.Transparency = 0
  5521. end
  5522. elseif t:IsA("Accessory") and t:FindFirstChild("Handle") then
  5523. t.Handle.Transparency = 0
  5524. end
  5525. end
  5526. end
  5527. end)
  5528. mouse.Button1Down:connect(function()
  5529. if plr.Character.Parent == workspace.Camera then
  5530. if mouse ~= nil then
  5531. if mouse.Target ~= nil then
  5532. part = mouse.Target
  5533. bp = Instance.new("BodyPosition",part)
  5534. bp.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  5535. bp.Position = part.Position
  5536. particles = Instance.new("ParticleEmitter",part)
  5537. particles.Color = ColorSequence.new(Color3.new(0,0,0))
  5538. particles.Size = NumberSequence.new(1)
  5539. particles.Texture = "rbxassetid://292289455"
  5540. particles.VelocitySpread = 360
  5541. particles.Speed = NumberRange.new(0)
  5542. particles.RotSpeed = NumberRange.new(0)
  5543. particles.Rotation = NumberRange.new(0)
  5544. particles.Rate = 250
  5545. particles.Lifetime = NumberRange.new(.2,.4)
  5546. particles.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,1,0),NumberSequenceKeypoint.new(.12,.688,0),NumberSequenceKeypoint.new(.891,.887,0),NumberSequenceKeypoint.new(1,1,0)})
  5547. dwn = true
  5548. end
  5549. end
  5550. while dwn == true do
  5551. wait()
  5552. bp.Position = mouse.hit.p
  5553. if part then
  5554. if part.Parent:FindFirstChildOfClass("Humanoid") then
  5555. part.Parent:FindFirstChildOfClass("Humanoid").PlatformStand = true
  5556. end
  5557. end
  5558. end
  5559. end
  5560. end)
  5561. mouse.Button1Up:connect(function()
  5562. dwn = false
  5563. if part then if part.Parent:FindFirstChildOfClass("Humanoid") then part.Parent:FindFirstChildOfClass("Humanoid").PlatformStand = false end part = nil end
  5564. if bp then bp:Destroy() end
  5565. if particles then particles:Destroy() end
  5566. end)
  5567. base = Instance.new("ScreenGui",plr.PlayerGui)
  5568. bbg = Instance.new("BillboardGui",plr.Character.Head)
  5569. bbg.Size = UDim2.new(0,200,0,50)
  5570. bbg.StudsOffset = Vector3.new(0,3,0)
  5571. bbgTl = Instance.new("TextLabel",bbg)
  5572. bbgTl.BackgroundTransparency = 1
  5573. bbgTl.Size = UDim2.new(10,0,1,0)
  5574. bbgTl.Position = UDim2.new(-4.5,0,0,0)
  5575. bbgTl.Font = "Code"
  5576. bbgTl.Text = " "
  5577. bbgTl.TextSize = 25
  5578. bbgTl.TextStrokeColor3 = Color3.new(1,1,1)
  5579. bbgTl.TextColor3 = Color3.new(0,0,0)
  5580. bbgTl.TextStrokeTransparency = 0
  5581. bbgTl.TextWrapped = true
  5582. plr.Chatted:connect(function(msg)
  5583. bbgTl.Text = msg
  5584. wait(5)
  5585. if bbgTl.Text == msg then
  5586. bbgTl.Text = " "
  5587. end
  5588. end)
  5589. touchCounter = 0
  5590. while wait() do
  5591. if plr.Character.Parent == workspace.Camera then
  5592. local c = plr.Character:Clone()
  5593. c:MakeJoints()
  5594. for y,t in pairs(c:GetChildren()) do
  5595. if t:IsA("Part") then
  5596. t.CanCollide = false
  5597. t.Anchored = true
  5598. t.Transparency = .5
  5599. t.TopSurface = "Smooth"
  5600. t.BottomSurface = "Smooth"
  5601. t.RightSurface = "Smooth"
  5602. t.LeftSurface = "Smooth"
  5603. t.FrontSurface = "Smooth"
  5604. t.BackSurface = "Smooth"
  5605. t.BrickColor = BrickColor.new("Really black")
  5606. if t.Name == "Head" and t:FindFirstChild("face") then
  5607. t.face:Remove()
  5608. elseif t.Name == "Torso" and t:FindFirstChild("roblox") then
  5609. t.roblox:Remove()
  5610. elseif t.Name == "HumanoidRootPart" then
  5611. t:Remove()
  5612. end
  5613. else
  5614. t:Remove()
  5615. end
  5616. end
  5617. c.Parent = workspace
  5618. game.Debris:AddItem(c,.05)
  5619. end
  5620. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement