Advertisement
KlojoSS

Black Titan [R15 - Edited by Bram1507]

Apr 26th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 283.69 KB | None | 0 0
  1.             --[[User: TheDarkRevenant
  2.             Script: Absalom (Armored).lua
  3.             Pass: cUpnjTnT
  4.             Edit: Bram1507]]
  5. wait()
  6.  
  7. local p = game.Players.LocalPlayer
  8. local char = p.Character
  9. local mouse = p:GetMouse()
  10. local larm = char["LeftLowerArm"]
  11. local rarm = char["RightLowerArm"]
  12. local lleg = char["LeftLowerLeg"]
  13. local rleg = char["RightLowerLeg"]
  14. local hed = char.Head
  15. local torso = char.UpperTorso
  16. local hum = char.Humanoid
  17. local cam = game.Workspace.CurrentCamera
  18. local root = char.HumanoidRootPart
  19. local deb = false
  20. local shot = 0
  21. local l = game:GetService("Lighting")
  22. local rs = game:GetService("RunService").RenderStepped
  23. local debris=game:service"Debris"
  24. local stanceToggle = "Normal"
  25. math.randomseed(os.time())
  26. hum.WalkSpeed = 9
  27. char.Health:Destroy()
  28. hum.MaxHealth = 5000
  29. wait()
  30. hum.Health = 5000
  31. ----------------------------------------------------
  32. hum.HipHeight = 4
  33. ----------------------------------------------------
  34. ypcall(function()
  35. char.Shirt:Destroy()
  36. char.Pants:Destroy()
  37. shirt = Instance.new("Shirt", char)
  38. shirt.Name = "Shirt"
  39. pants = Instance.new("Pants", char)
  40. pants.Name = "Pants"
  41. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  42. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  43. end)
  44. ----------------------------------------------------
  45. Debounces = {
  46. on = false;
  47. ks = false;
  48. CanAttack = true;
  49. CanJoke = true;
  50. NoIdl = false;
  51. Slashing = false;
  52. Slashed = false;
  53. Grabbing = false;
  54. Grabbed = false;
  55. }
  56. local Touche = {char.Name, }
  57. ----------------------------------------------------
  58. function lerp(a, b, t) -- Linear interpolation
  59.     return a + (b - a)*t
  60. end
  61.  
  62. function slerp(a, b, t) --Spherical interpolation
  63.     dot = a:Dot(b)
  64.     if dot > 0.99999 or dot < -0.99999 then
  65.         return t <= 0.5 and a or b
  66.     else
  67.         r = math.acos(dot)
  68.         return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  69.     end
  70. end
  71.  
  72. function matrixInterpolate(a, b, t)
  73.     local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  74.     local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  75.     local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  76.     local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
  77.     local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
  78.     local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
  79.     local t = v1:Dot(v2)
  80.     if not (t < 0 or t == 0 or t > 0) then     -- Failsafe
  81.         return CFrame.new()
  82.     end
  83.     return CFrame.new(
  84.     v0.x, v0.y, v0.z,
  85.     v1.x, v1.y, v1.z,
  86.     v2.x, v2.y, v2.z,
  87.     v3.x, v3.y, v3.z)
  88. end
  89. ----------------------------------------------------
  90. function genWeld(a,b)
  91.     local w = Instance.new("Weld",a)
  92.     w.Part0 = a
  93.     w.Part1 = b
  94.     return w
  95. end
  96. function weld(a, b)
  97.     local weld = Instance.new("Weld")
  98.     weld.Name = "W"
  99.     weld.Part0 = a
  100.     weld.Part1 = b
  101.     weld.C0 = a.CFrame:inverse() * b.CFrame
  102.     weld.Parent = a
  103.     return weld;
  104. end
  105. ----------------------------------------------------
  106. function Lerp(c1,c2,al)
  107. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  108. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  109. for i,v in pairs(com1) do
  110. com1[i] = v+(com2[i]-v)*al
  111. end
  112. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  113. end
  114. ----------------------------------------------------
  115. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  116. local wld = Instance.new("Weld", wp1)
  117. wld.Part0 = wp0
  118. wld.Part1 = wp1
  119. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  120. end
  121. ----------------------------------------------------
  122. function Tween(a,b,c)
  123. return a+(b-a)*c
  124. end
  125. ----------------------------------------------------
  126. function nwPrt(prnt,siz,cf,col)
  127. local prt=Instance.new("Part")
  128. prt.Parent=prnt
  129. prt.FormFactor=3
  130. prt.Name="Part"
  131. prt.Size=siz
  132. prt.CanCollide=false
  133. prt.Anchored=true
  134. prt.Locked=true
  135. prt.TopSurface=10
  136. prt.BottomSurface=10
  137. prt.FrontSurface=10
  138. prt.BackSurface=10
  139. prt.LeftSurface=10
  140. prt.RightSurface=10
  141. prt:BreakJoints()
  142. prt.CFrame=cf or CFrame.new(30,10,30)
  143. prt.Material="Neon"
  144. prt.BrickColor=BrickColor.new(col)
  145. m=Instance.new("SpecialMesh",prt)
  146. m.MeshType=6
  147. return prt
  148. end
  149. ----------------------------------------------------
  150. function nwSnd(prnt,pch,vol,id)
  151.         local s=Instance.new("Sound",prnt)
  152.         s.Pitch=pch
  153.         s.Volume=vol
  154.         s.SoundId="rbxassetid://"..id
  155.         s.PlayOnRemove=true
  156.         return s
  157. end
  158. ----------------------------------------------------
  159. function newRay(start,face,range,wat)
  160.         local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  161.         hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  162.         return rey,hit,pos
  163. end
  164. ----------------------------------------------------
  165. for i,v in pairs(char:children()) do
  166.     if v:IsA("Hat") then
  167.         v:Destroy()
  168.     end
  169. end
  170. for i,v in pairs(hed:children()) do
  171.     if v:IsA("Sound") then
  172.         v:Destroy()
  173.     end
  174. end
  175. ----------------------------------------------------
  176. function HasntTouched(plrname)
  177. local ret = true
  178. for _, v in pairs(Touche) do
  179. if v == plrname then
  180. ret = false
  181. end
  182. end
  183. return ret
  184. end
  185. ----------------------------------------------------
  186. larm.Size = larm.Size * 2
  187. rarm.Size = rarm.Size * 2
  188. lleg.Size = lleg.Size * 2
  189. rleg.Size = rleg.Size * 2
  190. torso.Size = torso.Size * 2
  191. hed.Size = hed.Size * 2
  192. root.Size = root.Size * 2
  193. local hedreal = Instance.new("SpecialMesh",hed)
  194. hedreal.MeshType = "Head"
  195. ----------------------------------------------------
  196. newWeld(torso, larm, -1.5, 0.5, 0)
  197. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  198. newWeld(torso, rarm, 1.5, 0.5, 0)
  199. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  200. newWeld(torso, hed, 0, 1.5, 0)
  201. newWeld(torso, lleg, -0.5, -1, 0)
  202. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  203. newWeld(torso, rleg, 0.5, -1, 0)
  204. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  205. newWeld(root, torso, 0, -1, 0)
  206. torso.Weld.C1 = CFrame.new(0, -1, 0)
  207. ----------------------------------------------------
  208. hed.face.Texture = "rbxassetid://272299908"
  209. z=Instance.new('Decal',hed)
  210. z.Face = 'Front'
  211. z.Texture='rbxassetid://99174105'
  212. z1=Instance.new('Decal',hed)
  213. z1.Face = 'Right'
  214. hed.BrickColor = BrickColor.new("Really black")
  215. lite = Instance.new("PointLight", torso)
  216. lite.Brightness = 14
  217. lite.Range = 10
  218. lite.Color = Color3.new(1, 0, 0)
  219. ----------------------------------------------------
  220. z = Instance.new("Sound", char)
  221. z.SoundId = "rbxassetid://303570180"--242463565
  222. z.Looped = true
  223. z.Pitch = .6
  224. z.Volume = 0.2
  225. wait(.01)
  226. z:Play()
  227. ----------------------------------------------------
  228. local l = game.Lighting
  229. local sky = Instance.new("Sky",l)
  230. sky.CelestialBodiesShown = false
  231. sky.SkyboxBk = "http://www.roblox.com/asset/?id=156925041"
  232. sky.SkyboxDn = "http://www.roblox.com/asset/?id=156925047"
  233. sky.SkyboxFt = "http://www.roblox.com/asset/?id=156925045"
  234. sky.SkyboxLf = "http://www.roblox.com/asset/?id=156925043"
  235. sky.SkyboxRt = "http://www.roblox.com/asset/?id=156925038"
  236. sky.SkyboxUp = "http://www.roblox.com/asset/?id=156925055"
  237. sky.StarCount = 0
  238. sky.Name = "GreenSpace"
  239. ----------------------------------------------------
  240. local m = Instance.new("Model")
  241. m.Name = "Absolution"
  242. p1 = Instance.new("Part", m)
  243. p1.BrickColor = BrickColor.new("Bright blue")
  244. p1.Material = "Neon"
  245. p1.FormFactor = Enum.FormFactor.Custom
  246. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  247. 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)
  248. p1.CanCollide = false
  249. p1.Locked = true
  250. p1.Elasticity = 0
  251. p1.BottomSurface = Enum.SurfaceType.Smooth
  252. p1.TopSurface = Enum.SurfaceType.Smooth
  253. b1 = Instance.new("SpecialMesh", p1)
  254. b1.MeshType = Enum.MeshType.Wedge
  255. b1.Name = "Mesh"
  256. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  257. p2 = Instance.new("Part", m)
  258. p2.BrickColor = BrickColor.new("Really black")
  259. p2.FormFactor = Enum.FormFactor.Custom
  260. p2.Size = Vector3.new(1, 2.9000001, 1)
  261. 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)
  262. p2.CanCollide = false
  263. p2.Locked = true
  264. p2.Elasticity = 0
  265. p2.BottomSurface = Enum.SurfaceType.Smooth
  266. p2.TopSurface = Enum.SurfaceType.Smooth
  267. b2 = Instance.new("BlockMesh", p2)
  268. b2.Name = "Mesh"
  269. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  270. p3 = Instance.new("Part", m)
  271. p3.BrickColor = BrickColor.new("Bright blue")
  272. p3.Material = "Neon"
  273. p3.FormFactor = Enum.FormFactor.Custom
  274. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  275. 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)
  276. p3.CanCollide = false
  277. p3.Locked = true
  278. p3.Elasticity = 0
  279. p3.BottomSurface = Enum.SurfaceType.Smooth
  280. p3.TopSurface = Enum.SurfaceType.Smooth
  281. b3 = Instance.new("SpecialMesh", p3)
  282. b3.MeshType = Enum.MeshType.Wedge
  283. b3.Name = "Mesh"
  284. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  285. p4 = Instance.new("Part", m)
  286. p4.BrickColor = BrickColor.new("Bright blue")
  287. p4.Material = "Neon"
  288. p4.FormFactor = Enum.FormFactor.Custom
  289. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  290. 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)
  291. p4.CanCollide = false
  292. p4.Locked = true
  293. p4.Elasticity = 0
  294. p4.BottomSurface = Enum.SurfaceType.Smooth
  295. p4.TopSurface = Enum.SurfaceType.Smooth
  296. b4 = Instance.new("SpecialMesh", p4)
  297. b4.MeshType = Enum.MeshType.Wedge
  298. b4.Name = "Mesh"
  299. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  300. p5 = Instance.new("Part", m)
  301. p5.BrickColor = BrickColor.new("Bright blue")
  302. p5.Material = "Neon"
  303. p5.FormFactor = Enum.FormFactor.Custom
  304. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  305. 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)
  306. p5.CanCollide = false
  307. p5.Locked = true
  308. p5.Elasticity = 0
  309. p5.BottomSurface = Enum.SurfaceType.Smooth
  310. p5.TopSurface = Enum.SurfaceType.Smooth
  311. b5 = Instance.new("SpecialMesh", p5)
  312. b5.MeshType = Enum.MeshType.Wedge
  313. b5.Name = "Mesh"
  314. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  315. p6 = Instance.new("Part", m)
  316. p6.Name = "Handle"
  317. p6.BrickColor = BrickColor.new("Really black")
  318. p6.FormFactor = Enum.FormFactor.Custom
  319. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  320. 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)
  321. p6.CanCollide = false
  322. p6.Locked = true
  323. p6.Elasticity = 0
  324. p6.BottomSurface = Enum.SurfaceType.Smooth
  325. p6.TopSurface = Enum.SurfaceType.Smooth
  326. b6 = Instance.new("BlockMesh", p6)
  327. b6.Name = "Mesh"
  328. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  329. p7 = Instance.new("Part", m)
  330. p7.BrickColor = BrickColor.new("Bright blue")
  331. p7.Material = "Neon"
  332. p7.FormFactor = Enum.FormFactor.Custom
  333. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  334. 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)
  335. p7.CanCollide = false
  336. p7.Locked = true
  337. p7.Elasticity = 0
  338. p7.BottomSurface = Enum.SurfaceType.Smooth
  339. p7.TopSurface = Enum.SurfaceType.Smooth
  340. b7 = Instance.new("SpecialMesh", p7)
  341. b7.MeshType = Enum.MeshType.Wedge
  342. b7.Name = "Mesh"
  343. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  344. p8 = Instance.new("Part", m)
  345. p8.BrickColor = BrickColor.new("Bright blue")
  346. p8.Material = "Neon"
  347. p8.FormFactor = Enum.FormFactor.Custom
  348. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  349. 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)
  350. p8.CanCollide = false
  351. p8.Locked = true
  352. p8.Elasticity = 0
  353. p8.BottomSurface = Enum.SurfaceType.Smooth
  354. p8.TopSurface = Enum.SurfaceType.Smooth
  355. b8 = Instance.new("SpecialMesh", p8)
  356. b8.MeshType = Enum.MeshType.Wedge
  357. b8.Name = "Mesh"
  358. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  359. p9 = Instance.new("Part", m)
  360. p9.BrickColor = BrickColor.new("Really black")
  361. p9.FormFactor = Enum.FormFactor.Custom
  362. p9.Size = Vector3.new(1, 1.07999957, 1)
  363. 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)
  364. p9.CanCollide = false
  365. p9.Locked = true
  366. p9.Elasticity = 0
  367. p9.BottomSurface = Enum.SurfaceType.Smooth
  368. p9.TopSurface = Enum.SurfaceType.Smooth
  369. b9 = Instance.new("BlockMesh", p9)
  370. b9.Name = "Mesh"
  371. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  372. p10 = Instance.new("Part", m)
  373. p10.BrickColor = BrickColor.new("Really black")
  374. p10.FormFactor = Enum.FormFactor.Custom
  375. p10.Size = Vector3.new(1, 1.41999948, 1)
  376. 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)
  377. p10.CanCollide = false
  378. p10.Locked = true
  379. p10.Elasticity = 0
  380. p10.BottomSurface = Enum.SurfaceType.Smooth
  381. p10.TopSurface = Enum.SurfaceType.Smooth
  382. b10 = Instance.new("BlockMesh", p10)
  383. b10.Name = "Mesh"
  384. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  385. p11 = Instance.new("Part", m)
  386. p11.BrickColor = BrickColor.new("Really black")
  387. p11.FormFactor = Enum.FormFactor.Custom
  388. p11.Size = Vector3.new(1, 1.50999951, 1)
  389. 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)
  390. p11.CanCollide = false
  391. p11.Locked = true
  392. p11.Elasticity = 0
  393. p11.BottomSurface = Enum.SurfaceType.Smooth
  394. p11.TopSurface = Enum.SurfaceType.Smooth
  395. b11 = Instance.new("BlockMesh", p11)
  396. b11.Name = "Mesh"
  397. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  398. p12 = Instance.new("Part", m)
  399. p12.Name = "BladeCenter"
  400. p12.BrickColor = BrickColor.new("Dark stone grey")
  401. p12.Material = Enum.Material.Concrete
  402. p12.FormFactor = Enum.FormFactor.Symmetric
  403. p12.Size = Vector3.new(1, 2, 2)
  404. 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)
  405. p12.CanCollide = false
  406. p12.Locked = true
  407. p12.BottomSurface = Enum.SurfaceType.Smooth
  408. p12.TopSurface = Enum.SurfaceType.Smooth
  409. p12.Touched:connect(function(hit)
  410. end)
  411. b12 = Instance.new("SpecialMesh", p12)
  412. b12.MeshType = Enum.MeshType.Brick
  413. b12.Name = "Mesh"
  414. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  415. p13 = Instance.new("Part", m)
  416. p13.BrickColor = BrickColor.new("Really black")
  417. p13.FormFactor = Enum.FormFactor.Custom
  418. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  419. 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)
  420. p13.CanCollide = false
  421. p13.Locked = true
  422. p13.Elasticity = 0
  423. p13.BottomSurface = Enum.SurfaceType.Smooth
  424. p13.TopSurface = Enum.SurfaceType.Smooth
  425. b13 = Instance.new("BlockMesh", p13)
  426. b13.Name = "Mesh"
  427. b13.Scale = Vector3.new(1, 1, 0.400000006)
  428. p14 = Instance.new("Part", m)
  429. p14.BrickColor = BrickColor.new("Really black")
  430. p14.FormFactor = Enum.FormFactor.Custom
  431. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  432. 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)
  433. p14.CanCollide = false
  434. p14.Locked = true
  435. p14.Elasticity = 0
  436. p14.BottomSurface = Enum.SurfaceType.Smooth
  437. p14.TopSurface = Enum.SurfaceType.Smooth
  438. b14 = Instance.new("BlockMesh", p14)
  439. b14.Name = "Mesh"
  440. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  441. p15 = Instance.new("Part", m)
  442. p15.BrickColor = BrickColor.new("Really black")
  443. p15.FormFactor = Enum.FormFactor.Custom
  444. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  445. 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)
  446. p15.CanCollide = false
  447. p15.Locked = true
  448. p15.Elasticity = 0
  449. p15.BottomSurface = Enum.SurfaceType.Smooth
  450. p15.TopSurface = Enum.SurfaceType.Smooth
  451. b15 = Instance.new("BlockMesh", p15)
  452. b15.Name = "Mesh"
  453. b15.Scale = Vector3.new(1, 1, 0.400000006)
  454. p16 = Instance.new("Part", m)
  455. p16.BrickColor = BrickColor.new("Really black")
  456. p16.FormFactor = Enum.FormFactor.Custom
  457. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  458. 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)
  459. p16.CanCollide = false
  460. p16.Locked = true
  461. p16.Elasticity = 0
  462. p16.BottomSurface = Enum.SurfaceType.Smooth
  463. p16.TopSurface = Enum.SurfaceType.Smooth
  464. b16 = Instance.new("BlockMesh", p16)
  465. b16.Name = "Mesh"
  466. b16.Scale = Vector3.new(1, 1, 0.400000006)
  467. p17 = Instance.new("Part", m)
  468. p17.BrickColor = BrickColor.new("Really black")
  469. p17.FormFactor = Enum.FormFactor.Custom
  470. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  471. 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)
  472. p17.CanCollide = false
  473. p17.Locked = true
  474. p17.Elasticity = 0
  475. p17.BottomSurface = Enum.SurfaceType.Smooth
  476. p17.TopSurface = Enum.SurfaceType.Smooth
  477. b17 = Instance.new("BlockMesh", p17)
  478. b17.Name = "Mesh"
  479. b17.Scale = Vector3.new(1, 1, 0.400000006)
  480. p18 = Instance.new("WedgePart", m)
  481. p18.BrickColor = BrickColor.new("Dark stone grey")
  482. p18.Name = "BladePart1"
  483. p18.Material = Enum.Material.Concrete
  484. p18.Name = "Wedge"
  485. p18.FormFactor = Enum.FormFactor.Symmetric
  486. p18.Size = Vector3.new(1, 4, 2)
  487. 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)
  488. p18.CanCollide = false
  489. p18.Locked = true
  490. p18.BottomSurface = Enum.SurfaceType.Smooth
  491. p18.TopSurface = Enum.SurfaceType.Smooth
  492. p18.Touched:connect(function(hit)
  493. end)
  494. b18 = Instance.new("SpecialMesh", p18)
  495. b18.MeshType = Enum.MeshType.Wedge
  496. b18.Name = "Mesh"
  497. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  498. p19 = Instance.new("WedgePart", m)
  499. p19.BrickColor = BrickColor.new("Dark stone grey")
  500. p19.Name = "BladePart2"
  501. p19.Material = Enum.Material.Concrete
  502. p19.Name = "Wedge"
  503. p19.FormFactor = Enum.FormFactor.Symmetric
  504. p19.Size = Vector3.new(1, 4, 2)
  505. 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)
  506. p19.CanCollide = false
  507. p19.Locked = true
  508. p19.BottomSurface = Enum.SurfaceType.Smooth
  509. p19.TopSurface = Enum.SurfaceType.Smooth
  510. p19.Touched:connect(function(hit)
  511. end)
  512. b19 = Instance.new("SpecialMesh", p19)
  513. b19.MeshType = Enum.MeshType.Wedge
  514. b19.Name = "Mesh"
  515. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  516. p20 = Instance.new("Part", m)
  517. p20.BrickColor = BrickColor.new("Really black")
  518. p20.FormFactor = Enum.FormFactor.Custom
  519. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  520. 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)
  521. p20.CanCollide = false
  522. p20.Locked = true
  523. p20.Elasticity = 0
  524. p20.BottomSurface = Enum.SurfaceType.Smooth
  525. p20.TopSurface = Enum.SurfaceType.Smooth
  526. b20 = Instance.new("BlockMesh", p20)
  527. b20.Name = "Mesh"
  528. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  529. p21 = Instance.new("Part", m)
  530. p21.BrickColor = BrickColor.new("Bright blue")
  531. p21.Material = "Neon"
  532. p21.FormFactor = Enum.FormFactor.Custom
  533. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  534. 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)
  535. p21.CanCollide = false
  536. p21.Locked = true
  537. p21.Elasticity = 0
  538. p21.BottomSurface = Enum.SurfaceType.Smooth
  539. p21.TopSurface = Enum.SurfaceType.Smooth
  540. b21 = Instance.new("SpecialMesh", p21)
  541. b21.MeshType = Enum.MeshType.Wedge
  542. b21.Name = "Mesh"
  543. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  544. w1 = Instance.new("Weld", p1)
  545. w1.Name = "Part_Weld"
  546. w1.Part0 = p1
  547. 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)
  548. w1.Part1 = p2
  549. 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)
  550. w2 = Instance.new("Weld", p2)
  551. w2.Name = "Part_Weld"
  552. w2.Part0 = p2
  553. 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)
  554. w2.Part1 = p3
  555. 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)
  556. w3 = Instance.new("Weld", p3)
  557. w3.Name = "Part_Weld"
  558. w3.Part0 = p3
  559. 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)
  560. w3.Part1 = p4
  561. 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)
  562. w4 = Instance.new("Weld", p4)
  563. w4.Name = "Part_Weld"
  564. w4.Part0 = p4
  565. 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)
  566. w4.Part1 = p5
  567. 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)
  568. w5 = Instance.new("Weld", p5)
  569. w5.Name = "Part_Weld"
  570. w5.Part0 = p5
  571. 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)
  572. w5.Part1 = p6
  573. 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)
  574. w6 = Instance.new("Weld", p6)
  575. w6.Name = "Part_Weld"
  576. w6.Part0 = p6
  577. 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)
  578. w6.Part1 = p7
  579. 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)
  580. w7 = Instance.new("Weld", p7)
  581. w7.Name = "Part_Weld"
  582. w7.Part0 = p7
  583. 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)
  584. w7.Part1 = p8
  585. 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)
  586. w8 = Instance.new("Weld", p8)
  587. w8.Name = "Part_Weld"
  588. w8.Part0 = p8
  589. 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)
  590. w8.Part1 = p9
  591. 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)
  592. w9 = Instance.new("Weld", p9)
  593. w9.Name = "Part_Weld"
  594. w9.Part0 = p9
  595. 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)
  596. w9.Part1 = p10
  597. 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)
  598. w10 = Instance.new("Weld", p10)
  599. w10.Name = "Part_Weld"
  600. w10.Part0 = p10
  601. 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)
  602. w10.Part1 = p11
  603. 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)
  604. w11 = Instance.new("Weld", p11)
  605. w11.Name = "Part_Weld"
  606. w11.Part0 = p11
  607. 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)
  608. w11.Part1 = p12
  609. 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)
  610. w12 = Instance.new("Weld", p12)
  611. w12.Name = "Part_Weld"
  612. w12.Part0 = p12
  613. 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)
  614. w12.Part1 = p13
  615. 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)
  616. w13 = Instance.new("Weld", p13)
  617. w13.Name = "Part_Weld"
  618. w13.Part0 = p13
  619. 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)
  620. w13.Part1 = p14
  621. 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)
  622. w14 = Instance.new("Weld", p14)
  623. w14.Name = "Part_Weld"
  624. w14.Part0 = p14
  625. 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)
  626. w14.Part1 = p15
  627. 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)
  628. w15 = Instance.new("Weld", p15)
  629. w15.Name = "Part_Weld"
  630. w15.Part0 = p15
  631. 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)
  632. w15.Part1 = p16
  633. 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)
  634. w16 = Instance.new("Weld", p16)
  635. w16.Name = "Part_Weld"
  636. w16.Part0 = p16
  637. 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)
  638. w16.Part1 = p17
  639. 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)
  640. w17 = Instance.new("Weld", p17)
  641. w17.Name = "Wedge_Weld"
  642. w17.Part0 = p17
  643. 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)
  644. w17.Part1 = p18
  645. 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)
  646. w18 = Instance.new("Weld", p18)
  647. w18.Name = "Wedge_Weld"
  648. w18.Part0 = p18
  649. 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)
  650. w18.Part1 = p19
  651. 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)
  652. w19 = Instance.new("Weld", p19)
  653. w19.Name = "Part_Weld"
  654. w19.Part0 = p19
  655. 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)
  656. w19.Part1 = p20
  657. 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)
  658. w20 = Instance.new("Weld", p20)
  659. w20.Name = "Part_Weld"
  660. w20.Part0 = p20
  661. 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)
  662. w20.Part1 = p21
  663. 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)
  664. m.Parent = char
  665. m:MakeJoints()
  666. ----------------------------------------------------
  667. local cor = Instance.new("Part", char.Absolution)
  668. cor.Name = "Thingy"
  669. cor.Locked = true
  670. cor.BottomSurface = 0
  671. cor.CanCollide = false
  672. cor.Size = Vector3.new(1, 13, 1)
  673. cor.Transparency = 1
  674. cor.TopSurface = 0
  675. corw = Instance.new("Weld", cor)
  676. corw.Part0 = rarm
  677. corw.Part1 = cor
  678. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  679. corw.C1 = CFrame.new(0, 0, 0)
  680. weld1 = Instance.new("Weld", char.Absolution)
  681. weld1.Part0 = cor
  682. weld1.Part1 = p6
  683. weld1.C0 = CFrame.new(0, 0, 0)
  684. ----------------------------------------------------
  685. hitb = Instance.new("Part", char.Absolution)
  686. hitb.Name = "Thingy2"
  687. hitb.Locked = true
  688. hitb.BottomSurface = 0
  689. hitb.CanCollide = false
  690. hitb.Size = Vector3.new(0, 8, 6)
  691. hitb.Transparency = 1
  692. hitb.TopSurface = 0
  693. weld2 = Instance.new("Weld", char.Absolution)
  694. weld2.Part0 = hitb
  695. weld2.Part1 = p12
  696. weld2.C0 = CFrame.new(0, .6, 1)
  697. ----------------------------------------------------
  698. local m = Instance.new("Model")
  699. m.Name = "Claw"
  700. p1 = Instance.new("Part", m)
  701. p1.BrickColor = BrickColor.new("Really black")
  702. p1.FormFactor = Enum.FormFactor.Custom
  703. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  704. 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)
  705. p1.CanCollide = false
  706. p1.Locked = true
  707. p1.BottomSurface = Enum.SurfaceType.Smooth
  708. p1.TopSurface = Enum.SurfaceType.Smooth
  709. b1 = Instance.new("BlockMesh", p1)
  710. b1.Name = "Mesh"
  711. p2 = Instance.new("WedgePart", m)
  712. p2.BrickColor = BrickColor.new("Really black")
  713. p2.Name = "Wedge"
  714. p2.FormFactor = Enum.FormFactor.Custom
  715. p2.Size = Vector3.new(3, 1, 0.5)
  716. 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)
  717. p2.CanCollide = false
  718. p2.Locked = true
  719. p2.BottomSurface = Enum.SurfaceType.Smooth
  720. p2.TopSurface = Enum.SurfaceType.Smooth
  721. p3 = Instance.new("Part", m)
  722. p3.BrickColor = BrickColor.new("Really black")
  723. p3.FormFactor = Enum.FormFactor.Custom
  724. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  725. 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)
  726. p3.CanCollide = false
  727. p3.Locked = true
  728. p3.BottomSurface = Enum.SurfaceType.Smooth
  729. p3.TopSurface = Enum.SurfaceType.Smooth
  730. b2 = Instance.new("BlockMesh", p3)
  731. b2.Name = "Mesh"
  732. p4 = Instance.new("WedgePart", m)
  733. p4.BrickColor = BrickColor.new("Really black")
  734. p4.Name = "Wedge"
  735. p4.FormFactor = Enum.FormFactor.Custom
  736. p4.Size = Vector3.new(3, 1, 0.5)
  737. 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)
  738. p4.CanCollide = false
  739. p4.Locked = true
  740. p4.BottomSurface = Enum.SurfaceType.Smooth
  741. p4.TopSurface = Enum.SurfaceType.Smooth
  742. p5 = Instance.new("Part", m)
  743. p5.BrickColor = BrickColor.new("Really black")
  744. p5.FormFactor = Enum.FormFactor.Custom
  745. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  746. 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)
  747. p5.CanCollide = false
  748. p5.Locked = true
  749. p5.BottomSurface = Enum.SurfaceType.Smooth
  750. p5.TopSurface = Enum.SurfaceType.Smooth
  751. b3 = Instance.new("BlockMesh", p5)
  752. b3.Name = "Mesh"
  753. p6 = Instance.new("Part", m)
  754. p6.BrickColor = BrickColor.new("Really black")
  755. p6.FormFactor = Enum.FormFactor.Custom
  756. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  757. 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)
  758. p6.CanCollide = false
  759. p6.Locked = true
  760. p6.BottomSurface = Enum.SurfaceType.Smooth
  761. p6.TopSurface = Enum.SurfaceType.Smooth
  762. b4 = Instance.new("BlockMesh", p6)
  763. b4.Name = "Mesh"
  764. p7 = Instance.new("Part", m)
  765. p7.BrickColor = BrickColor.new("Really black")
  766. p7.FormFactor = Enum.FormFactor.Custom
  767. p7.Size = Vector3.new(3, 1, 1.20000005)
  768. 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)
  769. p7.CanCollide = false
  770. p7.Locked = true
  771. p7.BottomSurface = Enum.SurfaceType.Smooth
  772. p7.TopSurface = Enum.SurfaceType.Smooth
  773. b5 = Instance.new("BlockMesh", p7)
  774. b5.Name = "Mesh"
  775. p8 = Instance.new("Part", m)
  776. p8.BrickColor = BrickColor.new("Bright blue")
  777. p8.Material = "Neon"
  778. p8.FormFactor = Enum.FormFactor.Symmetric
  779. p8.Size = Vector3.new(1, 1, 1)
  780. 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)
  781. p8.CanCollide = false
  782. p8.Locked = true
  783. b6 = Instance.new("SpecialMesh", p8)
  784. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  785. b6.TextureId = ""
  786. b6.MeshType = Enum.MeshType.FileMesh
  787. b6.Name = "Mesh"
  788. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  789. p9 = Instance.new("Part", m)
  790. p9.BrickColor = BrickColor.new("Really black")
  791. p9.FormFactor = Enum.FormFactor.Custom
  792. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  793. 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)
  794. p9.CanCollide = false
  795. p9.Locked = true
  796. p9.BottomSurface = Enum.SurfaceType.Smooth
  797. p9.TopSurface = Enum.SurfaceType.Smooth
  798. b7 = Instance.new("BlockMesh", p9)
  799. b7.Name = "Mesh"
  800. p10 = Instance.new("Part", m)
  801. p10.BrickColor = BrickColor.new("Bright blue")
  802. p10.Material = "Neon"
  803. p10.FormFactor = Enum.FormFactor.Symmetric
  804. p10.Size = Vector3.new(1, 1, 1)
  805. 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)
  806. p10.CanCollide = false
  807. p10.Locked = true
  808. b8 = Instance.new("SpecialMesh", p10)
  809. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  810. b8.TextureId = ""
  811. b8.MeshType = Enum.MeshType.FileMesh
  812. b8.Name = "Mesh"
  813. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  814. p11 = Instance.new("Part", m)
  815. p11.BrickColor = BrickColor.new("Really black")
  816. p11.FormFactor = Enum.FormFactor.Custom
  817. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  818. 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)
  819. p11.CanCollide = false
  820. p11.Locked = true
  821. p11.BottomSurface = Enum.SurfaceType.Smooth
  822. p11.TopSurface = Enum.SurfaceType.Smooth
  823. b9 = Instance.new("BlockMesh", p11)
  824. b9.Name = "Mesh"
  825. p12 = Instance.new("Part", m)
  826. p12.BrickColor = BrickColor.new("Really black")
  827. p12.FormFactor = Enum.FormFactor.Custom
  828. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  829. 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)
  830. p12.CanCollide = false
  831. p12.Locked = true
  832. p12.BottomSurface = Enum.SurfaceType.Smooth
  833. p12.TopSurface = Enum.SurfaceType.Smooth
  834. b10 = Instance.new("BlockMesh", p12)
  835. b10.Name = "Mesh"
  836. p13 = Instance.new("Part", m)
  837. p13.BrickColor = BrickColor.new("Really black")
  838. p13.FormFactor = Enum.FormFactor.Custom
  839. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  840. 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)
  841. p13.CanCollide = false
  842. p13.Locked = true
  843. p13.BottomSurface = Enum.SurfaceType.Smooth
  844. p13.TopSurface = Enum.SurfaceType.Smooth
  845. b11 = Instance.new("BlockMesh", p13)
  846. b11.Name = "Mesh"
  847. p14 = Instance.new("Part", m)
  848. p14.BrickColor = BrickColor.new("Bright blue")
  849. p14.Material = "Neon"
  850. p14.FormFactor = Enum.FormFactor.Symmetric
  851. p14.Size = Vector3.new(1, 1, 1)
  852. 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)
  853. p14.CanCollide = false
  854. p14.Locked = true
  855. b12 = Instance.new("SpecialMesh", p14)
  856. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  857. b12.TextureId = ""
  858. b12.MeshType = Enum.MeshType.FileMesh
  859. b12.Name = "Mesh"
  860. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  861. p15 = Instance.new("Part", m)
  862. p15.BrickColor = BrickColor.new("Medium stone grey")
  863. p15.Transparency = 1
  864. p15.Name = "ArmPart"
  865. p15.FormFactor = Enum.FormFactor.Custom
  866. p15.Size = Vector3.new(2, 1, 1)
  867. 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)
  868. p15.CanCollide = false
  869. p15.Locked = true
  870. p15.BottomSurface = Enum.SurfaceType.Smooth
  871. p15.TopSurface = Enum.SurfaceType.Smooth
  872. b13 = Instance.new("BlockMesh", p15)
  873. b13.Name = "Mesh"
  874. p16 = Instance.new("Part", m)
  875. p16.BrickColor = BrickColor.new("Really black")
  876. p16.FormFactor = Enum.FormFactor.Custom
  877. p16.Size = Vector3.new(3, 1, 2.4000001)
  878. 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)
  879. p16.CanCollide = false
  880. p16.Locked = true
  881. p16.BottomSurface = Enum.SurfaceType.Smooth
  882. p16.TopSurface = Enum.SurfaceType.Smooth
  883. b14 = Instance.new("BlockMesh", p16)
  884. b14.Name = "Mesh"
  885. p17 = Instance.new("Part", m)
  886. p17.BrickColor = BrickColor.new("Really black")
  887. p17.FormFactor = Enum.FormFactor.Custom
  888. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  889. 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)
  890. p17.CanCollide = false
  891. p17.Locked = true
  892. p17.BottomSurface = Enum.SurfaceType.Smooth
  893. p17.TopSurface = Enum.SurfaceType.Smooth
  894. b15 = Instance.new("BlockMesh", p17)
  895. b15.Name = "Mesh"
  896. p18 = Instance.new("Part", m)
  897. p18.BrickColor = BrickColor.new("Bright blue")
  898. p18.Material = "Neon"
  899. p18.FormFactor = Enum.FormFactor.Symmetric
  900. p18.Size = Vector3.new(1, 1, 1)
  901. 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)
  902. p18.CanCollide = false
  903. p18.Locked = true
  904. b16 = Instance.new("SpecialMesh", p18)
  905. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  906. b16.TextureId = ""
  907. b16.MeshType = Enum.MeshType.FileMesh
  908. b16.Name = "Mesh"
  909. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  910. p19 = Instance.new("Part", m)
  911. p19.BrickColor = BrickColor.new("Bright blue")
  912. p19.Material = "Neon"
  913. p19.FormFactor = Enum.FormFactor.Symmetric
  914. p19.Size = Vector3.new(1, 1, 1)
  915. 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)
  916. p19.CanCollide = false
  917. p19.Locked = true
  918. b17 = Instance.new("SpecialMesh", p19)
  919. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  920. b17.TextureId = ""
  921. b17.MeshType = Enum.MeshType.FileMesh
  922. b17.Name = "Mesh"
  923. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  924. p20 = Instance.new("Part", m)
  925. p20.BrickColor = BrickColor.new("Really black")
  926. p20.FormFactor = Enum.FormFactor.Custom
  927. p20.Size = Vector3.new(3, 1, 2.4000001)
  928. 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)
  929. p20.CanCollide = false
  930. p20.Locked = true
  931. p20.BottomSurface = Enum.SurfaceType.Smooth
  932. p20.TopSurface = Enum.SurfaceType.Smooth
  933. b18 = Instance.new("BlockMesh", p20)
  934. b18.Name = "Mesh"
  935. p21 = Instance.new("Part", m)
  936. p21.BrickColor = BrickColor.new("Really black")
  937. p21.FormFactor = Enum.FormFactor.Custom
  938. p21.Size = Vector3.new(3, 1, 1.19999993)
  939. 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)
  940. p21.CanCollide = false
  941. p21.Locked = true
  942. p21.BottomSurface = Enum.SurfaceType.Smooth
  943. p21.TopSurface = Enum.SurfaceType.Smooth
  944. b19 = Instance.new("BlockMesh", p21)
  945. b19.Name = "Mesh"
  946. p22 = Instance.new("WedgePart", m)
  947. p22.BrickColor = BrickColor.new("Really black")
  948. p22.Name = "Wedge"
  949. p22.FormFactor = Enum.FormFactor.Custom
  950. p22.Size = Vector3.new(3, 1, 0.5)
  951. 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)
  952. p22.CanCollide = false
  953. p22.Locked = true
  954. p22.BottomSurface = Enum.SurfaceType.Smooth
  955. p22.TopSurface = Enum.SurfaceType.Smooth
  956. p23 = Instance.new("Part", m)
  957. p23.BrickColor = BrickColor.new("Really black")
  958. p23.FormFactor = Enum.FormFactor.Custom
  959. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  960. 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)
  961. p23.CanCollide = false
  962. p23.Locked = true
  963. p23.BottomSurface = Enum.SurfaceType.Smooth
  964. p23.TopSurface = Enum.SurfaceType.Smooth
  965. b20 = Instance.new("BlockMesh", p23)
  966. b20.Name = "Mesh"
  967. p24 = Instance.new("WedgePart", m)
  968. p24.BrickColor = BrickColor.new("Really black")
  969. p24.Name = "Wedge"
  970. p24.FormFactor = Enum.FormFactor.Custom
  971. p24.Size = Vector3.new(3, 1, 0.5)
  972. 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)
  973. p24.CanCollide = false
  974. p24.Locked = true
  975. p24.BottomSurface = Enum.SurfaceType.Smooth
  976. p24.TopSurface = Enum.SurfaceType.Smooth
  977. p25 = Instance.new("Part", m)
  978. p25.BrickColor = BrickColor.new("Bright blue")
  979. p25.Material = "Neon"
  980. p25.FormFactor = Enum.FormFactor.Symmetric
  981. p25.Size = Vector3.new(1, 1, 1)
  982. 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)
  983. p25.CanCollide = false
  984. p25.Locked = true
  985. p25.BottomSurface = Enum.SurfaceType.Smooth
  986. p25.TopSurface = Enum.SurfaceType.Smooth
  987. b21 = Instance.new("SpecialMesh", p25)
  988. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  989. b21.TextureId = ""
  990. b21.MeshType = Enum.MeshType.FileMesh
  991. b21.Name = "Mesh"
  992. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  993. p26 = Instance.new("Part", m)
  994. p26.BrickColor = BrickColor.new("Really black")
  995. p26.FormFactor = Enum.FormFactor.Symmetric
  996. p26.Size = Vector3.new(1, 1, 1)
  997. 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)
  998. p26.CanCollide = false
  999. p26.Locked = true
  1000. p26.BottomSurface = Enum.SurfaceType.Smooth
  1001. p26.TopSurface = Enum.SurfaceType.Smooth
  1002. b22 = Instance.new("SpecialMesh", p26)
  1003. b22.MeshType = Enum.MeshType.Brick
  1004. b22.Name = "Mesh"
  1005. w1 = Instance.new("Weld", p1)
  1006. w1.Name = "Wedge_Weld"
  1007. w1.Part0 = p1
  1008. 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)
  1009. w1.Part1 = p2
  1010. 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)
  1011. w2 = Instance.new("Weld", p2)
  1012. w2.Name = "Part_Weld"
  1013. w2.Part0 = p2
  1014. 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)
  1015. w2.Part1 = p3
  1016. 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)
  1017. w3 = Instance.new("Weld", p3)
  1018. w3.Name = "Wedge_Weld"
  1019. w3.Part0 = p3
  1020. 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)
  1021. w3.Part1 = p4
  1022. 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)
  1023. w4 = Instance.new("Weld", p4)
  1024. w4.Name = "Part_Weld"
  1025. w4.Part0 = p4
  1026. 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)
  1027. w4.Part1 = p5
  1028. 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)
  1029. w5 = Instance.new("Weld", p5)
  1030. w5.Name = "Part_Weld"
  1031. w5.Part0 = p5
  1032. 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)
  1033. w5.Part1 = p6
  1034. 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)
  1035. w6 = Instance.new("Weld", p6)
  1036. w6.Name = "Part_Weld"
  1037. w6.Part0 = p6
  1038. 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)
  1039. w6.Part1 = p7
  1040. 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)
  1041. w7 = Instance.new("Weld", p7)
  1042. w7.Name = "Part_Weld"
  1043. w7.Part0 = p7
  1044. 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)
  1045. w7.Part1 = p8
  1046. 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)
  1047. w8 = Instance.new("Weld", p8)
  1048. w8.Name = "Part_Weld"
  1049. w8.Part0 = p8
  1050. 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)
  1051. w8.Part1 = p9
  1052. 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)
  1053. w9 = Instance.new("Weld", p9)
  1054. w9.Name = "Part_Weld"
  1055. w9.Part0 = p9
  1056. 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)
  1057. w9.Part1 = p10
  1058. 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)
  1059. w10 = Instance.new("Weld", p10)
  1060. w10.Name = "Part_Weld"
  1061. w10.Part0 = p10
  1062. 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)
  1063. w10.Part1 = p11
  1064. 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)
  1065. w11 = Instance.new("Weld", p11)
  1066. w11.Name = "Part_Weld"
  1067. w11.Part0 = p11
  1068. 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)
  1069. w11.Part1 = p12
  1070. 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)
  1071. w12 = Instance.new("Weld", p12)
  1072. w12.Name = "Part_Weld"
  1073. w12.Part0 = p12
  1074. 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)
  1075. w12.Part1 = p13
  1076. 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)
  1077. w13 = Instance.new("Weld", p13)
  1078. w13.Name = "Part_Weld"
  1079. w13.Part0 = p13
  1080. 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)
  1081. w13.Part1 = p14
  1082. 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)
  1083. w14 = Instance.new("Weld", p14)
  1084. w14.Name = "ArmPart_Weld"
  1085. w14.Part0 = p14
  1086. 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)
  1087. w14.Part1 = p15
  1088. 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)
  1089. w15 = Instance.new("Weld", p15)
  1090. w15.Name = "Part_Weld"
  1091. w15.Part0 = p15
  1092. 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)
  1093. w15.Part1 = p16
  1094. 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)
  1095. w16 = Instance.new("Weld", p16)
  1096. w16.Name = "Part_Weld"
  1097. w16.Part0 = p16
  1098. 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)
  1099. w16.Part1 = p17
  1100. 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)
  1101. w17 = Instance.new("Weld", p17)
  1102. w17.Name = "Part_Weld"
  1103. w17.Part0 = p17
  1104. 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)
  1105. w17.Part1 = p18
  1106. 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)
  1107. w18 = Instance.new("Weld", p18)
  1108. w18.Name = "Part_Weld"
  1109. w18.Part0 = p18
  1110. 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)
  1111. w18.Part1 = p19
  1112. 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)
  1113. w19 = Instance.new("Weld", p19)
  1114. w19.Name = "Part_Weld"
  1115. w19.Part0 = p19
  1116. 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)
  1117. w19.Part1 = p20
  1118. 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)
  1119. w20 = Instance.new("Weld", p20)
  1120. w20.Name = "Part_Weld"
  1121. w20.Part0 = p20
  1122. 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)
  1123. w20.Part1 = p21
  1124. 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)
  1125. w21 = Instance.new("Weld", p21)
  1126. w21.Name = "Wedge_Weld"
  1127. w21.Part0 = p21
  1128. 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)
  1129. w21.Part1 = p22
  1130. 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)
  1131. w22 = Instance.new("Weld", p22)
  1132. w22.Name = "Part_Weld"
  1133. w22.Part0 = p22
  1134. 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)
  1135. w22.Part1 = p23
  1136. 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)
  1137. w23 = Instance.new("Weld", p23)
  1138. w23.Name = "Wedge_Weld"
  1139. w23.Part0 = p23
  1140. 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)
  1141. w23.Part1 = p24
  1142. 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)
  1143. w24 = Instance.new("Weld", p24)
  1144. w24.Name = "Part_Weld"
  1145. w24.Part0 = p24
  1146. 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)
  1147. w24.Part1 = p25
  1148. 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)
  1149. w25 = Instance.new("Weld", p25)
  1150. w25.Name = "Part_Weld"
  1151. w25.Part0 = p25
  1152. 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)
  1153. w25.Part1 = p26
  1154. 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)
  1155. m.Parent = char
  1156. m:MakeJoints()
  1157. ----------------------------------------------------
  1158. local cor2 = Instance.new("Part", char.Claw)
  1159. cor2.Name = "Thingy"
  1160. cor2.Locked = true
  1161. cor2.BottomSurface = 0
  1162. cor2.CanCollide = false
  1163. cor2.Size = Vector3.new(2, 1, 1)
  1164. cor2.Transparency = 1
  1165. cor2.TopSurface = 0
  1166. corw2 = Instance.new("Weld", cor2)
  1167. corw2.Part0 = larm
  1168. corw2.Part1 = cor2
  1169. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1170. corw2.C1 = CFrame.new(0, 0, 0)
  1171. weld2 = Instance.new("Weld", char.Claw)
  1172. weld2.Part0 = cor2
  1173. weld2.Part1 = char.Claw.ArmPart
  1174. weld2.C0 = CFrame.new(0, 0, 0)
  1175. ----------------------------------------------------
  1176. local m = Instance.new("Model")
  1177. m.Name = "LeftArm"
  1178. p1 = Instance.new("WedgePart", m)
  1179. p1.BrickColor = BrickColor.new("Bright blue")
  1180. p1.Material = Enum.Material.Neon
  1181. p1.Name = "Wedge"
  1182. p1.FormFactor = Enum.FormFactor.Custom
  1183. p1.Size = Vector3.new(1, 1.19999981, 4)
  1184. 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)
  1185. p1.CanCollide = false
  1186. p1.Locked = true
  1187. p1.TopSurface = Enum.SurfaceType.Smooth
  1188. b1 = Instance.new("SpecialMesh", p1)
  1189. b1.MeshType = Enum.MeshType.Wedge
  1190. b1.Name = "Mesh"
  1191. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1192. p2 = Instance.new("WedgePart", m)
  1193. p2.BrickColor = BrickColor.new("Bright blue")
  1194. p2.Material = Enum.Material.Neon
  1195. p2.Name = "Wedge"
  1196. p2.FormFactor = Enum.FormFactor.Custom
  1197. p2.Size = Vector3.new(1, 1.19999981, 4)
  1198. 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)
  1199. p2.CanCollide = false
  1200. p2.Locked = true
  1201. p2.TopSurface = Enum.SurfaceType.Smooth
  1202. b2 = Instance.new("SpecialMesh", p2)
  1203. b2.MeshType = Enum.MeshType.Wedge
  1204. b2.Name = "Mesh"
  1205. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1206. p3 = Instance.new("WedgePart", m)
  1207. p3.BrickColor = BrickColor.new("Bright blue")
  1208. p3.Material = Enum.Material.Neon
  1209. p3.Name = "Wedge"
  1210. p3.FormFactor = Enum.FormFactor.Custom
  1211. p3.Size = Vector3.new(1, 1.19999981, 4)
  1212. 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)
  1213. p3.CanCollide = false
  1214. p3.Locked = true
  1215. p3.TopSurface = Enum.SurfaceType.Smooth
  1216. b3 = Instance.new("SpecialMesh", p3)
  1217. b3.MeshType = Enum.MeshType.Wedge
  1218. b3.Name = "Mesh"
  1219. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1220. p4 = Instance.new("WedgePart", m)
  1221. p4.BrickColor = BrickColor.new("Bright blue")
  1222. p4.Material = Enum.Material.Neon
  1223. p4.Name = "Wedge"
  1224. p4.FormFactor = Enum.FormFactor.Custom
  1225. p4.Size = Vector3.new(1, 1.19999981, 4)
  1226. 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)
  1227. p4.CanCollide = false
  1228. p4.Locked = true
  1229. p4.TopSurface = Enum.SurfaceType.Smooth
  1230. b4 = Instance.new("SpecialMesh", p4)
  1231. b4.MeshType = Enum.MeshType.Wedge
  1232. b4.Name = "Mesh"
  1233. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1234. p5 = Instance.new("WedgePart", m)
  1235. p5.BrickColor = BrickColor.new("Bright blue")
  1236. p5.Material = Enum.Material.Neon
  1237. p5.Name = "Wedge"
  1238. p5.FormFactor = Enum.FormFactor.Custom
  1239. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1240. 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)
  1241. p5.CanCollide = false
  1242. p5.Locked = true
  1243. p5.TopSurface = Enum.SurfaceType.Smooth
  1244. b5 = Instance.new("SpecialMesh", p5)
  1245. b5.MeshType = Enum.MeshType.Wedge
  1246. b5.Name = "Mesh"
  1247. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1248. p6 = Instance.new("WedgePart", m)
  1249. p6.BrickColor = BrickColor.new("Bright blue")
  1250. p6.Material = Enum.Material.Neon
  1251. p6.Name = "Wedge"
  1252. p6.FormFactor = Enum.FormFactor.Custom
  1253. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1254. 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)
  1255. p6.CanCollide = false
  1256. p6.Locked = true
  1257. p6.TopSurface = Enum.SurfaceType.Smooth
  1258. b6 = Instance.new("SpecialMesh", p6)
  1259. b6.MeshType = Enum.MeshType.Wedge
  1260. b6.Name = "Mesh"
  1261. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1262. p7 = Instance.new("WedgePart", m)
  1263. p7.BrickColor = BrickColor.new("Bright blue")
  1264. p7.Material = Enum.Material.Neon
  1265. p7.Name = "Wedge"
  1266. p7.FormFactor = Enum.FormFactor.Custom
  1267. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1268. 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)
  1269. p7.CanCollide = false
  1270. p7.Locked = true
  1271. p7.TopSurface = Enum.SurfaceType.Smooth
  1272. b7 = Instance.new("SpecialMesh", p7)
  1273. b7.MeshType = Enum.MeshType.Wedge
  1274. b7.Name = "Mesh"
  1275. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1276. p8 = Instance.new("Part", m)
  1277. p8.BrickColor = BrickColor.new("Really black")
  1278. p8.Material = Enum.Material.Neon
  1279. p8.FormFactor = Enum.FormFactor.Custom
  1280. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1281. 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)
  1282. p8.CanCollide = false
  1283. p8.Locked = true
  1284. p8.BottomSurface = Enum.SurfaceType.Smooth
  1285. p8.TopSurface = Enum.SurfaceType.Smooth
  1286. b8 = Instance.new("SpecialMesh", p8)
  1287. b8.MeshType = Enum.MeshType.Sphere
  1288. b8.Name = "Mesh"
  1289. p9 = Instance.new("Part", m)
  1290. p9.BrickColor = BrickColor.new("Really black")
  1291. p9.Material = Enum.Material.Neon
  1292. p9.FormFactor = Enum.FormFactor.Custom
  1293. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1294. 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)
  1295. p9.CanCollide = false
  1296. p9.Locked = true
  1297. p9.BottomSurface = Enum.SurfaceType.Smooth
  1298. p9.TopSurface = Enum.SurfaceType.Smooth
  1299. b9 = Instance.new("SpecialMesh", p9)
  1300. b9.MeshType = Enum.MeshType.Sphere
  1301. b9.Name = "Mesh"
  1302. p10 = Instance.new("Part", m)
  1303. p10.BrickColor = BrickColor.new("Bright blue")
  1304. p10.Material = Enum.Material.Neon
  1305. p10.FormFactor = Enum.FormFactor.Custom
  1306. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1307. 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)
  1308. p10.CanCollide = false
  1309. p10.Locked = true
  1310. p10.BottomSurface = Enum.SurfaceType.Smooth
  1311. p10.TopSurface = Enum.SurfaceType.Smooth
  1312. p11 = Instance.new("Part", m)
  1313. p11.BrickColor = BrickColor.new("Bright blue")
  1314. p11.Material = Enum.Material.Neon
  1315. p11.FormFactor = Enum.FormFactor.Custom
  1316. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1317. 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)
  1318. p11.CanCollide = false
  1319. p11.Locked = true
  1320. p11.BottomSurface = Enum.SurfaceType.Smooth
  1321. p11.TopSurface = Enum.SurfaceType.Smooth
  1322. p12 = Instance.new("Part", m)
  1323. p12.BrickColor = BrickColor.new("Really black")
  1324. p12.Material = Enum.Material.Neon
  1325. p12.FormFactor = Enum.FormFactor.Custom
  1326. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1327. 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)
  1328. p12.CanCollide = false
  1329. p12.Locked = true
  1330. p12.BottomSurface = Enum.SurfaceType.Smooth
  1331. p12.TopSurface = Enum.SurfaceType.Smooth
  1332. b10 = Instance.new("SpecialMesh", p12)
  1333. b10.MeshType = Enum.MeshType.Sphere
  1334. b10.Name = "Mesh"
  1335. p13 = Instance.new("Part", m)
  1336. p13.BrickColor = BrickColor.new("Bright blue")
  1337. p13.Material = Enum.Material.Neon
  1338. p13.FormFactor = Enum.FormFactor.Custom
  1339. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1340. 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)
  1341. p13.CanCollide = false
  1342. p13.Locked = true
  1343. p13.BottomSurface = Enum.SurfaceType.Smooth
  1344. p13.TopSurface = Enum.SurfaceType.Smooth
  1345. b11 = Instance.new("SpecialMesh", p13)
  1346. b11.MeshType = Enum.MeshType.Sphere
  1347. b11.Name = "Mesh"
  1348. p14 = Instance.new("Part", m)
  1349. p14.BrickColor = BrickColor.new("Really black")
  1350. p14.Material = Enum.Material.Neon
  1351. p14.FormFactor = Enum.FormFactor.Custom
  1352. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1353. 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)
  1354. p14.CanCollide = false
  1355. p14.Locked = true
  1356. p14.BottomSurface = Enum.SurfaceType.Smooth
  1357. p14.TopSurface = Enum.SurfaceType.Smooth
  1358. b12 = Instance.new("SpecialMesh", p14)
  1359. b12.MeshType = Enum.MeshType.Sphere
  1360. b12.Name = "Mesh"
  1361. p15 = Instance.new("Part", m)
  1362. p15.BrickColor = BrickColor.new("Really black")
  1363. p15.Material = Enum.Material.Metal
  1364. p15.Name = "Main"
  1365. p15.FormFactor = Enum.FormFactor.Custom
  1366. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1367. 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)
  1368. p15.CanCollide = false
  1369. p15.Locked = true
  1370. p15.BottomSurface = Enum.SurfaceType.Smooth
  1371. p15.TopSurface = Enum.SurfaceType.Smooth
  1372. p16 = Instance.new("Part", m)
  1373. p16.BrickColor = BrickColor.new("Really black")
  1374. p16.Material = Enum.Material.Neon
  1375. p16.FormFactor = Enum.FormFactor.Custom
  1376. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1377. 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)
  1378. p16.CanCollide = false
  1379. p16.Locked = true
  1380. p16.BottomSurface = Enum.SurfaceType.Smooth
  1381. p16.TopSurface = Enum.SurfaceType.Smooth
  1382. b13 = Instance.new("SpecialMesh", p16)
  1383. b13.MeshType = Enum.MeshType.Sphere
  1384. b13.Name = "Mesh"
  1385. p17 = Instance.new("Part", m)
  1386. p17.BrickColor = BrickColor.new("Bright blue")
  1387. p17.Material = Enum.Material.Neon
  1388. p17.FormFactor = Enum.FormFactor.Custom
  1389. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1390. 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)
  1391. p17.CanCollide = false
  1392. p17.Locked = true
  1393. p17.BottomSurface = Enum.SurfaceType.Smooth
  1394. p17.TopSurface = Enum.SurfaceType.Smooth
  1395. p18 = Instance.new("Part", m)
  1396. p18.BrickColor = BrickColor.new("Bright blue")
  1397. p18.Material = Enum.Material.Neon
  1398. p18.FormFactor = Enum.FormFactor.Custom
  1399. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1400. 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)
  1401. p18.CanCollide = false
  1402. p18.Locked = true
  1403. p18.BottomSurface = Enum.SurfaceType.Smooth
  1404. p18.TopSurface = Enum.SurfaceType.Smooth
  1405. p19 = Instance.new("Part", m)
  1406. p19.BrickColor = BrickColor.new("Bright blue")
  1407. p19.Material = Enum.Material.Neon
  1408. p19.FormFactor = Enum.FormFactor.Custom
  1409. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1410. 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)
  1411. p19.CanCollide = false
  1412. p19.Locked = true
  1413. p19.BottomSurface = Enum.SurfaceType.Smooth
  1414. p19.TopSurface = Enum.SurfaceType.Smooth
  1415. p20 = Instance.new("Part", m)
  1416. p20.BrickColor = BrickColor.new("Bright blue")
  1417. p20.Material = Enum.Material.Neon
  1418. p20.FormFactor = Enum.FormFactor.Custom
  1419. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1420. 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)
  1421. p20.CanCollide = false
  1422. p20.Locked = true
  1423. p20.BottomSurface = Enum.SurfaceType.Smooth
  1424. p20.TopSurface = Enum.SurfaceType.Smooth
  1425. p21 = Instance.new("Part", m)
  1426. p21.BrickColor = BrickColor.new("Bright blue")
  1427. p21.Material = Enum.Material.Neon
  1428. p21.FormFactor = Enum.FormFactor.Custom
  1429. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1430. 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)
  1431. p21.CanCollide = false
  1432. p21.Locked = true
  1433. p21.BottomSurface = Enum.SurfaceType.Smooth
  1434. p21.TopSurface = Enum.SurfaceType.Smooth
  1435. p22 = Instance.new("Part", m)
  1436. p22.BrickColor = BrickColor.new("Really black")
  1437. p22.Material = Enum.Material.Neon
  1438. p22.FormFactor = Enum.FormFactor.Custom
  1439. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1440. 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)
  1441. p22.CanCollide = false
  1442. p22.Locked = true
  1443. p22.BottomSurface = Enum.SurfaceType.Smooth
  1444. p22.TopSurface = Enum.SurfaceType.Smooth
  1445. b14 = Instance.new("SpecialMesh", p22)
  1446. b14.MeshType = Enum.MeshType.Sphere
  1447. b14.Name = "Mesh"
  1448. p23 = Instance.new("Part", m)
  1449. p23.BrickColor = BrickColor.new("Really black")
  1450. p23.Material = Enum.Material.Neon
  1451. p23.FormFactor = Enum.FormFactor.Custom
  1452. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1453. 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)
  1454. p23.CanCollide = false
  1455. p23.Locked = true
  1456. p23.BottomSurface = Enum.SurfaceType.Smooth
  1457. p23.TopSurface = Enum.SurfaceType.Smooth
  1458. b15 = Instance.new("SpecialMesh", p23)
  1459. b15.MeshType = Enum.MeshType.Sphere
  1460. b15.Name = "Mesh"
  1461. p24 = Instance.new("Part", m)
  1462. p24.BrickColor = BrickColor.new("Really black")
  1463. p24.Material = Enum.Material.Neon
  1464. p24.FormFactor = Enum.FormFactor.Custom
  1465. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1466. 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)
  1467. p24.CanCollide = false
  1468. p24.Locked = true
  1469. p24.BottomSurface = Enum.SurfaceType.Smooth
  1470. p24.TopSurface = Enum.SurfaceType.Smooth
  1471. b16 = Instance.new("SpecialMesh", p24)
  1472. b16.MeshType = Enum.MeshType.Sphere
  1473. b16.Name = "Mesh"
  1474. w1 = Instance.new("Weld", p1)
  1475. w1.Name = "Wedge_Weld"
  1476. w1.Part0 = p1
  1477. 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)
  1478. w1.Part1 = p2
  1479. 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)
  1480. w2 = Instance.new("Weld", p2)
  1481. w2.Name = "Wedge_Weld"
  1482. w2.Part0 = p2
  1483. 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)
  1484. w2.Part1 = p3
  1485. 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)
  1486. w3 = Instance.new("Weld", p3)
  1487. w3.Name = "Wedge_Weld"
  1488. w3.Part0 = p3
  1489. 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)
  1490. w3.Part1 = p4
  1491. 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)
  1492. w4 = Instance.new("Weld", p4)
  1493. w4.Name = "Wedge_Weld"
  1494. w4.Part0 = p4
  1495. 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)
  1496. w4.Part1 = p5
  1497. 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)
  1498. w5 = Instance.new("Weld", p5)
  1499. w5.Name = "Wedge_Weld"
  1500. w5.Part0 = p5
  1501. 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)
  1502. w5.Part1 = p6
  1503. 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)
  1504. w6 = Instance.new("Weld", p6)
  1505. w6.Name = "Wedge_Weld"
  1506. w6.Part0 = p6
  1507. 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)
  1508. w6.Part1 = p7
  1509. 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)
  1510. w7 = Instance.new("Weld", p7)
  1511. w7.Name = "Part_Weld"
  1512. w7.Part0 = p7
  1513. 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)
  1514. w7.Part1 = p8
  1515. 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)
  1516. w8 = Instance.new("Weld", p8)
  1517. w8.Name = "Part_Weld"
  1518. w8.Part0 = p8
  1519. 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)
  1520. w8.Part1 = p9
  1521. 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)
  1522. w9 = Instance.new("Weld", p9)
  1523. w9.Name = "Part_Weld"
  1524. w9.Part0 = p9
  1525. 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)
  1526. w9.Part1 = p10
  1527. 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)
  1528. w10 = Instance.new("Weld", p10)
  1529. w10.Name = "Part_Weld"
  1530. w10.Part0 = p10
  1531. 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)
  1532. w10.Part1 = p11
  1533. 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)
  1534. w11 = Instance.new("Weld", p11)
  1535. w11.Name = "Part_Weld"
  1536. w11.Part0 = p11
  1537. 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)
  1538. w11.Part1 = p12
  1539. 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)
  1540. w12 = Instance.new("Weld", p12)
  1541. w12.Name = "Part_Weld"
  1542. w12.Part0 = p12
  1543. 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)
  1544. w12.Part1 = p13
  1545. 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)
  1546. w13 = Instance.new("Weld", p13)
  1547. w13.Name = "Part_Weld"
  1548. w13.Part0 = p13
  1549. 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)
  1550. w13.Part1 = p14
  1551. 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)
  1552. w14 = Instance.new("Weld", p14)
  1553. w14.Name = "Part_Weld"
  1554. w14.Part0 = p14
  1555. 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)
  1556. w14.Part1 = p15
  1557. 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)
  1558. w15 = Instance.new("Weld", p15)
  1559. w15.Name = "Part_Weld"
  1560. w15.Part0 = p15
  1561. 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)
  1562. w15.Part1 = p16
  1563. 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)
  1564. w16 = Instance.new("Weld", p16)
  1565. w16.Name = "Part_Weld"
  1566. w16.Part0 = p16
  1567. 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)
  1568. w16.Part1 = p17
  1569. 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)
  1570. w17 = Instance.new("Weld", p17)
  1571. w17.Name = "Part_Weld"
  1572. w17.Part0 = p17
  1573. 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)
  1574. w17.Part1 = p18
  1575. 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)
  1576. w18 = Instance.new("Weld", p18)
  1577. w18.Name = "Part_Weld"
  1578. w18.Part0 = p18
  1579. 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)
  1580. w18.Part1 = p19
  1581. 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)
  1582. w19 = Instance.new("Weld", p19)
  1583. w19.Name = "Part_Weld"
  1584. w19.Part0 = p19
  1585. 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)
  1586. w19.Part1 = p20
  1587. 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)
  1588. w20 = Instance.new("Weld", p20)
  1589. w20.Name = "Part_Weld"
  1590. w20.Part0 = p20
  1591. 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)
  1592. w20.Part1 = p21
  1593. 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)
  1594. w21 = Instance.new("Weld", p21)
  1595. w21.Name = "Part_Weld"
  1596. w21.Part0 = p21
  1597. 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)
  1598. w21.Part1 = p22
  1599. 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)
  1600. w22 = Instance.new("Weld", p22)
  1601. w22.Name = "Part_Weld"
  1602. w22.Part0 = p22
  1603. 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)
  1604. w22.Part1 = p23
  1605. 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)
  1606. w23 = Instance.new("Weld", p23)
  1607. w23.Name = "Part_Weld"
  1608. w23.Part0 = p23
  1609. 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)
  1610. w23.Part1 = p24
  1611. 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)
  1612. w24 = Instance.new("Weld", p24)
  1613. w24.Name = "Part_Weld"
  1614. w24.Part0 = p24
  1615. 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)
  1616. m.Parent = larm
  1617. m:MakeJoints()
  1618. ----------------------------------------------------
  1619. local cor3 = Instance.new("Part", larm.LeftArm)
  1620. cor3.Name = "Thingy"
  1621. cor3.Locked = true
  1622. cor3.BottomSurface = 0
  1623. cor3.CanCollide = false
  1624. cor3.Size = Vector3.new(2, 1, 1)
  1625. cor3.Transparency = 1
  1626. cor3.TopSurface = 0
  1627. corw2 = Instance.new("Weld", cor3)
  1628. corw2.Part0 = larm
  1629. corw2.Part1 = cor3
  1630. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1631. corw2.C1 = CFrame.new(0, 0, 0)
  1632. weld2 = Instance.new("Weld", larm.LeftArm)
  1633. weld2.Part0 = cor3
  1634. weld2.Part1 = p15
  1635. weld2.C0 = CFrame.new(0, 0, 0)
  1636. ----------------------------------------------------
  1637. local m = Instance.new("Model")
  1638. m.Name = "RightArm"
  1639. p1 = Instance.new("WedgePart", m)
  1640. p1.BrickColor = BrickColor.new("Bright blue")
  1641. p1.Material = Enum.Material.Neon
  1642. p1.Name = "Wedge"
  1643. p1.FormFactor = Enum.FormFactor.Custom
  1644. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1645. 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)
  1646. p1.CanCollide = false
  1647. p1.Locked = true
  1648. p1.TopSurface = Enum.SurfaceType.Smooth
  1649. b1 = Instance.new("SpecialMesh", p1)
  1650. b1.MeshType = Enum.MeshType.Wedge
  1651. b1.Name = "Mesh"
  1652. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1653. p2 = Instance.new("WedgePart", m)
  1654. p2.BrickColor = BrickColor.new("Bright blue")
  1655. p2.Material = Enum.Material.Neon
  1656. p2.Name = "Wedge"
  1657. p2.FormFactor = Enum.FormFactor.Custom
  1658. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1659. 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)
  1660. p2.CanCollide = false
  1661. p2.Locked = true
  1662. p2.TopSurface = Enum.SurfaceType.Smooth
  1663. b2 = Instance.new("SpecialMesh", p2)
  1664. b2.MeshType = Enum.MeshType.Wedge
  1665. b2.Name = "Mesh"
  1666. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1667. p3 = Instance.new("WedgePart", m)
  1668. p3.BrickColor = BrickColor.new("Bright blue")
  1669. p3.Material = Enum.Material.Neon
  1670. p3.Name = "Wedge"
  1671. p3.FormFactor = Enum.FormFactor.Custom
  1672. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1673. 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)
  1674. p3.CanCollide = false
  1675. p3.Locked = true
  1676. p3.TopSurface = Enum.SurfaceType.Smooth
  1677. b3 = Instance.new("SpecialMesh", p3)
  1678. b3.MeshType = Enum.MeshType.Wedge
  1679. b3.Name = "Mesh"
  1680. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1681. p4 = Instance.new("WedgePart", m)
  1682. p4.BrickColor = BrickColor.new("Bright blue")
  1683. p4.Material = Enum.Material.Neon
  1684. p4.Name = "Wedge"
  1685. p4.FormFactor = Enum.FormFactor.Custom
  1686. p4.Size = Vector3.new(1, 1.19999981, 4)
  1687. 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)
  1688. p4.CanCollide = false
  1689. p4.Locked = true
  1690. p4.TopSurface = Enum.SurfaceType.Smooth
  1691. b4 = Instance.new("SpecialMesh", p4)
  1692. b4.MeshType = Enum.MeshType.Wedge
  1693. b4.Name = "Mesh"
  1694. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1695. p5 = Instance.new("WedgePart", m)
  1696. p5.BrickColor = BrickColor.new("Bright blue")
  1697. p5.Material = Enum.Material.Neon
  1698. p5.Name = "Wedge"
  1699. p5.FormFactor = Enum.FormFactor.Custom
  1700. p5.Size = Vector3.new(1, 1.19999981, 4)
  1701. 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)
  1702. p5.CanCollide = false
  1703. p5.Locked = true
  1704. p5.TopSurface = Enum.SurfaceType.Smooth
  1705. b5 = Instance.new("SpecialMesh", p5)
  1706. b5.MeshType = Enum.MeshType.Wedge
  1707. b5.Name = "Mesh"
  1708. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1709. p6 = Instance.new("WedgePart", m)
  1710. p6.BrickColor = BrickColor.new("Bright blue")
  1711. p6.Material = Enum.Material.Neon
  1712. p6.Name = "Wedge"
  1713. p6.FormFactor = Enum.FormFactor.Custom
  1714. p6.Size = Vector3.new(1, 1.19999981, 4)
  1715. 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)
  1716. p6.CanCollide = false
  1717. p6.Locked = true
  1718. p6.TopSurface = Enum.SurfaceType.Smooth
  1719. b6 = Instance.new("SpecialMesh", p6)
  1720. b6.MeshType = Enum.MeshType.Wedge
  1721. b6.Name = "Mesh"
  1722. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1723. p7 = Instance.new("Part", m)
  1724. p7.BrickColor = BrickColor.new("Really black")
  1725. p7.Material = Enum.Material.Neon
  1726. p7.FormFactor = Enum.FormFactor.Custom
  1727. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1728. 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)
  1729. p7.CanCollide = false
  1730. p7.Locked = true
  1731. p7.BottomSurface = Enum.SurfaceType.Smooth
  1732. p7.TopSurface = Enum.SurfaceType.Smooth
  1733. b7 = Instance.new("SpecialMesh", p7)
  1734. b7.MeshType = Enum.MeshType.Sphere
  1735. b7.Name = "Mesh"
  1736. p8 = Instance.new("Part", m)
  1737. p8.BrickColor = BrickColor.new("Bright blue")
  1738. p8.Material = Enum.Material.Neon
  1739. p8.FormFactor = Enum.FormFactor.Custom
  1740. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1741. 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)
  1742. p8.CanCollide = false
  1743. p8.Locked = true
  1744. p8.BottomSurface = Enum.SurfaceType.Smooth
  1745. p8.TopSurface = Enum.SurfaceType.Smooth
  1746. p9 = Instance.new("Part", m)
  1747. p9.BrickColor = BrickColor.new("Really black")
  1748. p9.Material = Enum.Material.Neon
  1749. p9.FormFactor = Enum.FormFactor.Custom
  1750. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1751. 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)
  1752. p9.CanCollide = false
  1753. p9.Locked = true
  1754. p9.BottomSurface = Enum.SurfaceType.Smooth
  1755. p9.TopSurface = Enum.SurfaceType.Smooth
  1756. b8 = Instance.new("SpecialMesh", p9)
  1757. b8.MeshType = Enum.MeshType.Sphere
  1758. b8.Name = "Mesh"
  1759. p10 = Instance.new("Part", m)
  1760. p10.BrickColor = BrickColor.new("Really black")
  1761. p10.Material = Enum.Material.Neon
  1762. p10.FormFactor = Enum.FormFactor.Custom
  1763. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1764. 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)
  1765. p10.CanCollide = false
  1766. p10.Locked = true
  1767. p10.BottomSurface = Enum.SurfaceType.Smooth
  1768. p10.TopSurface = Enum.SurfaceType.Smooth
  1769. b9 = Instance.new("SpecialMesh", p10)
  1770. b9.MeshType = Enum.MeshType.Sphere
  1771. b9.Name = "Mesh"
  1772. p11 = Instance.new("Part", m)
  1773. p11.BrickColor = BrickColor.new("Bright blue")
  1774. p11.Material = Enum.Material.Neon
  1775. p11.FormFactor = Enum.FormFactor.Custom
  1776. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1777. 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)
  1778. p11.CanCollide = false
  1779. p11.Locked = true
  1780. p11.BottomSurface = Enum.SurfaceType.Smooth
  1781. p11.TopSurface = Enum.SurfaceType.Smooth
  1782. p12 = Instance.new("Part", m)
  1783. p12.BrickColor = BrickColor.new("Bright blue")
  1784. p12.Material = Enum.Material.Neon
  1785. p12.FormFactor = Enum.FormFactor.Custom
  1786. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1787. 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)
  1788. p12.CanCollide = false
  1789. p12.Locked = true
  1790. p12.BottomSurface = Enum.SurfaceType.Smooth
  1791. p12.TopSurface = Enum.SurfaceType.Smooth
  1792. p13 = Instance.new("Part", m)
  1793. p13.BrickColor = BrickColor.new("Bright blue")
  1794. p13.Material = Enum.Material.Neon
  1795. p13.FormFactor = Enum.FormFactor.Custom
  1796. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1797. 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)
  1798. p13.CanCollide = false
  1799. p13.Locked = true
  1800. p13.BottomSurface = Enum.SurfaceType.Smooth
  1801. p13.TopSurface = Enum.SurfaceType.Smooth
  1802. b10 = Instance.new("SpecialMesh", p13)
  1803. b10.MeshType = Enum.MeshType.Sphere
  1804. b10.Name = "Mesh"
  1805. p14 = Instance.new("Part", m)
  1806. p14.BrickColor = BrickColor.new("Really black")
  1807. p14.Material = Enum.Material.Metal
  1808. p14.Name = "Main"
  1809. p14.FormFactor = Enum.FormFactor.Custom
  1810. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1811. 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)
  1812. p14.CanCollide = false
  1813. p14.Locked = true
  1814. p14.BottomSurface = Enum.SurfaceType.Smooth
  1815. p14.TopSurface = Enum.SurfaceType.Smooth
  1816. p15 = Instance.new("Part", m)
  1817. p15.BrickColor = BrickColor.new("Really black")
  1818. p15.Material = Enum.Material.Neon
  1819. p15.FormFactor = Enum.FormFactor.Custom
  1820. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1821. 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)
  1822. p15.CanCollide = false
  1823. p15.Locked = true
  1824. p15.BottomSurface = Enum.SurfaceType.Smooth
  1825. p15.TopSurface = Enum.SurfaceType.Smooth
  1826. b11 = Instance.new("SpecialMesh", p15)
  1827. b11.MeshType = Enum.MeshType.Sphere
  1828. b11.Name = "Mesh"
  1829. p16 = Instance.new("Part", m)
  1830. p16.BrickColor = BrickColor.new("Bright blue")
  1831. p16.Material = Enum.Material.Neon
  1832. p16.FormFactor = Enum.FormFactor.Custom
  1833. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1834. 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)
  1835. p16.CanCollide = false
  1836. p16.Locked = true
  1837. p16.BottomSurface = Enum.SurfaceType.Smooth
  1838. p16.TopSurface = Enum.SurfaceType.Smooth
  1839. p17 = Instance.new("Part", m)
  1840. p17.BrickColor = BrickColor.new("Bright blue")
  1841. p17.Material = Enum.Material.Neon
  1842. p17.FormFactor = Enum.FormFactor.Custom
  1843. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1844. 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)
  1845. p17.CanCollide = false
  1846. p17.Locked = true
  1847. p17.BottomSurface = Enum.SurfaceType.Smooth
  1848. p17.TopSurface = Enum.SurfaceType.Smooth
  1849. p18 = Instance.new("Part", m)
  1850. p18.BrickColor = BrickColor.new("Really black")
  1851. p18.Material = Enum.Material.Neon
  1852. p18.FormFactor = Enum.FormFactor.Custom
  1853. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1854. 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)
  1855. p18.CanCollide = false
  1856. p18.Locked = true
  1857. p18.BottomSurface = Enum.SurfaceType.Smooth
  1858. p18.TopSurface = Enum.SurfaceType.Smooth
  1859. b12 = Instance.new("SpecialMesh", p18)
  1860. b12.MeshType = Enum.MeshType.Sphere
  1861. b12.Name = "Mesh"
  1862. p19 = Instance.new("Part", m)
  1863. p19.BrickColor = BrickColor.new("Really black")
  1864. p19.Material = Enum.Material.Neon
  1865. p19.FormFactor = Enum.FormFactor.Custom
  1866. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1867. 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)
  1868. p19.CanCollide = false
  1869. p19.Locked = true
  1870. p19.BottomSurface = Enum.SurfaceType.Smooth
  1871. p19.TopSurface = Enum.SurfaceType.Smooth
  1872. b13 = Instance.new("SpecialMesh", p19)
  1873. b13.MeshType = Enum.MeshType.Sphere
  1874. b13.Name = "Mesh"
  1875. w1 = Instance.new("Weld", p1)
  1876. w1.Name = "Wedge_Weld"
  1877. w1.Part0 = p1
  1878. 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)
  1879. w1.Part1 = p2
  1880. 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)
  1881. w2 = Instance.new("Weld", p2)
  1882. w2.Name = "Wedge_Weld"
  1883. w2.Part0 = p2
  1884. 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)
  1885. w2.Part1 = p3
  1886. 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)
  1887. w3 = Instance.new("Weld", p3)
  1888. w3.Name = "Wedge_Weld"
  1889. w3.Part0 = p3
  1890. 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)
  1891. w3.Part1 = p4
  1892. 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)
  1893. w4 = Instance.new("Weld", p4)
  1894. w4.Name = "Wedge_Weld"
  1895. w4.Part0 = p4
  1896. 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)
  1897. w4.Part1 = p5
  1898. 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)
  1899. w5 = Instance.new("Weld", p5)
  1900. w5.Name = "Wedge_Weld"
  1901. w5.Part0 = p5
  1902. 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)
  1903. w5.Part1 = p6
  1904. 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)
  1905. w6 = Instance.new("Weld", p6)
  1906. w6.Name = "Part_Weld"
  1907. w6.Part0 = p6
  1908. 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)
  1909. w6.Part1 = p7
  1910. 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)
  1911. w7 = Instance.new("Weld", p7)
  1912. w7.Name = "Part_Weld"
  1913. w7.Part0 = p7
  1914. 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)
  1915. w7.Part1 = p8
  1916. 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)
  1917. w8 = Instance.new("Weld", p8)
  1918. w8.Name = "Part_Weld"
  1919. w8.Part0 = p8
  1920. 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)
  1921. w8.Part1 = p9
  1922. 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)
  1923. w9 = Instance.new("Weld", p9)
  1924. w9.Name = "Part_Weld"
  1925. w9.Part0 = p9
  1926. 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)
  1927. w9.Part1 = p10
  1928. 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)
  1929. w10 = Instance.new("Weld", p10)
  1930. w10.Name = "Part_Weld"
  1931. w10.Part0 = p10
  1932. 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)
  1933. w10.Part1 = p11
  1934. 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)
  1935. w11 = Instance.new("Weld", p11)
  1936. w11.Name = "Part_Weld"
  1937. w11.Part0 = p11
  1938. 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)
  1939. w11.Part1 = p12
  1940. 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)
  1941. w12 = Instance.new("Weld", p12)
  1942. w12.Name = "Part_Weld"
  1943. w12.Part0 = p12
  1944. 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)
  1945. w12.Part1 = p13
  1946. 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)
  1947. w13 = Instance.new("Weld", p13)
  1948. w13.Name = "Part_Weld"
  1949. w13.Part0 = p13
  1950. 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)
  1951. w13.Part1 = p14
  1952. 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)
  1953. w14 = Instance.new("Weld", p14)
  1954. w14.Name = "Part_Weld"
  1955. w14.Part0 = p14
  1956. 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)
  1957. w14.Part1 = p15
  1958. 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)
  1959. w15 = Instance.new("Weld", p15)
  1960. w15.Name = "Part_Weld"
  1961. w15.Part0 = p15
  1962. 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)
  1963. w15.Part1 = p16
  1964. 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)
  1965. w16 = Instance.new("Weld", p16)
  1966. w16.Name = "Part_Weld"
  1967. w16.Part0 = p16
  1968. 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)
  1969. w16.Part1 = p17
  1970. 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)
  1971. w17 = Instance.new("Weld", p17)
  1972. w17.Name = "Part_Weld"
  1973. w17.Part0 = p17
  1974. 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)
  1975. w17.Part1 = p18
  1976. 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)
  1977. w18 = Instance.new("Weld", p18)
  1978. w18.Name = "Part_Weld"
  1979. w18.Part0 = p18
  1980. 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)
  1981. w18.Part1 = p19
  1982. 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)
  1983. w19 = Instance.new("Weld", p19)
  1984. w19.Name = "Wedge_Weld"
  1985. w19.Part0 = p19
  1986. 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)
  1987. m.Parent = rarm
  1988. m:MakeJoints()
  1989. ----------------------------------------------------
  1990. local cor4 = Instance.new("Part", rarm.RightArm)
  1991. cor4.Name = "Thingy"
  1992. cor4.Locked = true
  1993. cor4.BottomSurface = 0
  1994. cor4.CanCollide = false
  1995. cor4.Size = Vector3.new(2, 1, 1)
  1996. cor4.Transparency = 1
  1997. cor4.TopSurface = 0
  1998. corw2 = Instance.new("Weld", cor4)
  1999. corw2.Part0 = rarm
  2000. corw2.Part1 = cor4
  2001. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2002. corw2.C1 = CFrame.new(0, 0, 0)
  2003. weld2 = Instance.new("Weld", rarm.RightArm)
  2004. weld2.Part0 = cor4
  2005. weld2.Part1 = p14
  2006. weld2.C0 = CFrame.new(0, 0, 0)
  2007. ----------------------------------------------------
  2008. local m = Instance.new("Model")
  2009. m.Name = "UpperTorso"
  2010. p1 = Instance.new("Part", m)
  2011. p1.BrickColor = BrickColor.new("Really black")
  2012. p1.Material = Enum.Material.Neon
  2013. p1.FormFactor = Enum.FormFactor.Custom
  2014. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2015. 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)
  2016. p1.CanCollide = false
  2017. p1.Locked = true
  2018. p1.BottomSurface = Enum.SurfaceType.Smooth
  2019. p1.TopSurface = Enum.SurfaceType.Smooth
  2020. b1 = Instance.new("SpecialMesh", p1)
  2021. b1.MeshType = Enum.MeshType.Sphere
  2022. b1.Name = "Mesh"
  2023. p2 = Instance.new("Part", m)
  2024. p2.BrickColor = BrickColor.new("Really black")
  2025. p2.Material = Enum.Material.Neon
  2026. p2.FormFactor = Enum.FormFactor.Custom
  2027. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2028. 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)
  2029. p2.CanCollide = false
  2030. p2.Locked = true
  2031. p2.BottomSurface = Enum.SurfaceType.Smooth
  2032. p2.TopSurface = Enum.SurfaceType.Smooth
  2033. b2 = Instance.new("SpecialMesh", p2)
  2034. b2.MeshType = Enum.MeshType.Sphere
  2035. b2.Name = "Mesh"
  2036. p3 = Instance.new("Part", m)
  2037. p3.BrickColor = BrickColor.new("Bright blue")
  2038. p3.Material = Enum.Material.Neon
  2039. p3.FormFactor = Enum.FormFactor.Custom
  2040. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2041. 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)
  2042. p3.CanCollide = false
  2043. p3.Locked = true
  2044. p3.BottomSurface = Enum.SurfaceType.Smooth
  2045. p3.TopSurface = Enum.SurfaceType.Smooth
  2046. p4 = Instance.new("Part", m)
  2047. p4.BrickColor = BrickColor.new("Bright blue")
  2048. p4.Material = Enum.Material.Neon
  2049. p4.FormFactor = Enum.FormFactor.Custom
  2050. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2051. 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)
  2052. p4.CanCollide = false
  2053. p4.Locked = true
  2054. p4.BottomSurface = Enum.SurfaceType.Smooth
  2055. p4.TopSurface = Enum.SurfaceType.Smooth
  2056. p5 = Instance.new("Part", m)
  2057. p5.BrickColor = BrickColor.new("Bright blue")
  2058. p5.Material = Enum.Material.Neon
  2059. p5.FormFactor = Enum.FormFactor.Custom
  2060. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2061. 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)
  2062. p5.CanCollide = false
  2063. p5.Locked = true
  2064. p5.BottomSurface = Enum.SurfaceType.Smooth
  2065. p5.TopSurface = Enum.SurfaceType.Smooth
  2066. p6 = Instance.new("Part", m)
  2067. p6.BrickColor = BrickColor.new("Bright blue")
  2068. p6.Material = Enum.Material.Neon
  2069. p6.FormFactor = Enum.FormFactor.Custom
  2070. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2071. 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)
  2072. p6.CanCollide = false
  2073. p6.Locked = true
  2074. p6.BottomSurface = Enum.SurfaceType.Smooth
  2075. p6.TopSurface = Enum.SurfaceType.Smooth
  2076. p7 = Instance.new("Part", m)
  2077. p7.BrickColor = BrickColor.new("Really black")
  2078. p7.Material = Enum.Material.Neon
  2079. p7.FormFactor = Enum.FormFactor.Custom
  2080. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2081. 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)
  2082. p7.CanCollide = false
  2083. p7.Locked = true
  2084. p7.BottomSurface = Enum.SurfaceType.Smooth
  2085. p7.TopSurface = Enum.SurfaceType.Smooth
  2086. b3 = Instance.new("SpecialMesh", p7)
  2087. b3.MeshType = Enum.MeshType.Sphere
  2088. b3.Name = "Mesh"
  2089. p8 = Instance.new("Part", m)
  2090. p8.BrickColor = BrickColor.new("Really black")
  2091. p8.Material = Enum.Material.Neon
  2092. p8.FormFactor = Enum.FormFactor.Custom
  2093. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2094. 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)
  2095. p8.CanCollide = false
  2096. p8.Locked = true
  2097. p8.BottomSurface = Enum.SurfaceType.Smooth
  2098. p8.TopSurface = Enum.SurfaceType.Smooth
  2099. b4 = Instance.new("SpecialMesh", p8)
  2100. b4.MeshType = Enum.MeshType.Sphere
  2101. b4.Name = "Mesh"
  2102. p9 = Instance.new("Part", m)
  2103. p9.BrickColor = BrickColor.new("Really black")
  2104. p9.Material = Enum.Material.Neon
  2105. p9.FormFactor = Enum.FormFactor.Custom
  2106. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2107. 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)
  2108. p9.CanCollide = false
  2109. p9.Locked = true
  2110. p9.BottomSurface = Enum.SurfaceType.Smooth
  2111. p9.TopSurface = Enum.SurfaceType.Smooth
  2112. b5 = Instance.new("SpecialMesh", p9)
  2113. b5.MeshType = Enum.MeshType.Sphere
  2114. b5.Name = "Mesh"
  2115. p10 = Instance.new("Part", m)
  2116. p10.BrickColor = BrickColor.new("Bright blue")
  2117. p10.Material = Enum.Material.Neon
  2118. p10.FormFactor = Enum.FormFactor.Custom
  2119. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2120. 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)
  2121. p10.CanCollide = false
  2122. p10.Locked = true
  2123. p10.BottomSurface = Enum.SurfaceType.Smooth
  2124. p10.TopSurface = Enum.SurfaceType.Smooth
  2125. p11 = Instance.new("Part", m)
  2126. p11.BrickColor = BrickColor.new("Really black")
  2127. p11.Material = Enum.Material.Metal
  2128. p11.Name = "Main"
  2129. p11.FormFactor = Enum.FormFactor.Custom
  2130. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2131. 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)
  2132. p11.CanCollide = false
  2133. p11.Locked = true
  2134. p11.BottomSurface = Enum.SurfaceType.Smooth
  2135. p11.TopSurface = Enum.SurfaceType.Smooth
  2136. p12 = Instance.new("Part", m)
  2137. p12.BrickColor = BrickColor.new("Really black")
  2138. p12.Material = Enum.Material.Neon
  2139. p12.FormFactor = Enum.FormFactor.Custom
  2140. p12.Size = Vector3.new(3, 3, 2)
  2141. 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)
  2142. p12.CanCollide = false
  2143. p12.Locked = true
  2144. p12.BottomSurface = Enum.SurfaceType.Smooth
  2145. p12.TopSurface = Enum.SurfaceType.Smooth
  2146. b6 = Instance.new("SpecialMesh", p12)
  2147. b6.MeshType = Enum.MeshType.Sphere
  2148. b6.Name = "Mesh"
  2149. p13 = Instance.new("Part", m)
  2150. p13.BrickColor = BrickColor.new("Bright blue")
  2151. p13.Material = Enum.Material.Neon
  2152. p13.FormFactor = Enum.FormFactor.Custom
  2153. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2154. 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)
  2155. p13.CanCollide = false
  2156. p13.Locked = true
  2157. p13.BottomSurface = Enum.SurfaceType.Smooth
  2158. p13.TopSurface = Enum.SurfaceType.Smooth
  2159. p14 = Instance.new("Part", m)
  2160. p14.BrickColor = BrickColor.new("Bright blue")
  2161. p14.Material = Enum.Material.Neon
  2162. p14.FormFactor = Enum.FormFactor.Custom
  2163. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2164. 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)
  2165. p14.CanCollide = false
  2166. p14.Locked = true
  2167. p14.BottomSurface = Enum.SurfaceType.Smooth
  2168. p14.TopSurface = Enum.SurfaceType.Smooth
  2169. p15 = Instance.new("Part", m)
  2170. p15.BrickColor = BrickColor.new("Bright blue")
  2171. p15.Material = Enum.Material.Neon
  2172. p15.FormFactor = Enum.FormFactor.Custom
  2173. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2174. 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)
  2175. p15.CanCollide = false
  2176. p15.Locked = true
  2177. p15.BottomSurface = Enum.SurfaceType.Smooth
  2178. p15.TopSurface = Enum.SurfaceType.Smooth
  2179. p16 = Instance.new("Part", m)
  2180. p16.BrickColor = BrickColor.new("Bright blue")
  2181. p16.Material = Enum.Material.Neon
  2182. p16.FormFactor = Enum.FormFactor.Custom
  2183. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2184. 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)
  2185. p16.CanCollide = false
  2186. p16.Locked = true
  2187. p16.BottomSurface = Enum.SurfaceType.Smooth
  2188. p16.TopSurface = Enum.SurfaceType.Smooth
  2189. p17 = Instance.new("Part", m)
  2190. p17.BrickColor = BrickColor.new("Bright blue")
  2191. p17.Material = Enum.Material.Neon
  2192. p17.FormFactor = Enum.FormFactor.Custom
  2193. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2194. 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)
  2195. p17.CanCollide = false
  2196. p17.Locked = true
  2197. p17.BottomSurface = Enum.SurfaceType.Smooth
  2198. p17.TopSurface = Enum.SurfaceType.Smooth
  2199. p18 = Instance.new("Part", m)
  2200. p18.BrickColor = BrickColor.new("Bright blue")
  2201. p18.Material = Enum.Material.Neon
  2202. p18.FormFactor = Enum.FormFactor.Custom
  2203. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2204. 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)
  2205. p18.CanCollide = false
  2206. p18.Locked = true
  2207. p18.BottomSurface = Enum.SurfaceType.Smooth
  2208. p18.TopSurface = Enum.SurfaceType.Smooth
  2209. p19 = Instance.new("Part", m)
  2210. p19.BrickColor = BrickColor.new("Really black")
  2211. p19.Material = Enum.Material.Neon
  2212. p19.FormFactor = Enum.FormFactor.Custom
  2213. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2214. 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)
  2215. p19.CanCollide = false
  2216. p19.Locked = true
  2217. p19.BottomSurface = Enum.SurfaceType.Smooth
  2218. p19.TopSurface = Enum.SurfaceType.Smooth
  2219. b7 = Instance.new("SpecialMesh", p19)
  2220. b7.MeshType = Enum.MeshType.Sphere
  2221. b7.Name = "Mesh"
  2222. p20 = Instance.new("Part", m)
  2223. p20.BrickColor = BrickColor.new("Really black")
  2224. p20.Material = Enum.Material.Neon
  2225. p20.FormFactor = Enum.FormFactor.Custom
  2226. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2227. 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)
  2228. p20.CanCollide = false
  2229. p20.Locked = true
  2230. p20.BottomSurface = Enum.SurfaceType.Smooth
  2231. p20.TopSurface = Enum.SurfaceType.Smooth
  2232. b8 = Instance.new("SpecialMesh", p20)
  2233. b8.MeshType = Enum.MeshType.Sphere
  2234. b8.Name = "Mesh"
  2235. p21 = Instance.new("Part", m)
  2236. p21.BrickColor = BrickColor.new("Bright blue")
  2237. p21.Material = Enum.Material.Neon
  2238. p21.FormFactor = Enum.FormFactor.Custom
  2239. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2240. 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)
  2241. p21.CanCollide = false
  2242. p21.Locked = true
  2243. p21.BottomSurface = Enum.SurfaceType.Smooth
  2244. p21.TopSurface = Enum.SurfaceType.Smooth
  2245. p22 = Instance.new("Part", m)
  2246. p22.BrickColor = BrickColor.new("Really black")
  2247. p22.Material = Enum.Material.Neon
  2248. p22.FormFactor = Enum.FormFactor.Custom
  2249. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2250. 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)
  2251. p22.CanCollide = false
  2252. p22.Locked = true
  2253. p22.BottomSurface = Enum.SurfaceType.Smooth
  2254. p22.TopSurface = Enum.SurfaceType.Smooth
  2255. b9 = Instance.new("SpecialMesh", p22)
  2256. b9.MeshType = Enum.MeshType.Sphere
  2257. b9.Name = "Mesh"
  2258. w1 = Instance.new("Weld", p1)
  2259. w1.Name = "Part_Weld"
  2260. w1.Part0 = p1
  2261. 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)
  2262. w1.Part1 = p2
  2263. 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)
  2264. w2 = Instance.new("Weld", p2)
  2265. w2.Name = "Part_Weld"
  2266. w2.Part0 = p2
  2267. 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)
  2268. w2.Part1 = p3
  2269. 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)
  2270. w3 = Instance.new("Weld", p3)
  2271. w3.Name = "Part_Weld"
  2272. w3.Part0 = p3
  2273. 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)
  2274. w3.Part1 = p4
  2275. 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)
  2276. w4 = Instance.new("Weld", p4)
  2277. w4.Name = "Part_Weld"
  2278. w4.Part0 = p4
  2279. 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)
  2280. w4.Part1 = p5
  2281. 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)
  2282. w5 = Instance.new("Weld", p5)
  2283. w5.Name = "Part_Weld"
  2284. w5.Part0 = p5
  2285. 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)
  2286. w5.Part1 = p6
  2287. 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)
  2288. w6 = Instance.new("Weld", p6)
  2289. w6.Name = "Part_Weld"
  2290. w6.Part0 = p6
  2291. 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)
  2292. w6.Part1 = p7
  2293. 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)
  2294. w7 = Instance.new("Weld", p7)
  2295. w7.Name = "Part_Weld"
  2296. w7.Part0 = p7
  2297. 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)
  2298. w7.Part1 = p8
  2299. 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)
  2300. w8 = Instance.new("Weld", p8)
  2301. w8.Name = "Part_Weld"
  2302. w8.Part0 = p8
  2303. 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)
  2304. w8.Part1 = p9
  2305. 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)
  2306. w9 = Instance.new("Weld", p9)
  2307. w9.Name = "Part_Weld"
  2308. w9.Part0 = p9
  2309. 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)
  2310. w9.Part1 = p10
  2311. 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)
  2312. w10 = Instance.new("Weld", p10)
  2313. w10.Name = "Main_Weld"
  2314. w10.Part0 = p10
  2315. 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)
  2316. w10.Part1 = p11
  2317. 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)
  2318. w11 = Instance.new("Weld", p11)
  2319. w11.Name = "Part_Weld"
  2320. w11.Part0 = p11
  2321. 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)
  2322. w11.Part1 = p12
  2323. 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)
  2324. w12 = Instance.new("Weld", p12)
  2325. w12.Name = "Part_Weld"
  2326. w12.Part0 = p12
  2327. 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)
  2328. w12.Part1 = p13
  2329. 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)
  2330. w13 = Instance.new("Weld", p13)
  2331. w13.Name = "Part_Weld"
  2332. w13.Part0 = p13
  2333. 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)
  2334. w13.Part1 = p14
  2335. 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)
  2336. w14 = Instance.new("Weld", p14)
  2337. w14.Name = "Part_Weld"
  2338. w14.Part0 = p14
  2339. 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)
  2340. w14.Part1 = p15
  2341. 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)
  2342. w15 = Instance.new("Weld", p15)
  2343. w15.Name = "Part_Weld"
  2344. w15.Part0 = p15
  2345. 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)
  2346. w15.Part1 = p16
  2347. 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)
  2348. w16 = Instance.new("Weld", p16)
  2349. w16.Name = "Part_Weld"
  2350. w16.Part0 = p16
  2351. 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)
  2352. w16.Part1 = p17
  2353. 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)
  2354. w17 = Instance.new("Weld", p17)
  2355. w17.Name = "Part_Weld"
  2356. w17.Part0 = p17
  2357. 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)
  2358. w17.Part1 = p18
  2359. 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)
  2360. w18 = Instance.new("Weld", p18)
  2361. w18.Name = "Part_Weld"
  2362. w18.Part0 = p18
  2363. 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)
  2364. w18.Part1 = p19
  2365. 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)
  2366. w19 = Instance.new("Weld", p19)
  2367. w19.Name = "Part_Weld"
  2368. w19.Part0 = p19
  2369. 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)
  2370. w19.Part1 = p20
  2371. 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)
  2372. w20 = Instance.new("Weld", p20)
  2373. w20.Name = "Part_Weld"
  2374. w20.Part0 = p20
  2375. 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)
  2376. w20.Part1 = p21
  2377. 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)
  2378. w21 = Instance.new("Weld", p21)
  2379. w21.Name = "Part_Weld"
  2380. w21.Part0 = p21
  2381. 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)
  2382. w21.Part1 = p22
  2383. 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)
  2384. w22 = Instance.new("Weld", p22)
  2385. w22.Name = "Wedge_Weld"
  2386. w22.Part0 = p22
  2387. 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)
  2388. m.Parent = torso
  2389. m:MakeJoints()
  2390. ----------------------------------------------------
  2391. local cor5 = Instance.new("Part", torso.UpperTorso)
  2392. cor5.Name = "Thingy"
  2393. cor5.Locked = true
  2394. cor5.BottomSurface = 0
  2395. cor5.CanCollide = false
  2396. cor5.Size = Vector3.new(2, 1, 1)
  2397. cor5.Transparency = 1
  2398. cor5.TopSurface = 0
  2399. corw2 = Instance.new("Weld", cor5)
  2400. corw2.Part0 = torso
  2401. corw2.Part1 = cor5
  2402. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2403. corw2.C1 = CFrame.new(0, 0, 0)
  2404. weld2 = Instance.new("Weld", torso.UpperTorso)
  2405. weld2.Part0 = cor5
  2406. weld2.Part1 = p11
  2407. weld2.C0 = CFrame.new(0, 0, 0)
  2408. ----------------------------------------------------
  2409. local m = Instance.new("Model")
  2410. m.Name = "RightLeg"
  2411. p1 = Instance.new("Part", m)
  2412. p1.BrickColor = BrickColor.new("Really black")
  2413. p1.Material = Enum.Material.Neon
  2414. p1.FormFactor = Enum.FormFactor.Custom
  2415. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2416. 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)
  2417. p1.CanCollide = false
  2418. p1.Locked = true
  2419. p1.BottomSurface = Enum.SurfaceType.Smooth
  2420. p1.TopSurface = Enum.SurfaceType.Smooth
  2421. b1 = Instance.new("SpecialMesh", p1)
  2422. b1.MeshType = Enum.MeshType.Sphere
  2423. b1.Name = "Mesh"
  2424. p2 = Instance.new("Part", m)
  2425. p2.BrickColor = BrickColor.new("Really black")
  2426. p2.Material = Enum.Material.Neon
  2427. p2.FormFactor = Enum.FormFactor.Custom
  2428. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2429. 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)
  2430. p2.CanCollide = false
  2431. p2.Locked = true
  2432. p2.BottomSurface = Enum.SurfaceType.Smooth
  2433. p2.TopSurface = Enum.SurfaceType.Smooth
  2434. b2 = Instance.new("SpecialMesh", p2)
  2435. b2.MeshType = Enum.MeshType.Sphere
  2436. b2.Name = "Mesh"
  2437. p3 = Instance.new("Part", m)
  2438. p3.BrickColor = BrickColor.new("Bright blue")
  2439. p3.Material = Enum.Material.Neon
  2440. p3.FormFactor = Enum.FormFactor.Custom
  2441. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2442. 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)
  2443. p3.CanCollide = false
  2444. p3.Locked = true
  2445. p3.BottomSurface = Enum.SurfaceType.Smooth
  2446. p3.TopSurface = Enum.SurfaceType.Smooth
  2447. p4 = Instance.new("Part", m)
  2448. p4.BrickColor = BrickColor.new("Really black")
  2449. p4.Material = Enum.Material.Neon
  2450. p4.FormFactor = Enum.FormFactor.Custom
  2451. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2452. 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)
  2453. p4.CanCollide = false
  2454. p4.Locked = true
  2455. p4.BottomSurface = Enum.SurfaceType.Smooth
  2456. p4.TopSurface = Enum.SurfaceType.Smooth
  2457. b3 = Instance.new("SpecialMesh", p4)
  2458. b3.MeshType = Enum.MeshType.Sphere
  2459. b3.Name = "Mesh"
  2460. p5 = Instance.new("Part", m)
  2461. p5.BrickColor = BrickColor.new("Bright blue")
  2462. p5.Material = Enum.Material.Neon
  2463. p5.FormFactor = Enum.FormFactor.Custom
  2464. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2465. 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)
  2466. p5.CanCollide = false
  2467. p5.Locked = true
  2468. p5.BottomSurface = Enum.SurfaceType.Smooth
  2469. p5.TopSurface = Enum.SurfaceType.Smooth
  2470. p6 = Instance.new("Part", m)
  2471. p6.BrickColor = BrickColor.new("Bright blue")
  2472. p6.Material = Enum.Material.Neon
  2473. p6.FormFactor = Enum.FormFactor.Custom
  2474. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2475. 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)
  2476. p6.CanCollide = false
  2477. p6.Locked = true
  2478. p6.BottomSurface = Enum.SurfaceType.Smooth
  2479. p6.TopSurface = Enum.SurfaceType.Smooth
  2480. p7 = Instance.new("Part", m)
  2481. p7.BrickColor = BrickColor.new("Really black")
  2482. p7.Material = Enum.Material.Metal
  2483. p7.Name = "Main"
  2484. p7.FormFactor = Enum.FormFactor.Custom
  2485. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2486. 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)
  2487. p7.CanCollide = false
  2488. p7.Locked = true
  2489. p7.BottomSurface = Enum.SurfaceType.Smooth
  2490. p7.TopSurface = Enum.SurfaceType.Smooth
  2491. p8 = Instance.new("Part", m)
  2492. p8.BrickColor = BrickColor.new("Bright blue")
  2493. p8.Material = Enum.Material.Neon
  2494. p8.FormFactor = Enum.FormFactor.Custom
  2495. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2496. 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)
  2497. p8.CanCollide = false
  2498. p8.Locked = true
  2499. p8.BottomSurface = Enum.SurfaceType.Smooth
  2500. p8.TopSurface = Enum.SurfaceType.Smooth
  2501. p9 = Instance.new("WedgePart", m)
  2502. p9.BrickColor = BrickColor.new("Bright blue")
  2503. p9.Material = Enum.Material.Neon
  2504. p9.Name = "Wedge"
  2505. p9.FormFactor = Enum.FormFactor.Custom
  2506. p9.Size = Vector3.new(1, 1.19999981, 4)
  2507. 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)
  2508. p9.CanCollide = false
  2509. p9.Locked = true
  2510. p9.TopSurface = Enum.SurfaceType.Smooth
  2511. b4 = Instance.new("SpecialMesh", p9)
  2512. b4.MeshType = Enum.MeshType.Wedge
  2513. b4.Name = "Mesh"
  2514. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2515. p10 = Instance.new("Part", m)
  2516. p10.BrickColor = BrickColor.new("Really black")
  2517. p10.Material = Enum.Material.Neon
  2518. p10.FormFactor = Enum.FormFactor.Custom
  2519. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2520. 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)
  2521. p10.CanCollide = false
  2522. p10.Locked = true
  2523. p10.BottomSurface = Enum.SurfaceType.Smooth
  2524. p10.TopSurface = Enum.SurfaceType.Smooth
  2525. b5 = Instance.new("SpecialMesh", p10)
  2526. b5.MeshType = Enum.MeshType.Sphere
  2527. b5.Name = "Mesh"
  2528. p11 = Instance.new("Part", m)
  2529. p11.BrickColor = BrickColor.new("Really black")
  2530. p11.Material = Enum.Material.Neon
  2531. p11.FormFactor = Enum.FormFactor.Custom
  2532. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2533. 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)
  2534. p11.CanCollide = false
  2535. p11.Locked = true
  2536. p11.BottomSurface = Enum.SurfaceType.Smooth
  2537. p11.TopSurface = Enum.SurfaceType.Smooth
  2538. b6 = Instance.new("SpecialMesh", p11)
  2539. b6.MeshType = Enum.MeshType.Sphere
  2540. b6.Name = "Mesh"
  2541. p12 = Instance.new("Part", m)
  2542. p12.BrickColor = BrickColor.new("Bright blue")
  2543. p12.Material = Enum.Material.Neon
  2544. p12.FormFactor = Enum.FormFactor.Custom
  2545. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2546. 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)
  2547. p12.CanCollide = false
  2548. p12.Locked = true
  2549. p12.BottomSurface = Enum.SurfaceType.Smooth
  2550. p12.TopSurface = Enum.SurfaceType.Smooth
  2551. p13 = Instance.new("Part", m)
  2552. p13.BrickColor = BrickColor.new("Really black")
  2553. p13.Material = Enum.Material.Neon
  2554. p13.FormFactor = Enum.FormFactor.Custom
  2555. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2556. 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)
  2557. p13.CanCollide = false
  2558. p13.Locked = true
  2559. p13.BottomSurface = Enum.SurfaceType.Smooth
  2560. p13.TopSurface = Enum.SurfaceType.Smooth
  2561. b7 = Instance.new("SpecialMesh", p13)
  2562. b7.MeshType = Enum.MeshType.Sphere
  2563. b7.Name = "Mesh"
  2564. p14 = Instance.new("WedgePart", m)
  2565. p14.BrickColor = BrickColor.new("Bright blue")
  2566. p14.Material = Enum.Material.Neon
  2567. p14.Name = "Wedge"
  2568. p14.FormFactor = Enum.FormFactor.Custom
  2569. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2570. 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)
  2571. p14.CanCollide = false
  2572. p14.Locked = true
  2573. p14.TopSurface = Enum.SurfaceType.Smooth
  2574. b8 = Instance.new("SpecialMesh", p14)
  2575. b8.MeshType = Enum.MeshType.Wedge
  2576. b8.Name = "Mesh"
  2577. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2578. p15 = Instance.new("WedgePart", m)
  2579. p15.BrickColor = BrickColor.new("Bright blue")
  2580. p15.Material = Enum.Material.Neon
  2581. p15.Name = "Wedge"
  2582. p15.FormFactor = Enum.FormFactor.Custom
  2583. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2584. 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)
  2585. p15.CanCollide = false
  2586. p15.Locked = true
  2587. p15.TopSurface = Enum.SurfaceType.Smooth
  2588. b9 = Instance.new("SpecialMesh", p15)
  2589. b9.MeshType = Enum.MeshType.Wedge
  2590. b9.Name = "Mesh"
  2591. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2592. p16 = Instance.new("WedgePart", m)
  2593. p16.BrickColor = BrickColor.new("Bright blue")
  2594. p16.Material = Enum.Material.Neon
  2595. p16.Name = "Wedge"
  2596. p16.FormFactor = Enum.FormFactor.Custom
  2597. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2598. 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)
  2599. p16.CanCollide = false
  2600. p16.Locked = true
  2601. p16.TopSurface = Enum.SurfaceType.Smooth
  2602. b10 = Instance.new("SpecialMesh", p16)
  2603. b10.MeshType = Enum.MeshType.Wedge
  2604. b10.Name = "Mesh"
  2605. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2606. w1 = Instance.new("Weld", p1)
  2607. w1.Name = "Part_Weld"
  2608. w1.Part0 = p1
  2609. 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)
  2610. w1.Part1 = p2
  2611. 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)
  2612. w2 = Instance.new("Weld", p2)
  2613. w2.Name = "Part_Weld"
  2614. w2.Part0 = p2
  2615. 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)
  2616. w2.Part1 = p3
  2617. 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)
  2618. w3 = Instance.new("Weld", p3)
  2619. w3.Name = "Part_Weld"
  2620. w3.Part0 = p3
  2621. 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)
  2622. w3.Part1 = p4
  2623. 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)
  2624. w4 = Instance.new("Weld", p4)
  2625. w4.Name = "Part_Weld"
  2626. w4.Part0 = p4
  2627. 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)
  2628. w4.Part1 = p5
  2629. 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)
  2630. w5 = Instance.new("Weld", p5)
  2631. w5.Name = "Part_Weld"
  2632. w5.Part0 = p5
  2633. 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)
  2634. w5.Part1 = p6
  2635. 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)
  2636. w6 = Instance.new("Weld", p6)
  2637. w6.Name = "Part_Weld"
  2638. w6.Part0 = p6
  2639. 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)
  2640. w6.Part1 = p7
  2641. 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)
  2642. w7 = Instance.new("Weld", p7)
  2643. w7.Name = "Part_Weld"
  2644. w7.Part0 = p7
  2645. 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)
  2646. w7.Part1 = p8
  2647. 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)
  2648. w8 = Instance.new("Weld", p8)
  2649. w8.Name = "Wedge_Weld"
  2650. w8.Part0 = p8
  2651. 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)
  2652. w8.Part1 = p9
  2653. 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)
  2654. w9 = Instance.new("Weld", p9)
  2655. w9.Name = "Part_Weld"
  2656. w9.Part0 = p9
  2657. 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)
  2658. w9.Part1 = p10
  2659. 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)
  2660. w10 = Instance.new("Weld", p10)
  2661. w10.Name = "Part_Weld"
  2662. w10.Part0 = p10
  2663. 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)
  2664. w10.Part1 = p11
  2665. 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)
  2666. w11 = Instance.new("Weld", p11)
  2667. w11.Name = "Part_Weld"
  2668. w11.Part0 = p11
  2669. 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)
  2670. w11.Part1 = p12
  2671. 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)
  2672. w12 = Instance.new("Weld", p12)
  2673. w12.Name = "Part_Weld"
  2674. w12.Part0 = p12
  2675. 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)
  2676. w12.Part1 = p13
  2677. 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)
  2678. w13 = Instance.new("Weld", p13)
  2679. w13.Name = "Wedge_Weld"
  2680. w13.Part0 = p13
  2681. 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)
  2682. w13.Part1 = p14
  2683. 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)
  2684. w14 = Instance.new("Weld", p14)
  2685. w14.Name = "Wedge_Weld"
  2686. w14.Part0 = p14
  2687. 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)
  2688. w14.Part1 = p15
  2689. 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)
  2690. w15 = Instance.new("Weld", p15)
  2691. w15.Name = "Wedge_Weld"
  2692. w15.Part0 = p15
  2693. 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)
  2694. w15.Part1 = p16
  2695. 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)
  2696. m.Parent = rleg
  2697. m:MakeJoints()
  2698. ----------------------------------------------------
  2699. local cor6 = Instance.new("Part", rleg.RightLeg)
  2700. cor6.Name = "Thingy"
  2701. cor6.Locked = true
  2702. cor6.BottomSurface = 0
  2703. cor6.CanCollide = false
  2704. cor6.Size = Vector3.new(2, 1, 1)
  2705. cor6.Transparency = 1
  2706. cor6.TopSurface = 0
  2707. corw2 = Instance.new("Weld", cor6)
  2708. corw2.Part0 = rleg
  2709. corw2.Part1 = cor6
  2710. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2711. corw2.C1 = CFrame.new(0, 0, 0)
  2712. weld2 = Instance.new("Weld", rleg.RightLeg)
  2713. weld2.Part0 = cor6
  2714. weld2.Part1 = p7
  2715. weld2.C0 = CFrame.new(0, 0, 0)
  2716. ----------------------------------------------------
  2717. local m = Instance.new("Model")
  2718. m.Name = "LeftLeg"
  2719. p1 = Instance.new("WedgePart", m)
  2720. p1.BrickColor = BrickColor.new("Bright blue")
  2721. p1.Material = Enum.Material.Neon
  2722. p1.Name = "Wedge"
  2723. p1.FormFactor = Enum.FormFactor.Custom
  2724. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2725. 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)
  2726. p1.CanCollide = false
  2727. p1.Locked = true
  2728. p1.TopSurface = Enum.SurfaceType.Smooth
  2729. b1 = Instance.new("SpecialMesh", p1)
  2730. b1.MeshType = Enum.MeshType.Wedge
  2731. b1.Name = "Mesh"
  2732. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2733. p2 = Instance.new("WedgePart", m)
  2734. p2.BrickColor = BrickColor.new("Bright blue")
  2735. p2.Material = Enum.Material.Neon
  2736. p2.Name = "Wedge"
  2737. p2.FormFactor = Enum.FormFactor.Custom
  2738. p2.Size = Vector3.new(1, 1.19999981, 4)
  2739. 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)
  2740. p2.CanCollide = false
  2741. p2.Locked = true
  2742. p2.TopSurface = Enum.SurfaceType.Smooth
  2743. b2 = Instance.new("SpecialMesh", p2)
  2744. b2.MeshType = Enum.MeshType.Wedge
  2745. b2.Name = "Mesh"
  2746. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2747. p3 = Instance.new("Part", m)
  2748. p3.BrickColor = BrickColor.new("Really black")
  2749. p3.Material = Enum.Material.Metal
  2750. p3.Name = "Main"
  2751. p3.FormFactor = Enum.FormFactor.Custom
  2752. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2753. 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)
  2754. p3.CanCollide = false
  2755. p3.Locked = true
  2756. p3.BottomSurface = Enum.SurfaceType.Smooth
  2757. p3.TopSurface = Enum.SurfaceType.Smooth
  2758. p4 = Instance.new("Part", m)
  2759. p4.BrickColor = BrickColor.new("Really black")
  2760. p4.Material = Enum.Material.Neon
  2761. p4.FormFactor = Enum.FormFactor.Custom
  2762. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2763. 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)
  2764. p4.CanCollide = false
  2765. p4.Locked = true
  2766. p4.BottomSurface = Enum.SurfaceType.Smooth
  2767. p4.TopSurface = Enum.SurfaceType.Smooth
  2768. b3 = Instance.new("SpecialMesh", p4)
  2769. b3.MeshType = Enum.MeshType.Sphere
  2770. b3.Name = "Mesh"
  2771. p5 = Instance.new("WedgePart", m)
  2772. p5.BrickColor = BrickColor.new("Bright blue")
  2773. p5.Material = Enum.Material.Neon
  2774. p5.Name = "Wedge"
  2775. p5.FormFactor = Enum.FormFactor.Custom
  2776. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2777. 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)
  2778. p5.CanCollide = false
  2779. p5.Locked = true
  2780. p5.TopSurface = Enum.SurfaceType.Smooth
  2781. b4 = Instance.new("SpecialMesh", p5)
  2782. b4.MeshType = Enum.MeshType.Wedge
  2783. b4.Name = "Mesh"
  2784. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2785. p6 = Instance.new("Part", m)
  2786. p6.BrickColor = BrickColor.new("Bright blue")
  2787. p6.Material = Enum.Material.Neon
  2788. p6.FormFactor = Enum.FormFactor.Custom
  2789. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2790. 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)
  2791. p6.CanCollide = false
  2792. p6.Locked = true
  2793. p6.BottomSurface = Enum.SurfaceType.Smooth
  2794. p6.TopSurface = Enum.SurfaceType.Smooth
  2795. p7 = Instance.new("Part", m)
  2796. p7.BrickColor = BrickColor.new("Bright blue")
  2797. p7.Material = Enum.Material.Neon
  2798. p7.FormFactor = Enum.FormFactor.Custom
  2799. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2800. 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)
  2801. p7.CanCollide = false
  2802. p7.Locked = true
  2803. p7.BottomSurface = Enum.SurfaceType.Smooth
  2804. p7.TopSurface = Enum.SurfaceType.Smooth
  2805. p8 = Instance.new("Part", m)
  2806. p8.BrickColor = BrickColor.new("Really black")
  2807. p8.Material = Enum.Material.Neon
  2808. p8.FormFactor = Enum.FormFactor.Custom
  2809. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2810. 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)
  2811. p8.CanCollide = false
  2812. p8.Locked = true
  2813. p8.BottomSurface = Enum.SurfaceType.Smooth
  2814. p8.TopSurface = Enum.SurfaceType.Smooth
  2815. b5 = Instance.new("SpecialMesh", p8)
  2816. b5.MeshType = Enum.MeshType.Sphere
  2817. b5.Name = "Mesh"
  2818. p9 = Instance.new("Part", m)
  2819. p9.BrickColor = BrickColor.new("Really black")
  2820. p9.Material = Enum.Material.Neon
  2821. p9.FormFactor = Enum.FormFactor.Custom
  2822. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2823. 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)
  2824. p9.CanCollide = false
  2825. p9.Locked = true
  2826. p9.BottomSurface = Enum.SurfaceType.Smooth
  2827. p9.TopSurface = Enum.SurfaceType.Smooth
  2828. b6 = Instance.new("SpecialMesh", p9)
  2829. b6.MeshType = Enum.MeshType.Sphere
  2830. b6.Name = "Mesh"
  2831. p10 = Instance.new("Part", m)
  2832. p10.BrickColor = BrickColor.new("Bright blue")
  2833. p10.Material = Enum.Material.Neon
  2834. p10.FormFactor = Enum.FormFactor.Custom
  2835. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2836. 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)
  2837. p10.CanCollide = false
  2838. p10.Locked = true
  2839. p10.BottomSurface = Enum.SurfaceType.Smooth
  2840. p10.TopSurface = Enum.SurfaceType.Smooth
  2841. p11 = Instance.new("Part", m)
  2842. p11.BrickColor = BrickColor.new("Bright blue")
  2843. p11.Material = Enum.Material.Neon
  2844. p11.FormFactor = Enum.FormFactor.Custom
  2845. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2846. 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)
  2847. p11.CanCollide = false
  2848. p11.Locked = true
  2849. p11.BottomSurface = Enum.SurfaceType.Smooth
  2850. p11.TopSurface = Enum.SurfaceType.Smooth
  2851. p12 = Instance.new("WedgePart", m)
  2852. p12.BrickColor = BrickColor.new("Bright blue")
  2853. p12.Material = Enum.Material.Neon
  2854. p12.Name = "Wedge"
  2855. p12.FormFactor = Enum.FormFactor.Custom
  2856. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2857. 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)
  2858. p12.CanCollide = false
  2859. p12.Locked = true
  2860. p12.TopSurface = Enum.SurfaceType.Smooth
  2861. b7 = Instance.new("SpecialMesh", p12)
  2862. b7.MeshType = Enum.MeshType.Wedge
  2863. b7.Name = "Mesh"
  2864. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2865. p13 = Instance.new("Part", m)
  2866. p13.BrickColor = BrickColor.new("Really black")
  2867. p13.Material = Enum.Material.Neon
  2868. p13.FormFactor = Enum.FormFactor.Custom
  2869. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2870. 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)
  2871. p13.CanCollide = false
  2872. p13.Locked = true
  2873. p13.BottomSurface = Enum.SurfaceType.Smooth
  2874. p13.TopSurface = Enum.SurfaceType.Smooth
  2875. b8 = Instance.new("SpecialMesh", p13)
  2876. b8.MeshType = Enum.MeshType.Sphere
  2877. b8.Name = "Mesh"
  2878. p14 = Instance.new("Part", m)
  2879. p14.BrickColor = BrickColor.new("Really black")
  2880. p14.Material = Enum.Material.Neon
  2881. p14.FormFactor = Enum.FormFactor.Custom
  2882. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2883. 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)
  2884. p14.CanCollide = false
  2885. p14.Locked = true
  2886. p14.BottomSurface = Enum.SurfaceType.Smooth
  2887. p14.TopSurface = Enum.SurfaceType.Smooth
  2888. b9 = Instance.new("SpecialMesh", p14)
  2889. b9.MeshType = Enum.MeshType.Sphere
  2890. b9.Name = "Mesh"
  2891. w1 = Instance.new("Weld", p1)
  2892. w1.Name = "Wedge_Weld"
  2893. w1.Part0 = p1
  2894. 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)
  2895. w1.Part1 = p2
  2896. 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)
  2897. w2 = Instance.new("Weld", p2)
  2898. w2.Name = "Part_Weld"
  2899. w2.Part0 = p2
  2900. 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)
  2901. w2.Part1 = p3
  2902. 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)
  2903. w3 = Instance.new("Weld", p3)
  2904. w3.Name = "Part_Weld"
  2905. w3.Part0 = p3
  2906. 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)
  2907. w3.Part1 = p4
  2908. 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)
  2909. w4 = Instance.new("Weld", p4)
  2910. w4.Name = "Wedge_Weld"
  2911. w4.Part0 = p4
  2912. 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)
  2913. w4.Part1 = p5
  2914. 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)
  2915. w5 = Instance.new("Weld", p5)
  2916. w5.Name = "Part_Weld"
  2917. w5.Part0 = p5
  2918. 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)
  2919. w5.Part1 = p6
  2920. 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)
  2921. w6 = Instance.new("Weld", p6)
  2922. w6.Name = "Part_Weld"
  2923. w6.Part0 = p6
  2924. 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)
  2925. w6.Part1 = p7
  2926. 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)
  2927. w7 = Instance.new("Weld", p7)
  2928. w7.Name = "Part_Weld"
  2929. w7.Part0 = p7
  2930. 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)
  2931. w7.Part1 = p8
  2932. 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)
  2933. w8 = Instance.new("Weld", p8)
  2934. w8.Name = "Part_Weld"
  2935. w8.Part0 = p8
  2936. 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)
  2937. w8.Part1 = p9
  2938. 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)
  2939. w9 = Instance.new("Weld", p9)
  2940. w9.Name = "Part_Weld"
  2941. w9.Part0 = p9
  2942. 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)
  2943. w9.Part1 = p10
  2944. 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)
  2945. w10 = Instance.new("Weld", p10)
  2946. w10.Name = "Part_Weld"
  2947. w10.Part0 = p10
  2948. 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)
  2949. w10.Part1 = p11
  2950. 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)
  2951. w11 = Instance.new("Weld", p11)
  2952. w11.Name = "Wedge_Weld"
  2953. w11.Part0 = p11
  2954. 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)
  2955. w11.Part1 = p12
  2956. 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)
  2957. w12 = Instance.new("Weld", p12)
  2958. w12.Name = "Part_Weld"
  2959. w12.Part0 = p12
  2960. 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)
  2961. w12.Part1 = p13
  2962. 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)
  2963. w13 = Instance.new("Weld", p13)
  2964. w13.Name = "Part_Weld"
  2965. w13.Part0 = p13
  2966. 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)
  2967. w13.Part1 = p14
  2968. 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)
  2969. w14 = Instance.new("Weld", p14)
  2970. w14.Name = "Wedge_Weld"
  2971. w14.Part0 = p14
  2972. 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)
  2973. m.Parent = lleg
  2974. m:MakeJoints()
  2975. ----------------------------------------------------
  2976. local cor7 = Instance.new("Part", lleg.LeftLeg)
  2977. cor7.Name = "Thingy"
  2978. cor7.Locked = true
  2979. cor7.BottomSurface = 0
  2980. cor7.CanCollide = false
  2981. cor7.Size = Vector3.new(2, 1, 1)
  2982. cor7.Transparency = 1
  2983. cor7.TopSurface = 0
  2984. corw2 = Instance.new("Weld", cor7)
  2985. corw2.Part0 = lleg
  2986. corw2.Part1 = cor7
  2987. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2988. corw2.C1 = CFrame.new(0, 0, 0)
  2989. weld2 = Instance.new("Weld", lleg.LeftLeg)
  2990. weld2.Part0 = cor7
  2991. weld2.Part1 = p3
  2992. weld2.C0 = CFrame.new(0, 0, 0)
  2993. ----------------------------------------------------
  2994. function weld5(part0, part1, c0, c1)
  2995.     weeld=Instance.new("Weld", part0)
  2996.     weeld.Part0=part0
  2997.     weeld.Part1=part1
  2998.     weeld.C0=c0
  2999.     weeld.C1=c1
  3000.     return weeld
  3001. end
  3002. ----------------------------------------------------
  3003. function newRay(start,face,range,wat)
  3004.         local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3005.         hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3006.         return rey,hit,pos
  3007. end
  3008. ----------------------------------------------------
  3009. mod5 = Instance.new("Model",char)
  3010.  
  3011. function FindNearestTorso(Position,Distance,SinglePlayer)
  3012.     if SinglePlayer then return(SinglePlayer.UpperTorso.CFrame.p -Position).magnitude < Distance end
  3013.         local List = {}
  3014.         for i,v in pairs(workspace:GetChildren())do
  3015.             if v:IsA("Model")then
  3016.                 if v:findFirstChild("UpperTorso")then
  3017.                     if v ~= char then
  3018.                         if(v.UpperTorso.Position -Position).magnitude <= Distance then
  3019.                             table.insert(List,v)
  3020.                         end
  3021.                     end
  3022.                 end
  3023.             end
  3024.         end
  3025.     return List
  3026. end
  3027.  
  3028. function Landing()
  3029.     part=Instance.new('Part',mod5)
  3030.     part.Anchored=true
  3031.     part.CanCollide=false
  3032.     part.FormFactor='Custom'
  3033.     part.Size=Vector3.new(.2,.2,.2)
  3034.     part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3035.     part.Transparency=.7
  3036.     part.BrickColor=BrickColor.new('Really black')
  3037.         part2=part:clone()
  3038.         part2.Parent = mod5
  3039.         part2.BrickColor=BrickColor.new('Bright blue')
  3040.     mesh=Instance.new('SpecialMesh',part)
  3041.     mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3042.     mesh.Scale=Vector3.new(10,5,10)
  3043.         mesh2=mesh:clone()
  3044.         mesh2.Parent=part2
  3045.         mesh2.Scale=Vector3.new(12, 6, 12)
  3046.  
  3047.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3048.         if v:FindFirstChild('Humanoid') then
  3049.             v.Humanoid:TakeDamage(math.random(30,50))
  3050.             v.Humanoid.PlatformStand = false
  3051.             v:FindFirstChild("UpperTorso").Velocity = hed.CFrame.lookVector * 30
  3052.         end
  3053.     end
  3054.  
  3055.     coroutine.resume(coroutine.create(function()
  3056.         for i=0,3.8,0.05 do
  3057.             wait()
  3058.             part.CFrame=part.CFrame
  3059.             part.Transparency=i
  3060.                         part2.CFrame=part2.CFrame
  3061.                         part2.Transparency=i
  3062.             mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3063.                         mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3064.             end
  3065.         part.Parent = nil
  3066.     end))
  3067. end
  3068. ----------------------------------------------------
  3069. mod4 = Instance.new("Model",char)
  3070.  
  3071. ptez = {0.7, 0.8, 0.9, 1}
  3072.  
  3073. function FindNearestTorso(Position,Distance,SinglePlayer)
  3074.     if SinglePlayer then return(SinglePlayer.UpperTorso.CFrame.p -Position).magnitude < Distance end
  3075.         local List = {}
  3076.         for i,v in pairs(workspace:GetChildren())do
  3077.             if v:IsA("Model")then
  3078.                 if v:findFirstChild("UpperTorso")then
  3079.                     if v ~= char then
  3080.                         if(v.UpperTorso.Position -Position).magnitude <= Distance then
  3081.                             table.insert(List,v)
  3082.                         end
  3083.                     end
  3084.                 end
  3085.             end
  3086.         end
  3087.     return List
  3088. end
  3089.  
  3090. function GroundPound()
  3091.     part=Instance.new('Part',mod4)
  3092.     part.Anchored=true
  3093.     part.CanCollide=false
  3094.     part.FormFactor='Custom'
  3095.     part.Size=Vector3.new(.2,.2,.2)
  3096.     part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3097.     part.Transparency=.7
  3098.     part.BrickColor=BrickColor.new('Really black')
  3099.     mesh=Instance.new('SpecialMesh',part)
  3100.     mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3101.     mesh.Scale=Vector3.new(3,3,3)
  3102.     part2=Instance.new('Part',mod4)
  3103.     part2.Anchored=true
  3104.     part2.CanCollide=false
  3105.     part2.FormFactor='Custom'
  3106.     part2.Size=Vector3.new(.2,.2,.2)
  3107.     part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3108.     part2.Transparency=.7
  3109.     part2.BrickColor=BrickColor.new('Really red')
  3110.     mesh2=Instance.new('SpecialMesh',part2)
  3111.     mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3112.     mesh2.Scale=Vector3.new(3,1.5,3)
  3113.     x = Instance.new("Sound",char)
  3114.     x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  3115.     x.Pitch = ptez[math.random(1,#ptez)]
  3116.     x.Volume = 1
  3117.     wait(.1)
  3118.     x:Play()
  3119.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3120.         if v:FindFirstChild('Humanoid') then
  3121.             v.Humanoid:TakeDamage(math.random(20,30))
  3122.         end
  3123.     end
  3124.     coroutine.resume(coroutine.create(function()
  3125.         for i=0,0.62,0.13 do
  3126.             wait()
  3127.             part.CFrame=part.CFrame
  3128.             part.Transparency=i
  3129.             mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3130.             part2.CFrame=part2.CFrame
  3131.             part2.Transparency=i
  3132.             mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3133.             end
  3134.         part.Parent=nil
  3135.         part2.Parent=nil
  3136.         wait(1)
  3137.         x:Destroy()
  3138.     end))
  3139. end
  3140. ----------------------------------------------------
  3141. mod=Instance.new('Model',char)
  3142.  
  3143. function charge()
  3144.     hed.Velocity=hed.CFrame.lookVector*200
  3145.     part=Instance.new('Part',mod)
  3146.     part.Anchored=true
  3147.     part.CanCollide=false
  3148.     part.FormFactor='Custom'
  3149.     part.Size=Vector3.new(.2,.2,.2)
  3150.     part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3151.     part.Transparency=.7
  3152.     part.BrickColor=BrickColor.new('Black')
  3153.     mesh=Instance.new('SpecialMesh',part)
  3154.     mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3155.     mesh.Scale=Vector3.new(10,5,10)
  3156.     part2=part:clone()
  3157.     part2.Parent=mod
  3158.     part2.BrickColor=BrickColor.new('Bright red')
  3159.     mesh2=mesh:clone()
  3160.     mesh2.Parent=part2
  3161.     mesh2.Scale=Vector3.new(20,10,20)
  3162.     part3=part2:clone()
  3163.     part3.Parent = mod
  3164.     part3.BrickColor=BrickColor.new('Really black')
  3165.     mesh3=mesh2:clone()
  3166.     mesh2.Parent=part3
  3167.     mesh3.Scale=Vector3.new(30,15,30)
  3168.     coroutine.resume(coroutine.create(function()
  3169.         for i=0,1,0.1 do
  3170.             wait()
  3171.             part.CFrame=part.CFrame
  3172.             part.Transparency=i
  3173.             mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3174.             part2.CFrame=part2.CFrame
  3175.             part2.Transparency=i
  3176.             mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3177.             part3.CFrame=part3.CFrame
  3178.             part3.Transparency=i
  3179.             mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3180.             end
  3181.         part.Parent=nil
  3182.         part2.Parent=nil
  3183.         part3.Parent = nil
  3184.     end))
  3185. end
  3186. ----------------------------------------------------
  3187. function FindNearestTorso(Position,Distance,SinglePlayer)
  3188.     if SinglePlayer then return(SinglePlayer.UpperTorso.CFrame.p -Position).magnitude < Distance end
  3189.         local List = {}
  3190.         for i,v in pairs(workspace:GetChildren())do
  3191.             if v:IsA("Model")then
  3192.                 if v:findFirstChild("UpperTorso")then
  3193.                     if v ~= char then
  3194.                         if(v.UpperTorso.Position -Position).magnitude <= Distance then
  3195.                             table.insert(List,v)
  3196.                         end
  3197.                     end
  3198.                 end
  3199.             end
  3200.         end
  3201.     return List
  3202. end
  3203.  
  3204. mod3 = Instance.new("Model",rleg)
  3205.  
  3206. function Stomp()
  3207.     part=Instance.new('Part',mod3)
  3208.     part.Anchored=true
  3209.     part.CanCollide=false
  3210.     part.FormFactor='Custom'
  3211.     part.Size=Vector3.new(.2,.2,.2)
  3212.     part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3213.     part.Transparency=.7
  3214.     part.BrickColor=BrickColor.new('Bright green')
  3215.     mesh=Instance.new('SpecialMesh',part)
  3216.     mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3217.     mesh.Scale=Vector3.new(25,25,25)
  3218.     part2=part:clone()
  3219.     part2.Parent=mod3
  3220.     part2.BrickColor=BrickColor.new('Bright green')
  3221.     mesh2=mesh:clone()
  3222.     mesh2.Parent=part2
  3223.     mesh2.Scale=Vector3.new(15,15,15)
  3224.     part3=part:clone()
  3225.     part3.Parent=mod3
  3226.     part3.TopSurface=0
  3227.     part3.BottomSurface=0
  3228.     part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3229.     mesh3=Instance.new('SpecialMesh',part3)
  3230.     mesh3.MeshType = 3
  3231.     mesh3.Scale=Vector3.new(12,12,12)
  3232.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3233.         if v:FindFirstChild('Humanoid') then
  3234.             v.Humanoid:TakeDamage(math.random(40,90))
  3235.             v.Humanoid.PlatformStand = false
  3236.             v:FindFirstChild("UpperTorso").Velocity = hed.CFrame.lookVector * 100
  3237.         end
  3238.     end
  3239.     coroutine.resume(coroutine.create(function()
  3240.         for i=0,3.8,0.05 do
  3241.             wait()
  3242.             part.CFrame=part.CFrame
  3243.             part.Transparency=i
  3244.             mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3245.             part2.CFrame=part2.CFrame
  3246.             part2.Transparency=i
  3247.             mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3248.             part3.CFrame=part3.CFrame
  3249.             part3.Transparency=i
  3250.             mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3251.         end
  3252.     end))
  3253. end
  3254. ----------------------------------------------------
  3255.  
  3256. local acos = math.acos
  3257. local sqrt = math.sqrt
  3258. local Vec3 = Vector3.new
  3259. local fromAxisAngle = CFrame.fromAxisAngle
  3260.  
  3261. local function toAxisAngle(CFr)
  3262.         local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3263.         local Angle = math.acos((R00+R11+R22-1)/2)
  3264.         local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3265.         A = A == 0 and 0.00001 or A
  3266.         local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3267.         B = B == 0 and 0.00001 or B
  3268.         local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3269.         C = C == 0 and 0.00001 or C
  3270.         local x = (R21-R12)/sqrt(A)
  3271.         local y = (R02-R20)/sqrt(B)
  3272.         local z = (R10-R01)/sqrt(C)
  3273.         return Vec3(x,y,z),Angle
  3274. end
  3275.  
  3276. function ApplyTrig(Num,Func)
  3277.         local Min,Max = Func(0),Func(1)
  3278.         local i = Func(Num)
  3279.         return (i-Min)/(Max-Min)
  3280.         --[[if Func == "sin" then
  3281.                 return (math.sin((1-Num)*math.pi)+1)/2
  3282.         elseif Func == "cos" then
  3283.                 return (math.cos((1-Num)*math.pi)+1)/2
  3284.         end]]
  3285. end
  3286.  
  3287. function LerpCFrame(CFrame1,CFrame2,Num)
  3288.         local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3289.         return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3290. end
  3291.  
  3292. function Crater(UpperTorso,Radius)
  3293.         Spawn(function()
  3294.         local Ray = Ray.new(UpperTorso.Position,Vector3.new(0,-1,0)*10)
  3295.         local Ignore = {}
  3296.         for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3297.                 if v.Character ~= nil then
  3298.                         Ignore[#Ignore+1] = v.Character
  3299.                 end
  3300.         end
  3301.         local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3302.         if Hit == nil then return end
  3303.         local Parts = {}
  3304.         for i = 1,360,10 do
  3305.                 local P = Instance.new("Part",UpperTorso.Parent)
  3306.                 P.Anchored = true
  3307.                 P.FormFactor = "Custom"
  3308.                 P.BrickColor = Hit.BrickColor
  3309.                 P.Material = Hit.Material
  3310.                 P.TopSurface = "Smooth"
  3311.                 P.BottomSurface = "Smooth"
  3312.                 P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3313.                 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)))
  3314.                 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}
  3315.                 if math.random(0,5) == 0 then -- rubble
  3316.                         local P = Instance.new("Part",UpperTorso.Parent)
  3317.                         P.Anchored = true
  3318.                         P.FormFactor = "Custom"
  3319.                         P.BrickColor = Hit.BrickColor
  3320.                         P.Material = Hit.Material
  3321.                         P.TopSurface = "Smooth"
  3322.                         P.BottomSurface = "Smooth"
  3323.                         P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3324.                         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)))
  3325.                         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}
  3326.                 end
  3327.         end
  3328.         for i = 0,1,0.05 do
  3329.                 for i2,v in pairs(Parts) do
  3330.                         v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3331.                 end
  3332.                 wait(0.02)
  3333.         end
  3334.         for i,v in pairs(Parts) do
  3335.                 if v[1].Size.X > 2.1 then
  3336.                         v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3337.                 end
  3338.                 v[1].Anchored = false
  3339.         end
  3340.         for i = 0,1,0.05 do
  3341.                 for i2,v in pairs(Parts) do
  3342.                         v[1].Transparency = i
  3343.                         if i == 1 then
  3344.                                 v[1]:Destroy()
  3345.                         elseif i >= 0.25 then
  3346.                                 v[1].CanCollide = false
  3347.                         end
  3348.                 end
  3349.                 wait(0.02)
  3350.         end
  3351.         Parts = nil
  3352.         end)
  3353. end
  3354.  
  3355. ----------------------------------------------------
  3356. mouse.KeyDown:connect(function(key)
  3357.     if key == "r" then
  3358.         larm.BrickColor = BrickColor.new("Bright red")
  3359.         rarm.BrickColor = BrickColor.new("Bright red")
  3360.         if Debounces.CanAttack == true then
  3361.         Debounces.CanAttack = false
  3362.         Debounces.on = true
  3363.         Debounces.NoIdl = true
  3364. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3365.         hit = ht.Parent
  3366.         if ht and hit:IsA("Model") then
  3367.                 if hit:FindFirstChild("Humanoid") then
  3368.                     if hit.Name ~= p.Name then
  3369.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3370.                                 Debounces.Slashed = true]]--
  3371.                                     hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3372.                                 wait(1)
  3373.                                 --Debounces.Slashed = false
  3374.                         --end
  3375.                     end
  3376.                 end
  3377.         elseif ht and hit:IsA("Hat") then
  3378.             if hit.Parent.Name ~= p.Name then
  3379.                 if hit.Parent:FindFirstChild("Humanoid") then
  3380.                        --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3381.                                 Debounces.Slashed = true]]--
  3382.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3383.                                 wait(1)
  3384.                     --Debounces.Slashed = false
  3385.                 end
  3386.             end
  3387.         end    
  3388.     end)
  3389. q = Instance.new("Sound",hed)
  3390. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3391. q.Pitch = 0.85
  3392. q.Looped = false
  3393. q1 = Instance.new("Sound",hed)
  3394. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3395. q1.Pitch = 0.85
  3396. q1.Looped = false
  3397. q:Play()
  3398. q1:Play()
  3399.     for i = 1,20 do
  3400.         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)
  3401.         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)
  3402.         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)
  3403.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3404.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3405.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3406.         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)
  3407.         if Debounces.on == false then break end
  3408.     rs:wait(.6)
  3409. end
  3410. n = Instance.new("Sound",hed)
  3411. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3412. n.Pitch = 0.94
  3413. n.Looped = false
  3414. n1 = Instance.new("Sound",hed)
  3415. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3416. n1.Pitch = 0.94
  3417. n1.Looped = false
  3418. n:Play()
  3419. n1:Play()
  3420. b = Instance.new("Sound",hed)
  3421. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3422. b.Pitch = 0.94
  3423. b.Looped = false
  3424. b1 = Instance.new("Sound",hed)
  3425. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3426. b1.Pitch = 0.94
  3427. b1.Looped = false
  3428. b:Play()
  3429. b1:Play()
  3430.     for i = 1,26 do
  3431.         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)
  3432.         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)
  3433.         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)
  3434.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3435.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3436.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3437.         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)
  3438.         if Debounces.on == false then break end
  3439.     rs:wait(1)
  3440. end
  3441. wait(.5)
  3442. to:disconnect()
  3443. q:Destroy()
  3444. q1:Destroy()
  3445. n:Destroy()
  3446. n1:Destroy()
  3447. larm.BrickColor = BrickColor.new("Really black")
  3448. rarm.BrickColor = BrickColor.new("Really black")
  3449.     if Debounces.CanAttack == false then
  3450.         Debounces.CanAttack = true
  3451.         Debounces.on = false
  3452.         Debounces.NoIdl = false
  3453.             end
  3454.         end
  3455.     end
  3456. end)
  3457. ----------------------------------------------------
  3458. mouse.KeyDown:connect(function(key)
  3459.     if key == "q" then
  3460.         larm.BrickColor = BrickColor.new("Bright red")
  3461.         rarm.BrickColor = BrickColor.new("Bright red")
  3462.         if Debounces.CanAttack == true then
  3463.         Debounces.CanAttack = false
  3464.         Debounces.on = true
  3465.         Debounces.NoIdl = true
  3466. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3467.         hit = ht.Parent
  3468.         if ht and hit:IsA("Model") then
  3469.                 if hit:FindFirstChild("Humanoid") then
  3470.                     if hit.Name ~= p.Name then
  3471.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3472.                                 Debounces.Slashed = true]]--
  3473.                                     hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3474.                                 wait(1)
  3475.                                 --Debounces.Slashed = false
  3476.                         --end
  3477.                     end
  3478.                 end
  3479.         elseif ht and hit:IsA("Hat") then
  3480.             if hit.Parent.Name ~= p.Name then
  3481.                 if hit.Parent:FindFirstChild("Humanoid") then
  3482.                        --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3483.                                 Debounces.Slashed = true]]--
  3484.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3485.                                 wait(1)
  3486.                     --Debounces.Slashed = false
  3487.                 end
  3488.             end
  3489.         end    
  3490.     end)
  3491.         for i = 1, 20 do
  3492.             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)
  3493.             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)
  3494.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3495.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  3496.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3497.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3498.             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)
  3499.         if Debounces.on == false then break end
  3500.         rs:wait(2)
  3501.     end
  3502.     z = Instance.new("Sound",hed)
  3503.     z.SoundId = "rbxassetid://160069154"
  3504.     z.Looped = false
  3505.     z.Pitch = .9
  3506.     z1 = Instance.new("Sound",hed)
  3507.     z1.SoundId = "rbxassetid://160069154"
  3508.     z1.Looped = false
  3509.     z1.Pitch = .9
  3510.     wait(0.01)
  3511.     z:Play()
  3512.     z1:Play()
  3513.         for i = 1, 20 do
  3514.             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)
  3515.             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)
  3516.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3517.             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)
  3518.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3519.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3520.             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)
  3521.         if Debounces.on == false then break end
  3522.         rs:wait(2)
  3523.     end
  3524.         for i = 1, 20 do
  3525.             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)
  3526.             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)
  3527.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3528.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3529.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3530.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3531.             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)
  3532.         if Debounces.on == false then break end
  3533.         rs:wait(2)
  3534.     end
  3535.     z = Instance.new("Sound",hed)
  3536.     z.SoundId = "rbxassetid://168586621"
  3537.     z.Looped = false
  3538.     z.Pitch = 1
  3539.     z1 = Instance.new("Sound",hed)
  3540.     z1.SoundId = "rbxassetid://168586621"
  3541.     z1.Looped = false
  3542.     z1.Pitch = 1
  3543.     wait(0.01)
  3544.     z:Play()
  3545.     z1:Play()
  3546.         for i = 1, 20 do
  3547.             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)
  3548.             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)
  3549.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3550.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3551.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3552.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3553.             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)
  3554.         if Debounces.on == false then break end
  3555.         rs:wait(2)
  3556.     end
  3557. to:disconnect()
  3558. larm.BrickColor = BrickColor.new("Really black")
  3559. rarm.BrickColor = BrickColor.new("Really black")
  3560.     if Debounces.CanAttack == false then
  3561.         Debounces.CanAttack = true
  3562.         Debounces.on = false
  3563.         Debounces.NoIdl = false
  3564.             end
  3565.         end
  3566.     end
  3567. end)
  3568. ----------------------------------------------------
  3569. Sit = false
  3570. mouse.KeyDown:connect(function(key)
  3571.     if key == "v" then
  3572.         if Sit == false then
  3573.             Sit = true
  3574.             hum.WalkSpeed = 0.001
  3575.         stanceToggle = "Sitting"
  3576.     elseif Sit == true then
  3577.         Sit = false
  3578.             hum.WalkSpeed = 9
  3579.         stanceToggle = "Normal"
  3580.         end
  3581.     end
  3582. end)
  3583. ----------------------------------------------------
  3584. mouse.KeyDown:connect(function(key)
  3585.     if key == "t" then
  3586.         if Debounces.CanAttack == true then
  3587.         Debounces.CanAttack = false
  3588.         Debounces.on = true
  3589.         Debounces.NoIdl = true
  3590.         for i = 1, 20 do
  3591.         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)
  3592.         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)
  3593.         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)
  3594.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3595.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3596.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3597.         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)
  3598.             if Debounces.on == false then break end
  3599.             rs:wait(2.6)
  3600.         end
  3601.         Spawn(function()
  3602.             local Parts = {}
  3603.             for Y = -5,5 do
  3604.                 local P = Instance.new("Part",char)
  3605.                 P.Anchored = true
  3606.                 P.FormFactor = "Custom"
  3607.                 P.CanCollide = false
  3608.                 P.Size = Vector3.new(1,2,1)
  3609.                 P.TopSurface = "SmoothNoOutlines"
  3610.                 P.BottomSurface = "SmoothNoOutlines"
  3611.                 P.BrickColor = BrickColor.new("Really black")
  3612.                 P.Name = tostring(Y)
  3613.                 local i = (Y+5)/(10)
  3614.                 i = 1-math.cos(math.pi*i-(math.pi/2))
  3615.                 P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3616.                 --[[P.Touched:connect(function(ht)
  3617.                     local hit = ht.Parent
  3618.                     if hit:FindFirstChild("Humanoid") then
  3619.                         hit.Humanoid:TakeDamage(math.random(20,50))
  3620.                     end
  3621.                 end)]]--
  3622.         s = Instance.new("Sound",P)
  3623.         s.SoundId = "rbxassetid://228343271"
  3624.         s.Volume = .7
  3625.         s.Pitch = 0.9
  3626.         s:Play()
  3627.         P.Touched:connect(function(ht)
  3628.         hit = ht.Parent
  3629.         if ht and hit:IsA("Model") then
  3630.                 if hit:FindFirstChild("Humanoid") then
  3631.                     if hit.Name ~= p.Name then
  3632.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3633.                                 Debounces.Slashed = true]]--
  3634.                                     hit:FindFirstChild("Humanoid"):TakeDamage(math.random(3,5))
  3635.                                     hit:FindFirstChild("Humanoid").PlatformStand = false
  3636.                                 wait(1)
  3637.                                 --Debounces.Slashed = false
  3638.                         --end
  3639.                 end
  3640.                 end
  3641.         elseif ht and hit:IsA("Hat") then
  3642.             if hit.Parent.Name ~= p.Name then
  3643.                 if hit.Parent:FindFirstChild("Humanoid") then
  3644.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3645.                                 Debounces.Slashed = true]]--
  3646.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (3,5))
  3647.                                 hit:FindFirstChild("Humanoid").PlatformStand = false
  3648.                                 wait(1)
  3649.                     --Debounces.Slashed = false
  3650.                 --end
  3651.             end
  3652.         end
  3653.     end
  3654. end)
  3655.                 Parts[#Parts+1] = P
  3656.             end
  3657.             local BREAKIT = false
  3658.             local CParts = {}
  3659.             local Rocks = {}
  3660.             local LastPos = nil
  3661.             for i = 1,70 do
  3662.                 for i2,v in pairs(Parts) do
  3663.                     v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3664.                     local cf = v.CFrame
  3665.                     v.Size = v.Size+Vector3.new(0.4,0.35,0)
  3666.                     v.CFrame = cf
  3667.                     v.Transparency = v.Transparency+0.02
  3668.                     if v.Transparency >= 0.975 then BREAKIT = true end
  3669.                     if v.Name == "0" then
  3670.                         local Ignore = {}
  3671.                         for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3672.                             if v.Character ~= nil then
  3673.                                 Ignore[#Ignore+1] = v.Character
  3674.                             end
  3675.                         end
  3676.                         local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3677.                         local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3678.                         if Hit ~= nil then
  3679.                             if #Rocks == 0 then
  3680.                                 for i = 1,5 do
  3681.                                     local P = Instance.new("Part",char)
  3682.                                     Rocks[#Rocks+1] = P
  3683.                                     P.Anchored = true
  3684.                                     P.FormFactor = "Custom"
  3685.                                     P.BrickColor = Hit.BrickColor
  3686.                                     P.Material = Hit.Material
  3687.                                     P.TopSurface = "Smooth"
  3688.                                     P.BottomSurface = "Smooth"
  3689.                                     P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3690.                                 end
  3691.                             end
  3692.                             for i,P in pairs(Rocks) do
  3693.                                 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)))
  3694.                             end
  3695.                             local P = Instance.new("Part",char)
  3696.                             CParts[#CParts+1] = {P,tick()}
  3697.                             P.Anchored = true
  3698.                             P.FormFactor = "Custom"
  3699.                             P.BrickColor = Hit.BrickColor
  3700.                             P.Material = Hit.Material
  3701.                             P.TopSurface = "Smooth"
  3702.                             P.BottomSurface = "Smooth"
  3703.                             P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3704.                             Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3705.                             Pos = Pos.p
  3706.                             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)))
  3707.                             local P = P:Clone()
  3708.                             CParts[#CParts+1] = {P,tick()}
  3709.                             P.Parent = char
  3710.                             Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3711.                             Pos = Pos.p
  3712.                             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)))
  3713.                             if LastPos ~= nil then
  3714.                                 local P = P:Clone()
  3715.                                 CParts[#CParts+1] = {P,tick()}
  3716.                                 P.Parent = char
  3717.                                 P.BrickColor = BrickColor.new("Really black")
  3718.                                 Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3719.                                 Pos = Pos.p
  3720.                                 local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3721.                                 P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3722.                                 --P.Velocity = Vector3.new(0,-1000,0)
  3723.                                 P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3724.                             end
  3725.                             LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3726.                         end
  3727.                     end
  3728.                 end
  3729.                 if BREAKIT then break end
  3730.                 wait(0.002)
  3731.             end
  3732.             for i,v in pairs(Rocks) do
  3733.                 CParts[#CParts+1] = {v,tick()}
  3734.             end
  3735.             for i,v in pairs(Parts) do
  3736.                 v:Destroy()
  3737.             end
  3738.             Parts = nil
  3739.             while true do
  3740.                 local t = tick()
  3741.                 local p = nil
  3742.                 for i,v in pairs(CParts) do
  3743.                     if t-v[2] > 4 then
  3744.                         v[1].Transparency = v[1].Transparency+0.05
  3745.                         if v[1].Transparency >= 1 then
  3746.                             v[1]:Destroy()
  3747.                             CParts[i] = nil
  3748.                         end
  3749.                     end
  3750.                     p = v
  3751.                 end
  3752.                 if p == nil then break end
  3753.                 wait(0.002)
  3754.             end
  3755.             for i,v in pairs(CParts) do
  3756.                 v:Destroy()
  3757.             end
  3758.             CParts = {}
  3759.         end)
  3760.         for i = 1, 20 do
  3761.         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)
  3762.         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)
  3763.         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)
  3764.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3765.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3766.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3767.         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)
  3768.             if Debounces.on == false then break end
  3769.             rs:wait(2)
  3770.         end
  3771.     if Debounces.CanAttack == false then
  3772.         Debounces.CanAttack = true
  3773.         Debounces.on = false
  3774.         Debounces.NoIdl = false
  3775.             end
  3776.         end
  3777.     end
  3778. end)
  3779. ----------------------------------------------------
  3780. mouse.KeyDown:connect(function(key)
  3781.     if key == "e" then
  3782.     larm.BrickColor = BrickColor.new("Bright red")
  3783.     rarm.BrickColor = BrickColor.new("Bright red")
  3784.         if Debounces.CanAttack == true then
  3785.         Debounces.CanAttack = false
  3786.         Debounces.on = true
  3787.         Debounces.NoIdl = true
  3788.         for i = 1, 18 do
  3789.             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)
  3790.             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)
  3791.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3792.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3793.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3794.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3795.             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)
  3796.         if Debounces.on == false then break end
  3797.             rs:wait(4)
  3798.         end
  3799.         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))
  3800.         local rng = Instance.new("Part", char.Absolution.Handle)
  3801.         rng.Anchored = true
  3802.         rng.BrickColor = BrickColor.new("Really black")
  3803.         rng.CanCollide = true
  3804.         rng.FormFactor = 3
  3805.         rng.Name = "Ring"
  3806.         rng.Size = Vector3.new(1, 1, 1)
  3807.         rng.CanCollide = false
  3808.         rng.Transparency = 0.35
  3809.         rng.TopSurface = 0
  3810.         rng.BottomSurface = 0
  3811.         rng.CFrame = HandCF
  3812.         local rngm = Instance.new("SpecialMesh", rng)
  3813.         rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3814.         rngm.Scale = Vector3.new(1, 1, 2)
  3815.             x = Instance.new("Sound", hed)
  3816.             x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3817.             x.Looped = false
  3818.             x.Pitch = .7
  3819.             x.Volume = 1
  3820.             x1 = Instance.new("Sound", hed)
  3821.             x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3822.             x1.Looped = false
  3823.             x1.Pitch = .7
  3824.             x1.Volume = 1
  3825.             x:Play()
  3826.             x1:Play()
  3827.             rngto = rng.Touched:connect(function(ht)
  3828.             hit = ht.Parent
  3829.             if ht and hit:IsA("Model") then
  3830.                     if hit:FindFirstChild("Humanoid") then
  3831.                         if hit.Name ~= p.Name then
  3832.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3833.                                     Debounces.Slashed = true]]--
  3834.                                     hit:FindFirstChild("Humanoid"):TakeDamage(8)
  3835.                                     hit:FindFirstChild("Humanoid").PlatformStand = false
  3836.                                     hit:FindFirstChild("UpperTorso").Velocity = hit:FindFirstChild("UpperTorso").CFrame.lookVector * -120
  3837.                                     --Debounces.Slashed = false
  3838.                             --end
  3839.                         end
  3840.                     end
  3841.             elseif ht and hit:IsA("Hat") then
  3842.                 if hit.Parent.Name ~= p.Name then
  3843.                     if hit.Parent:FindFirstChild("Humanoid") then
  3844.                            --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3845.                                     Debounces.Slashed = true]]--
  3846.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(8)
  3847.                                     hit:FindFirstChild("Humanoid").PlatformStand = false
  3848.                                     hit:FindFirstChild("UpperTorso").Velocity = hit:FindFirstChild("UpperTorso").CFrame.lookVector * -120
  3849.                         --Debounces.Slashed = false
  3850.                     end
  3851.                 end
  3852.             end    
  3853.         end)
  3854.                 coroutine.wrap(function()
  3855.                 for i = 1, 60, 2 do
  3856.                 rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3857.                 rng.Size = rngm.Scale
  3858.                 rng.CFrame = HandCF
  3859.                 rng.Transparency = i/60
  3860.                 wait()
  3861.                 end
  3862.                 wait()
  3863.                 rng:Destroy()
  3864.                 end)()
  3865.         for i = 1, 18 do
  3866.             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)
  3867.             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)
  3868.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3869.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3870.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3871.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3872.             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)
  3873.         if Debounces.on == false then break end
  3874.             rs:wait(2.4)
  3875.         end
  3876.         larm.BrickColor = BrickColor.new("Really black")
  3877.         rarm.BrickColor = BrickColor.new("Really black")
  3878.     if Debounces.CanAttack == false then
  3879.         Debounces.CanAttack = true
  3880.         Debounces.on = false
  3881.         Debounces.NoIdl = false
  3882.             end
  3883.         wait(2)
  3884.         x:Destroy()
  3885.         x1:Destroy()
  3886.         end
  3887.     end
  3888. end)
  3889. ----------------------------------------------------
  3890. mouse.KeyDown:connect(function(key)
  3891.         if key == "y" then
  3892.                 if Debounces.CanAttack == true then
  3893.             Debounces.CanAttack = false
  3894.             Debounces.on = true
  3895.             Debounces.NoIdl = true
  3896.                                 for i = 1, 15 do
  3897.                                         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)
  3898.                                         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)
  3899.                                         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3900.                                         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3901.                                         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3902.                                         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3903.                                         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)
  3904.                     if Debounces.on == false then break end
  3905.                     rs:wait(2.7)
  3906.                 end
  3907.                                 x = Instance.new("Sound",char)
  3908.                                 x.SoundId = "rbxassetid://228343271"
  3909.                                 x.Pitch = 1
  3910.                                 x.Volume = .8
  3911.                                 wait(.1)
  3912.                                 x:Play()
  3913.                                 Debounces.on = false
  3914.                                 Debounces.Here = false
  3915.                                 shot = shot + 1
  3916. local rng = Instance.new("Part", char)
  3917. rng.Anchored = true
  3918. rng.BrickColor = BrickColor.new("Bright blue")
  3919. rng.CanCollide = false
  3920. rng.FormFactor = 3
  3921. rng.Name = "Ring"
  3922. rng.Size = Vector3.new(1, 1, 1)
  3923. rng.Transparency = 0.35
  3924. rng.TopSurface = 0
  3925. rng.BottomSurface = 0
  3926. rng2 = rng:clone()
  3927. rng3 = rng2:clone()
  3928. rng4 = rng2:clone()
  3929. local rngm = Instance.new("SpecialMesh", rng)
  3930. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3931. rngm.Scale = Vector3.new(10, 10, 1)
  3932. rngm2 = rngm:clone()
  3933. rngm2.Scale = Vector3.new(5, 5, 3)
  3934. rngm3=rngm2:clone()
  3935. rngm3.Parent = rng3
  3936. rngm3.Scale = Vector3.new(8, 8, 1)
  3937. rngm4 = rngm2:clone()
  3938. rngm4.Parent = rng4
  3939. rngm4.Scale = Vector3.new(6, 6, 1)
  3940. local bem = Instance.new("Part", char)
  3941. bem.Anchored = true
  3942. bem.BrickColor = BrickColor.new("Really black")
  3943. bem.CanCollide = false
  3944. bem.FormFactor = 3
  3945. bem.Name = "Beam" .. shot
  3946. bem.Size = Vector3.new(1, 1, 1)
  3947. bem.Transparency = 0.35
  3948. bem.TopSurface = 0
  3949. bem.BottomSurface = 0
  3950. local bemm = Instance.new("SpecialMesh", bem)
  3951. bemm.MeshType = 4
  3952. bemm.Scale = Vector3.new(1, 4, 4)
  3953. local out = Instance.new("Part", char)
  3954. out.Anchored = true
  3955. out.BrickColor = BrickColor.new("Really black")
  3956. out.CanCollide = false
  3957. out.FormFactor = 3
  3958. out.Name = "Out"
  3959. out.Size = Vector3.new(4, 4, 4)
  3960. out.Transparency = 0.35
  3961. out.TopSurface = 0
  3962. out.BottomSurface = 0
  3963. local outm = Instance.new("SpecialMesh", out)
  3964. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  3965. outm.Scale = Vector3.new(4, 4, 4)
  3966. local bnd = Instance.new("Part", char)
  3967. bnd.Anchored = true
  3968. bnd.BrickColor = BrickColor.new("Bright blue")
  3969. bnd.CanCollide = false
  3970. bnd.FormFactor = 3
  3971. bnd.Name = "Bend"
  3972. bnd.Size = Vector3.new(1, 1, 1)
  3973. bnd.Transparency = 1
  3974. bnd.TopSurface = 0
  3975. bnd.BottomSurface = 0
  3976. local bndm = Instance.new("SpecialMesh", bnd)
  3977. bndm.MeshType = 3
  3978. bndm.Scale = Vector3.new(8, 8, 8)
  3979. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3980. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  3981. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  3982. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  3983. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  3984. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  3985. Debounces.Shewt = true
  3986. coroutine.wrap(function()
  3987. for i = 1, 20, 0.2 do
  3988. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  3989. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  3990. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  3991. rng.Transparency = i/20
  3992. rng3.Transparency = 1/24
  3993. rng4.Transparency = i/26
  3994. wait()
  3995. end
  3996. wait()
  3997. rng:Destroy()
  3998. end)()
  3999. if Debounces.Shewt == true then
  4000. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4001. hit = ht.Parent
  4002. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4003. if HasntTouched(hit.Name) == true and deb == false then
  4004. deb = true
  4005. coroutine.wrap(function()
  4006. hit:FindFirstChild("Humanoid").PlatformStand = false
  4007. hit:FindFirstChild("UpperTorso").Velocity = char.Head.CFrame.lookVector * 180
  4008. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  4009. end)()
  4010. table.insert(Touche, hit.Name)
  4011. deb = false
  4012. end
  4013. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4014. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4015. deb = true
  4016. coroutine.wrap(function()
  4017. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4018. hit.Parent:FindFirstChild("UpperTorso").Velocity = char.Head.CFrame.lookVector * 180
  4019. wait(1)
  4020. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4021. end)()
  4022. table.insert(Touche, hit.Parent.Name)
  4023. deb = false
  4024. for i, v in pairs(Touche) do
  4025. print(v)
  4026. end
  4027. end
  4028. end
  4029. end)
  4030. end
  4031. for i = 0, 260, 8 do
  4032. bem.Size = Vector3.new(i, 2, 2)
  4033. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4034. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4035. bnd.Size = Vector3.new(1,1,1)
  4036. bndm.Scale = Vector3.new(8,8,8)
  4037. if i % 10 == 0 then
  4038. local newRng = rng2:Clone()
  4039. newRng.Parent = char
  4040. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4041. local newRngm = rngm2:clone()
  4042. newRngm.Parent=newRng
  4043. coroutine.wrap(function()
  4044. for i = 1, 10, 0.2 do
  4045. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4046. newRng.Transparency = i/10
  4047. wait()
  4048. end
  4049. wait()
  4050. newRng:Destroy()
  4051. end)()
  4052. end
  4053. wait()
  4054. end
  4055. wait()
  4056. Debounces.Shewt = false
  4057. bem:Destroy()
  4058. out:Destroy()
  4059. bnd:Destroy()
  4060. Debounces.Ready = false
  4061. for i, v in pairs(Touche) do
  4062. table.remove(Touche, i)
  4063. end
  4064. wait()
  4065. table.insert(Touche, char.Name)
  4066. Debounces.NoIdl = false
  4067. if Debounces.CanAttack == false then
  4068. Debounces.CanAttack = true
  4069. end
  4070. end
  4071. end
  4072. end)
  4073. ----------------------------------------------------
  4074. sidz = {"231917888", "231917845", "231917806"}
  4075. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4076. mouse.KeyDown:connect(function(key)
  4077.     if key == "f" then
  4078.     larm.BrickColor = BrickColor.new("Bright red")
  4079.     rarm.BrickColor = BrickColor.new("Bright red")
  4080.         if Debounces.CanAttack == true then
  4081.             Debounces.CanAttack = false
  4082.             Debounces.on = true
  4083.             Debounces.NoIdl = true
  4084.                 for i = 1, 20 do
  4085.                     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)
  4086.                     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)
  4087.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4088.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4089.                     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)
  4090.                     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)
  4091.                     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)
  4092.                     if Debounces.on == false then break end
  4093.                     rs:wait(6)
  4094.                 end
  4095.                 z = Instance.new("Sound",char)
  4096.                 z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4097.                 z.Pitch = ptz[math.random(1,#ptz)]
  4098.                 z.Volume = 1
  4099.                 z1 = Instance.new("Sound",char)
  4100.                 z1.SoundId = z.SoundId
  4101.                 z1.Pitch = z.Pitch
  4102.                 z1.Volume = 1
  4103.                 z:Play()
  4104.                 z1:Play()
  4105.                 Stomp()
  4106.                 for i = 1, 20 do
  4107.                     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)
  4108.                     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)
  4109.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4110.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4111.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4112.                     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)
  4113.                     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)
  4114.                     if Debounces.on == false then break end
  4115.                     rs:wait(2.5)
  4116.                 end
  4117.         if Debounces.CanAttack == false then
  4118.             Debounces.CanAttack = true
  4119.             Debounces.on = false
  4120.             Debounces.NoIdl = false
  4121.             larm.BrickColor = BrickColor.new("Really black")
  4122.             rarm.BrickColor = BrickColor.new("Really black")
  4123.             end
  4124.         end
  4125.     end
  4126. end)    
  4127. ----------------------------------------------------
  4128. mouse.KeyDown:connect(function(key)
  4129.     if key == "g" then
  4130.     larm.BrickColor = BrickColor.new("Bright red")
  4131.     rarm.BrickColor = BrickColor.new("Bright red")
  4132.         if Debounces.CanAttack == true then
  4133.         Debounces.CanAttack = false
  4134.         Debounces.on = true
  4135.         Debounces.NoIdl = true
  4136.         chrg = lleg.Touched:connect(function(ht)
  4137.         hit = ht.Parent
  4138.             if ht and hit:IsA("Model") then
  4139.                     if hit:FindFirstChild("Humanoid") then
  4140.                         if hit.Name ~= p.Name then
  4141.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4142.                                     Debounces.Slashed = true]]--
  4143.                                     hit:FindFirstChild("Humanoid"):TakeDamage(5)
  4144.                                     hit:FindFirstChild("Humanoid").PlatformStand = false
  4145.                                     hit:FindFirstChild("UpperTorso").Velocity = hit:FindFirstChild("UpperTorso").CFrame.lookVector * -70
  4146.                                     --Debounces.Slashed = false
  4147.                             --end
  4148.                         end
  4149.                     end
  4150.             elseif ht and hit:IsA("Hat") then
  4151.                 if hit.Parent.Name ~= p.Name then
  4152.                     if hit.Parent:FindFirstChild("Humanoid") then
  4153.                            --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4154.                                     Debounces.Slashed = true]]--
  4155.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(5)
  4156.                                     hit:FindFirstChild("Humanoid").PlatformStand = false
  4157.                                     hit:FindFirstChild("UpperTorso").Velocity = hit:FindFirstChild("UpperTorso").CFrame.lookVector * -70
  4158.                         --Debounces.Slashed = false
  4159.                     end
  4160.                 end
  4161.             end    
  4162.         end)
  4163.         for i = 1, 14 do
  4164.             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)
  4165.             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)
  4166.             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)
  4167.             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)
  4168.             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)
  4169.             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)
  4170.             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)
  4171.             if Debounces.on == false then break end
  4172.             rs:wait(3)
  4173.         end
  4174.         charge()
  4175.         z = Instance.new("Sound",char)
  4176.         z.SoundId = "rbxassetid://200632875"
  4177.         z.Volume = 1
  4178.         z.Pitch = .8
  4179.         z1 = Instance.new("Sound",char)
  4180.         z1.SoundId = "rbxassetid://200632875"
  4181.         z1.Volume = 1
  4182.         z1.Pitch = .9
  4183.         z:Play()
  4184.         z1:Play()
  4185.         wait(1)
  4186.         z:Destroy()
  4187.         z1:Destroy()
  4188.         chrg:disconnect()
  4189.         if Debounces.CanAttack == false then
  4190.             Debounces.CanAttack = true
  4191.             Debounces.on = false
  4192.             Debounces.NoIdl = false
  4193.             larm.BrickColor = BrickColor.new("Really black")
  4194.             rarm.BrickColor = BrickColor.new("Really black")
  4195.             end
  4196.         end
  4197.     end
  4198. end)
  4199. ----------------------------------------------------
  4200. pt = {0.7, 0.8, 0.9}
  4201. mouse.KeyDown:connect(function(key)
  4202.     if key == "h" then
  4203.         if Debounces.CanJoke == true then
  4204.             Debounces.CanJoke = false
  4205.             u = Instance.new("Sound")
  4206.             u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4207.             u.Parent = char
  4208.             u.Looped = false
  4209.             u.Pitch = pt[math.random(1,#pt)]
  4210.             u.Volume = 1
  4211.             u2 = Instance.new("Sound")
  4212.             u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4213.             u2.Parent = char
  4214.             u2.Looped = false
  4215.             u2.Pitch = u.Pitch
  4216.             u2.Volume = 1
  4217.             wait(.01)
  4218.             u:Play()
  4219.             u2:Play()
  4220.             wait(6)
  4221.             u:Destroy()
  4222.             u2:Destroy()
  4223.             if Debounces.CanJoke == false then
  4224.                 Debounces.CanJoke = true
  4225.             end
  4226.         end
  4227.     end
  4228. end)
  4229. ----------------------------------------------------
  4230. mouse.KeyDown:connect(function(key)
  4231.     if key == "j" then
  4232.                         if Debounces.CanJoke == true then
  4233.                                 Debounces.CanJoke = false
  4234.                 z = Instance.new("Sound",char)
  4235.                 z.SoundId = "rbxassetid://135017755"
  4236.                 z.Pitch = .76
  4237.                 z.Volume = 1
  4238.                                 wait()
  4239.                                 z:Play()
  4240.                                 wait(6)
  4241.                                 z:Destroy()
  4242.                         if Debounces.CanJoke == false then
  4243.                                 Debounces.CanJoke = true
  4244.                         end
  4245.                 end
  4246.         end
  4247. end)
  4248. ----------------------------------------------------
  4249. mouse.KeyDown:connect(function(key)
  4250.     if key == "k" then
  4251.                         if Debounces.CanJoke == true then
  4252.                                 Debounces.CanJoke = false
  4253.                 z = Instance.new("Sound",char)
  4254.                 z.SoundId = "rbxassetid://135017578"
  4255.                 z.Pitch = .76
  4256.                 z.Volume = 1
  4257.                                 wait()
  4258.                                 z:Play()
  4259.                                 wait(4)
  4260.                                 z:Destroy()
  4261.                         if Debounces.CanJoke == false then
  4262.                                 Debounces.CanJoke = true
  4263.                         end
  4264.                 end
  4265.         end
  4266. end)
  4267. ----------------------------------------------------
  4268. mouse.KeyDown:connect(function(key)
  4269.     if key == "x" then
  4270.         if Debounces.CanAttack == true then
  4271.             Debounces.CanAttack = false
  4272.             Debounces.NoIdl = true
  4273.             Debounces.on = true
  4274.             Debounces.ks = true
  4275.         for i = 1, 10 do
  4276.             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)
  4277.             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)
  4278.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4279.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4280.             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)
  4281.             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)
  4282.             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)
  4283.             if Debounces.on == false then break end
  4284.             rs:wait(1)
  4285.         end
  4286.         z = Instance.new("Sound",hed)
  4287.         z.SoundId = "rbxassetid://169445092"
  4288.         z.Volume = 1
  4289.         wait(0.1)
  4290.         z:Play()
  4291.         kik = rleg.Touched:connect(function(ht)
  4292.         hit = ht.Parent
  4293.             if ht and hit:IsA("Model") then
  4294.                     if hit:FindFirstChild("Humanoid") then
  4295.                         if hit.Name ~= p.Name then
  4296.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4297.                                     Debounces.Slashed = true]]--
  4298.                                     if Debounces.ks==true then
  4299.                                     z = Instance.new("Sound",hed)
  4300.                                     z.SoundId = "rbxassetid://169380525"
  4301.                                     z.Volume = 1
  4302.                                     z:Play()
  4303.                                     Debounces.ks=false
  4304.                                     end
  4305.                                     hit:FindFirstChild("Humanoid"):TakeDamage(5)
  4306.                                     hit:FindFirstChild("Humanoid").PlatformStand = false
  4307.                                     hit:FindFirstChild("UpperTorso").Velocity = hit:FindFirstChild("UpperTorso").CFrame.lookVector * -70
  4308.                             --Debounces.Slashed = false
  4309.                         --end
  4310.                     end
  4311.                 end
  4312.             elseif ht and hit:IsA("Hat") then
  4313.                 if hit.Parent.Name ~= p.Name then
  4314.                     if hit.Parent:FindFirstChild("Humanoid") then
  4315.                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4316.                                     Debounces.Slashed = true]]--
  4317.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(5)
  4318.                                     hit:FindFirstChild("Humanoid").PlatformStand = false
  4319.                                     hit:FindFirstChild("UpperTorso").Velocity = hit:FindFirstChild("UpperTorso").CFrame.lookVector * -70
  4320.                             --Debounces.Slashed = false
  4321.                         --end
  4322.                     end
  4323.                 end
  4324.             end    
  4325.         end)
  4326.         for i = 1, 8 do
  4327.             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)
  4328.             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)
  4329.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4330.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4331.             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)
  4332.             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)
  4333.             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)
  4334.             if Debounces.on == false then break end
  4335.             rs:wait(.7)
  4336.         end
  4337.         kik:disconnect()
  4338.         if Debounces.CanAttack == false then
  4339.             Debounces.CanAttack = true
  4340.             Debounces.on = false
  4341.             Debounces.NoIdl = false
  4342.             end
  4343.         end
  4344.     end
  4345. end)
  4346. ----------------------------------------------------
  4347. mouse.KeyDown:connect(function(key)
  4348.     if key == "c" then
  4349.         if Debounces.CanAttack == true then
  4350.             Debounces.CanAttack = false
  4351.             Debounces.NoIdl = true
  4352.             Debounces.on = true
  4353.             SIDZ = {"231917744", "231917742"}
  4354.             PTZ = {0.7, 0.8, 0.9, 1}
  4355.                 for i = 1, 20 do
  4356.                     wait()
  4357.                         for i,v in pairs(char.Absolution:children()) do
  4358.                     if v:IsA("Part") or v:IsA("WedgePart") then
  4359.                         v.Transparency = v.Transparency + 0.05
  4360.                         end
  4361.                     end
  4362.                 end
  4363.                 function FindNearestTorso(Position,Distance,SinglePlayer)
  4364.                     if SinglePlayer then return(SinglePlayer.UpperTorso.CFrame.p -Position).magnitude < Distance end
  4365.                         local List = {}
  4366.                         for i,v in pairs(workspace:GetChildren())do
  4367.                             if v:IsA("Model")then
  4368.                                 if v:findFirstChild("UpperTorso")then
  4369.                                     if v ~= char then
  4370.                                         if(v.UpperTorso.Position -Position).magnitude <= Distance then
  4371.                                             table.insert(List,v)
  4372.                                         end
  4373.                                     end
  4374.                                 end
  4375.                             end
  4376.                         end
  4377.                     return List
  4378.                 end
  4379.                 GroundPound()
  4380.                 for i = 1, 11 do
  4381.                     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)
  4382.                     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)
  4383.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4384.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4385.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4386.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4387.                     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)
  4388.                     if Debounces.on == false then break end
  4389.                     rs:wait(1.4)
  4390.                 end
  4391.                 GroundPound()
  4392.                 for i = 1, 11 do
  4393.                     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)
  4394.                     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)
  4395.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4396.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4397.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4398.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4399.                     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)
  4400.                     if Debounces.on == false then break end
  4401.                     rs:wait(1.4)
  4402.                 end
  4403.                 GroundPound()
  4404.                 for i = 1, 11 do
  4405.                     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)
  4406.                     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)
  4407.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4408.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4409.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4410.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4411.                     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)
  4412.                     if Debounces.on == false then break end
  4413.                     rs:wait(1.4)
  4414.                 end
  4415.                 GroundPound()
  4416.                 for i = 1, 11 do
  4417.                     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)
  4418.                     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)
  4419.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4420.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4421.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4422.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4423.                     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)
  4424.                     if Debounces.on == false then break end
  4425.                     rs:wait(1.4)
  4426.                 end
  4427.                 GroundPound()
  4428.                 for i = 1, 11 do
  4429.                     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)
  4430.                     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)
  4431.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4432.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4433.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4434.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4435.                     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)
  4436.                     if Debounces.on == false then break end
  4437.                     rs:wait(1.4)
  4438.                 end
  4439.                 GroundPound()
  4440.                 for i = 1, 11 do
  4441.                     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)
  4442.                     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)
  4443.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4444.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4445.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4446.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4447.                     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)
  4448.                     if Debounces.on == false then break end
  4449.                     rs:wait(1.4)
  4450.                 end
  4451.                 for i = 1, 24 do
  4452.                     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)
  4453.                     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)
  4454.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4455.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4456.                     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)
  4457.                     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)
  4458.                     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)
  4459.                     if Debounces.on == false then break end
  4460.                     rs:wait(3)
  4461.                 end
  4462.                 for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4463.                     if v:FindFirstChild('Humanoid') then
  4464.                         v.Humanoid:TakeDamage(math.random(40,80))
  4465.                         v.Humanoid.PlatformStand = false
  4466.                         v:FindFirstChild("UpperTorso").Velocity = hed.CFrame.lookVector * 100
  4467.                     end
  4468.                 end
  4469.                 x = Instance.new("Sound",char)
  4470.                 x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4471.                 x.Pitch = PTZ[math.random(1,#PTZ)]
  4472.                 x.Volume = 1
  4473.                 wait(0.1)
  4474.                 x:Play()
  4475.                 Crater(hed,20)
  4476.                 for i = 1, 20 do
  4477.                     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)
  4478.                     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)
  4479.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4480.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4481.                     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)
  4482.                     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)
  4483.                     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)
  4484.                     if Debounces.on == false then break end
  4485.                     rs:wait(2)
  4486.                 end
  4487.             if Debounces.CanAttack == false then
  4488.                 Debounces.CanAttack = true
  4489.                 Debounces.on = false
  4490.                 Debounces.NoIdl = false
  4491.                 for i = 1, 20 do
  4492.                     wait()
  4493.                         for i,v in pairs(char.Absolution:children()) do
  4494.                     if v:IsA("Part") or v:IsA("WedgePart") then
  4495.                         v.Transparency = v.Transparency - 0.05
  4496.                         end
  4497.                     end
  4498.                 end
  4499.             end
  4500.         end
  4501.     end
  4502. end)
  4503. ----------------------------------------------------176349813
  4504. mouse.KeyDown:connect(function(key)
  4505.     if key == "b" then
  4506.         hum.WalkSpeed = 0.001
  4507.         if Debounces.CanAttack == true then
  4508.             Debounces.CanAttack = false
  4509.             Debounces.NoIdl = true
  4510.             Debounces.on = true
  4511.                 for i = 1, 30 do
  4512.                     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)
  4513.                     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)
  4514.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4515.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4516.                     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)
  4517.                     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)
  4518.                     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)
  4519.                     if Debounces.on == false then break end
  4520.                     rs:wait(6)
  4521.                 end
  4522.         v = Instance.new("Sound")
  4523.         v.SoundId = "rbxassetid://181384451"
  4524.         v.Parent = char
  4525.         v.Looped = false
  4526.         v.Pitch = .94
  4527.         v.Volume = 1
  4528.         wait(.01)
  4529.         v:Play()
  4530.        
  4531.         if Daytime == true then
  4532.             Daytime = false
  4533.             l.TimeOfDay = 24
  4534.         else
  4535.             Daytime = true
  4536.             l.TimeOfDay = 12
  4537.             l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4538.         end
  4539.        
  4540.             local Shockwave = function()
  4541.                 local rng1 = Instance.new("Part", char)
  4542.                 rng1.Anchored = true
  4543.                 rng1.BrickColor = BrickColor.new("Really black")
  4544.                 rng1.CanCollide = false
  4545.                 rng1.FormFactor = 3
  4546.                 rng1.Name = "Ring"
  4547.                 rng1.Size = Vector3.new(1, 1, 1)
  4548.                 rng1.Transparency = 0.35
  4549.                 rng1.TopSurface = 0
  4550.                 rng1.BottomSurface = 0
  4551.                 local rngm1 = Instance.new("SpecialMesh", rng)
  4552.                 rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4553.                 rngm1.Scale = Vector3.new(10, 10, 1)
  4554.                 rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4555.                 local Wave = Instance.new("Part", game.Workspace--[[?]])
  4556.                 Wave.Name = "Shockwave"
  4557.                 Wave.BrickColor = BrickColor.new("Really black")
  4558.                 Wave.Size = Vector3.new(1, 1, 1)
  4559.                 Wave.Shape = "Ball"
  4560.                 Wave.CanCollide = false
  4561.                 Wave.Anchored = true
  4562.                 Wave.TopSurface = 0
  4563.                 Wave.BottomSurface = 0
  4564.                 Wave.Touched:connect(function(hit)
  4565.                     if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("UpperTorso") then
  4566.                         local Occlude = true
  4567.                         local NotOccludes = {
  4568.                             char.Name;
  4569.                             "Wings";
  4570.                             "Scythe";
  4571.                             "Thingy";
  4572.                             "Thingy2"; -- put all of the names in a table pls
  4573.                         }
  4574.                         for i,v in pairs(NotOccludes) do
  4575.                             if hit.Parent.Name == v then
  4576.                                 Occlude = false
  4577.                             end
  4578.                         end
  4579.                         --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
  4580.                         if Occlude then
  4581.                             hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 2
  4582.                             hit.Parent:findFirstChild("UpperTorso").Velocity = hit.Parent:findFirstChild("UpperTorso").CFrame.lookVector * -120
  4583.                         end
  4584.                     end
  4585.                 end)
  4586.                
  4587.                 Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4588.                
  4589.                 coroutine.wrap(function()
  4590.                     for i = 1, 20, 0.2 do
  4591.                         rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4592.                         rng1.Transparency = i/20
  4593.                     wait()
  4594.                     end
  4595.                     wait()
  4596.                     rng1:Destroy()
  4597.                 end)()
  4598.                
  4599.                 Delay(0, function()
  4600.  
  4601.                     if Daytime == false then
  4602.                        for i = 1, 50, 1 do
  4603.                             Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4604.                             Wave.CFrame = char.UpperTorso.CFrame
  4605.                             local t = i / 50
  4606.                             Wave.Transparency = t
  4607.                             wait()
  4608.                         end
  4609.                     else
  4610.                         for i = 1, 50, 1 do
  4611.                             Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4612.                             Wave.CFrame = char.UpperTorso.CFrame
  4613.                             local t = i / 50
  4614.                             Wave.Transparency = t
  4615.                             wait()
  4616.                         end
  4617.                     end
  4618.                     Wave:Destroy()
  4619.                 end)
  4620.                 Delay(0, function()
  4621.                     while wait() do
  4622.                         if Wave ~= nil then
  4623.                             Wave.CFrame = char.UpperTorso.CFrame
  4624.                         else
  4625.                             break
  4626.                         end
  4627.                     end
  4628.                 end)
  4629.             end
  4630.         Shockwave()
  4631.                 for i = 1, 30 do
  4632.                         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)
  4633.                         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)
  4634.             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)
  4635.             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)
  4636.                         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)
  4637.                         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)
  4638.                         if Debounces.on == false then break end
  4639.                         rs:wait()
  4640.                 end
  4641.         wait(2.4)
  4642.         Debounces.NoIdl = false
  4643.         hum.WalkSpeed = 9
  4644.         Debounces.on = false
  4645.         wait()
  4646.         if Debounces.CanAttack == false then
  4647.             Debounces.CanAttack = true
  4648.             v:Destroy()
  4649.             end
  4650.         end
  4651.     end
  4652. end)
  4653. ----------------------------------------------------
  4654. mouse.KeyDown:connect(function(key)
  4655.     if key == "l" then
  4656.                 for i = 1, 20 do
  4657.                         wait()
  4658.                 for i,v in pairs(char.Absolution:children()) do
  4659.                         if v:IsA("Part") or v:IsA("WedgePart") then
  4660.                                 v.Transparency = v.Transparency + 0.05
  4661.                         end
  4662.                 end
  4663.         end
  4664.         if Debounces.CanAttack == true then
  4665.             Debounces.CanAttack = false
  4666.             Debounces.NoIdl = true
  4667.             Debounces.on = true
  4668.                 bv = Instance.new("BodyVelocity",torso)
  4669.         bv.maxForce = Vector3.new(0,200000,0)
  4670.         bv.P = 100000
  4671.                 bv.velocity = Vector3.new(0,500,0)
  4672.                 wait(2)
  4673.                 bv:Destroy()
  4674. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4675.     for i = 1, 20 do
  4676.         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)
  4677.         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)
  4678.         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)
  4679.         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)
  4680.         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)
  4681.         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)
  4682.         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)
  4683.         if Debounces.on == false then break end
  4684.         wait()
  4685.         end
  4686.         for i = 1, 360, 20 do wait()
  4687.                 torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4688.         end
  4689. end
  4690. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4691. local ry,ht,ps=nil,nil,nil
  4692. while ht==nil do
  4693.         ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4694.         wait()
  4695. end
  4696. z = Instance.new("Sound",char)
  4697. z.SoundId = "rbxassetid://245537790"
  4698. z.Pitch = 1
  4699. z.Volume = 1
  4700. wait(0.1)
  4701. z:Play()
  4702.         local sp = Instance.new("Part", char)
  4703.                 sp.Name = "Energy"
  4704.                 sp.BrickColor = BrickColor.new("Really black")
  4705.                 sp.Size = Vector3.new(1, 1, 1)
  4706.                 sp.Shape = "Ball"
  4707.                 sp.CanCollide = false
  4708.                 sp.Anchored = true
  4709.                 sp.TopSurface = 0
  4710.                 sp.BottomSurface = 0
  4711.         local spm = Instance.new("SpecialMesh",sp)
  4712.                 spm.MeshId = "rbxassetid://9982590"
  4713.                 spm.Scale = Vector3.new(3,3,3)
  4714.         local sp2 = Instance.new("Part", char)
  4715.                 sp2.Name = "Energy2"
  4716.                 sp2.BrickColor = BrickColor.new("Really black")
  4717.                 sp2.Size = Vector3.new(1, 1, 1)
  4718.                 sp2.Shape = "Ball"
  4719.                 sp2.CanCollide = false
  4720.                 sp2.Anchored = true
  4721.                 sp2.TopSurface = 0
  4722.                 sp2.BottomSurface = 0
  4723.         local spm2 = Instance.new("SpecialMesh",sp2)
  4724.                 spm2.MeshId = "rbxassetid://9982590"
  4725.                 spm2.Scale = Vector3.new(3,3,3)
  4726.                 sp.Touched:connect(function(hit)
  4727.                     if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("UpperTorso") then
  4728.                         local Occlude = true
  4729.                         local NotOccludes = {
  4730.                             char.Name;
  4731.                             "Wings";
  4732.                             "Scythe";
  4733.                             "Thingy";
  4734.                             "Thingy2"; -- put all of the names in a table pls
  4735.                         }
  4736.                         for i,v in pairs(NotOccludes) do
  4737.                             if hit.Parent.Name == v then
  4738.                                 Occlude = false
  4739.                             end
  4740.                         end
  4741.                         --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
  4742.                         if Occlude then
  4743.                             hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4744.                             hit.Parent:findFirstChild("UpperTorso").Velocity = hit.Parent:findFirstChild("UpperTorso").CFrame.lookVector * -120
  4745.                         end
  4746.                     end
  4747.                 end)
  4748.                 sp2.Touched:connect(function(hit)
  4749.                     if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("UpperTorso") then
  4750.                         local Occlude = true
  4751.                         local NotOccludes = {
  4752.                             char.Name;
  4753.                             "Wings";
  4754.                             "Scythe";
  4755.                             "Thingy";
  4756.                             "Thingy2"; -- put all of the names in a table pls
  4757.                         }
  4758.                         for i,v in pairs(NotOccludes) do
  4759.                             if hit.Parent.Name == v then
  4760.                                 Occlude = false
  4761.                             end
  4762.                         end
  4763.                         --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
  4764.                         if Occlude then
  4765.                             hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 2
  4766.                             hit.Parent:findFirstChild("UpperTorso").Velocity = hit.Parent:findFirstChild("UpperTorso").CFrame.lookVector * -120
  4767.                         end
  4768.                     end
  4769.                 end)
  4770.         for i = 1, 100, 1 do
  4771.                 sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4772.                 sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4773.                 sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4774.                 sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4775.                 spm.Scale = sp.Size
  4776.                 spm2.Scale = sp2.Size
  4777.                 local t = i / 100
  4778.                 sp.Transparency = t
  4779.                 sp2.Transparency = t
  4780.                 wait()
  4781.         end
  4782.                 sp:Destroy()
  4783.                 sp2:Destroy()
  4784.                 z:Destroy()
  4785.                 for i = 1, 20 do
  4786.                         wait()
  4787.                 for i,v in pairs(char.Absolution:children()) do
  4788.                         if v:IsA("Part") or v:IsA("WedgePart") then
  4789.                                 v.Transparency = v.Transparency - 0.05
  4790.                         end
  4791.                 end
  4792.         end
  4793.         if Debounces.CanAttack == false then
  4794.             Debounces.CanAttack = true
  4795.                         Debounces.NoIdl = false
  4796.                         Debounces.on = false
  4797.             end
  4798.         end
  4799.     end
  4800. end)
  4801. ----------------------------------------------------
  4802. local orbt={}
  4803. local stlt={}
  4804. local chot={}
  4805. local cfxt={}
  4806. local pfxt={}
  4807. local cns=0
  4808. local cnOrb=nil
  4809. mouse.KeyDown:connect(function(key)
  4810.     if key == "u" then
  4811.         if Debounces.CanAttack == true then
  4812.             Debounces.CanAttack = false
  4813.             Debounces.NoIdl = true
  4814.             Debounces.on = true
  4815.                         orbt={}
  4816.                         stlt={}
  4817.                         chot={}
  4818.                         cfxt={}
  4819.                 for i = 1, 20 do
  4820.                         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)
  4821.                         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)
  4822.                         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  4823.                         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4824.                         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)
  4825.                         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)
  4826.                         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)
  4827.                         if Debounces.on == false then end
  4828.                         rs:wait()
  4829.                     end
  4830.                 z = Instance.new("Sound",char)
  4831.                 z.SoundId = "rbxassetid://170053944"
  4832.                 z.Pitch = 1.07
  4833.                 z.Volume = 1
  4834.                 wait(0.1)
  4835.                 z:Play()
  4836.                 cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  4837.                 debris:AddItem(cnOrb,50)
  4838.                 cnOrb.Mesh.MeshType=3
  4839.                 table.insert(orbt,cnOrb)
  4840.                 table.insert(stlt,cnOrb)
  4841.                 local nt=0
  4842.                 for i=0,5,0.02 do
  4843.                         nt=nt+1
  4844.                         cns=i
  4845.                         if nt>=2 then
  4846.                                 nt=0
  4847.                                 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")
  4848.                                 debris:AddItem(cho,1)
  4849.                                 cho.Mesh.MeshType=3
  4850.                                 table.insert(chot,cho)
  4851.                         end
  4852.                         cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4853.                         cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  4854.                         wait()
  4855.                 end
  4856.                 for i = 1, 14 do
  4857.                         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)
  4858.                         if Debounces.on == false then end
  4859.                         rs:wait()
  4860.                     end
  4861.                 coroutine.wrap(function()
  4862.                 for i = 1, 20 do
  4863.                         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)
  4864.                         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)
  4865.                         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  4866.                         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  4867.                         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)
  4868.                         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)
  4869.                         if Debounces.on == false then end
  4870.                         rs:wait()
  4871.                     end
  4872.                 end)()
  4873.                 wait(0.1)
  4874.                 stlt={}
  4875.                 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})
  4876.                 cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4877.                 local nt=0
  4878.                 for i=0,160,3 do
  4879.                                         cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4880.                                         nt=nt+1
  4881.                                         if nt>=6 then
  4882.                         nt=0
  4883.                         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")
  4884.                         cfx.Mesh.MeshId="rbxassetid://20329976"
  4885.                         cfx.Transparency=0.4
  4886.                         table.insert(cfxt,cfx)
  4887.                         debris:AddItem(cfx,1)
  4888.                     end
  4889.                                                 if (cnOrb.Position-ps).magnitude<6 then
  4890.                                                         break
  4891.                                                 end
  4892.                                 wait()
  4893.                         end
  4894.                         orbt={}
  4895.                        
  4896.                         for i=0,1,0.1 do
  4897.                                 local cs=cnOrb.Mesh.Scale
  4898.                                 cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
  4899.                                 wait()
  4900.                         end
  4901.                         local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4902.                         ofx.Transparency=0.5
  4903.                         ofx.Mesh.MeshType=3
  4904.                         ofx.Mesh.Scale=Vector3.new(30,30,30)
  4905.                         for _,v in pairs(game:service"Players":GetChildren()) do
  4906.                                 pcall(function()
  4907.                                         for _,c in pairs(v.Character:GetChildren()) do
  4908.                                                 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
  4909.                                                         local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  4910.                                                         hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  4911.                                                 end
  4912.                                         end
  4913.                                 end)
  4914.                         end
  4915.                         for i=0,1,0.05 do
  4916.                                 local cs=cnOrb.Mesh.Scale
  4917.                                 cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  4918.                                 local ofs=ofx.Mesh.Scale
  4919.                                 ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  4920.                                 ofx.Transparency=Tween(ofx.Transparency,1,i)
  4921.                                 wait()
  4922.                         end
  4923.                         ofx:Destroy()
  4924.                         cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  4925.                         local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4926.                         cnfx.Mesh.MeshType=3
  4927.                         cnOrb.Transparency=0.05
  4928.                         local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4929.                         cnr.Mesh.MeshType=3
  4930.                         local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
  4931.                         rn1.Transparency=1
  4932.                         rn1.Mesh.MeshId="rbxassetid://3270017"
  4933.                         local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4934.                         rn2.Transparency=1
  4935.                         rn2.Mesh.MeshId="rbxassetid://3270017"
  4936.                         local nt=0
  4937.                         local cs=nil
  4938.                         for i=0,1,0.05 do
  4939.                                 cs=cnOrb.Mesh.Scale
  4940.                                 cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  4941.                                 local fs=cnfx.Mesh.Scale
  4942.                                 cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  4943.                                 cnfx.Transparency=cnfx.Transparency+0.05
  4944.                                 rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4945.                                 rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4946.                                 rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4947.                                 rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4948.                                 rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  4949.                                 rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  4950.                                 local rs=cnr.Mesh.Scale
  4951.                                 cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  4952.                                 nt=nt+1
  4953.                                 if nt>=6 then
  4954.                                         local pls={}
  4955.                                         for _,v in pairs(game.Players:GetChildren()) do
  4956.                                                 table.insert(pls,v)
  4957.                                         end
  4958.                                         local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  4959.                                         local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  4960.                                         pffx.Mesh.MeshId="rbxassetid://20329976"
  4961.                                         pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  4962.                                         debris:AddItem(pffx,2)
  4963.                                         table.insert(pfxt,pffx)
  4964.                                         nt=0
  4965.                                 end
  4966.                                 wait()
  4967.                         end
  4968.                         local int=0
  4969.                         coroutine.wrap(function()
  4970.                         for i=1,500 do
  4971.                                 rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4972.                                 rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4973.                                 nt=nt+1
  4974.                                 int=int+1
  4975.                                 local htd={p}
  4976.                                 for _,v in pairs(game:service"Players":GetChildren()) do
  4977.                                         pcall(function()
  4978.                                                 for _,c in pairs(v.Character:GetChildren()) do
  4979.                                                         if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4980.                                                                 v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  4981.                                                                 v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  4982.                                                                 table.insert(htd,v)
  4983.                                                         end
  4984.                                                 end
  4985.                                         end)
  4986.                                 end
  4987.                                 htd={p}
  4988.                                 if int>=6 then
  4989.                                 for _,v in pairs(game:service"Players":GetChildren()) do
  4990.                                         pcall(function()
  4991.                                                 for _,c in pairs(v.Character:GetChildren()) do
  4992.                                                         if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4993.                                                                 table.insert(htd,v)
  4994.                                                                 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")
  4995.                                                                 hfx.Mesh.Scale=Vector3.new(2,2,2)
  4996.                                                                 hfx.Mesh.MeshType=3
  4997.                                                                 debris:AddItem(hfx,2)
  4998.                                                                 coroutine.wrap(function()
  4999.                                                                         pcall(function()
  5000.                                                                                 for i=0,1,0.05 do
  5001.                                                                                         pcall(function()
  5002.                                                                                         local hs=hfx.Mesh.Scale
  5003.                                                                                         hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5004.                                                                                         hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5005.                                                                                         end)
  5006.                                                                                         wait()
  5007.                                                                                 end
  5008.                                                                                 hfx:Destroy()
  5009.                                                                         end)
  5010.                                                                 end)()
  5011.                                                         end
  5012.                                                 end
  5013.                                         end)
  5014.                                 end
  5015.                                 int=0
  5016.                                 end
  5017.                                 if nt>=4 then
  5018.                                         local pls={}
  5019.                                         for _,v in pairs(game.Players:GetChildren()) do
  5020.                                                 table.insert(pls,v)
  5021.                                         end
  5022.                                         local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5023.                                         local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5024.                                         pffx.Transparency=0.4
  5025.                                         pffx.Mesh.MeshId="rbxassetid://20329976"
  5026.                                         pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5027.                                         debris:AddItem(pffx,2)
  5028.                                         table.insert(pfxt,pffx)
  5029.                                         nt=0
  5030.                                 end
  5031.                                 wait()
  5032.                         end
  5033.                         cnOrb:Destroy()
  5034.                         cnfx:Destroy()
  5035.                         for _,v in pairs(mod3:GetChildren()) do
  5036.                                 v:Destroy()
  5037.                         end
  5038.                         orbt={}
  5039.                         stlt={}
  5040.                         chot={}
  5041.                         cfxt={}
  5042.                         pfxt={}
  5043.                         end)()
  5044.                         if Debounces.CanAttack == false then
  5045.                                 Debounces.CanAttack = true
  5046.                                 Debounces.NoIdl = false
  5047.                                 Debounces.on = false
  5048.             end
  5049.         end
  5050.     end
  5051. end)
  5052. ----------------------------------------------------
  5053. mouse.KeyDown:connect(function(key)
  5054.     if key == "m" then
  5055.         if Debounces.CanAttack == true then
  5056.         Debounces.CanAttack = false
  5057.         Debounces.on = true
  5058.         Debounces.NoIdl = true
  5059.             x = Instance.new("Sound",char)
  5060.             x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5061.             x.Looped = false
  5062.             x.Pitch = 1.1
  5063.             x.Volume = 1
  5064.             x:Play()
  5065.             x2 = Instance.new("Sound",char)
  5066.             x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5067.             x2.Looped = false
  5068.             x2.Pitch = .7
  5069.             x2.Volume = 1
  5070.             wait(.1)
  5071.             x:Play()
  5072.             x2:Play()
  5073.         for i = 1, 20 do
  5074.             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)
  5075.             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)
  5076.             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)
  5077.             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)
  5078.             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)
  5079.             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)
  5080.             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)
  5081.             if Debounces.on == false then break end
  5082.                 wait()
  5083.             x:Destroy()
  5084.             x2:Destroy()
  5085.             end
  5086.             wait(1)
  5087.         local rng = Instance.new("Part", char)
  5088.         rng.Anchored = true
  5089.         rng.BrickColor = BrickColor.new("Really black")
  5090.         rng.CanCollide = false
  5091.         rng.FormFactor = 3
  5092.         rng.Name = "Ring"
  5093.         rng.Size = Vector3.new(1, 1, 1)
  5094.         rng.Transparency = 0.35
  5095.         rng.TopSurface = 0
  5096.         rng.BottomSurface = 0
  5097.         rng.Position = torso.Position - Vector3.new(0,5,0)
  5098.         rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5099.         local rngm = Instance.new("SpecialMesh", rng)
  5100.         rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5101.         rngm.Scale = Vector3.new(1, 1, 2)
  5102.             x = Instance.new("Sound",char)
  5103.             x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5104.             x.Looped = false
  5105.             x.Pitch = .7
  5106.             x.Volume = 1
  5107.             x:Play()
  5108.                 coroutine.wrap(function()
  5109.                 for i = 1, 60, 2 do
  5110.                 rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5111.                 rng.Transparency = i/60
  5112.                 wait()
  5113.                 end
  5114.                 wait()
  5115.                 rng:Destroy()
  5116.                 end)()
  5117.             hum.WalkSpeed = 80
  5118.         BV = Instance.new("BodyVelocity", torso)
  5119.         BV.maxForce = Vector3.new(0,200000,0)
  5120.         BV.P = 240000
  5121.         BV.velocity = Vector3.new(0,700,0)
  5122.     for i = 1, 20 do
  5123.         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)
  5124.         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)
  5125.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0,     math.rad(-20)), 0.7)
  5126.         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)
  5127.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5128.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5129.         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)
  5130.         if Debounces.on == false then break end
  5131.         wait()
  5132.     end
  5133. x:Destroy()
  5134. BV:Destroy()
  5135.     --[[for i = 1, 30 do
  5136.         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)
  5137.         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)
  5138.         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)
  5139.         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)
  5140.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5141.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0),     0.3)
  5142.         if Debounces.on == false then break end
  5143.         wait()
  5144.     end]]--
  5145. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5146.     for i = 1, 30 do
  5147.         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)
  5148.         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)
  5149.         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)
  5150.         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)
  5151.         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)
  5152.         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)
  5153.         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)
  5154.         if Debounces.on == false then break end
  5155.         wait()
  5156.     end
  5157. end
  5158. Debounces.on = false
  5159. Debounces.NoIdl = false
  5160. local ry,ht,ps=nil,nil,nil
  5161. while ht==nil do
  5162.         ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5163.         wait()
  5164. end
  5165. z = Instance.new("Sound",char)
  5166. z.SoundId = "rbxassetid://142070127"
  5167. z.Volume = 1
  5168. wait(.1)
  5169. z:Play()
  5170. Landing()
  5171. hum.WalkSpeed = 9
  5172. if Debounces.CanAttack == false then
  5173. Debounces.CanAttack = true
  5174. end
  5175. end
  5176. end
  5177. end)
  5178. ----------------------------------------------------
  5179. Grab = false
  5180. mouse.KeyDown:connect(function(key)
  5181.     if key == "z" then
  5182.         Debounces.on = true
  5183.         Debounces.NoIdl = true
  5184.         if Grab == false then
  5185.         gp = nil
  5186.         con1=larm.Touched:connect(function(hit) -- this is grab
  5187.             ht = hit.Parent
  5188.             hum1=ht:FindFirstChild('Humanoid')
  5189.             if hum1 ~= nil then
  5190.                 hum1.PlatformStand=false
  5191.                 gp = ht
  5192.                 Grab = true
  5193.                 asd=weld5(larm,ht:FindFirstChild("UpperTorso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5194.                 asd.Parent = larm
  5195.                 asd.Name = "asd"
  5196.                 asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5197.                                 con1:disconnect()
  5198.             elseif hum1 ~= nil then
  5199.                 con1:disconnect()
  5200.                 wait() return
  5201.             end
  5202.         end)
  5203.         for i = 1, 18 do
  5204.             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)
  5205.             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)
  5206.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5207.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5208.             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)
  5209.             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)
  5210.             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)
  5211.             if Debounces.on == false then break end
  5212.             wait()
  5213.         end
  5214.     con1:disconnect()
  5215.     Debounces.on = false
  5216.     Debounces.NoIdl = false
  5217.     elseif Grab == true then
  5218.         Grab = false
  5219.     for i = 1, 20 do
  5220.         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)
  5221.         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)
  5222.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5223.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5224.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5225.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5226.         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)
  5227.         if Debounces.on == false then end
  5228.         wait()
  5229.     end
  5230.         if gp ~= nil then
  5231.         for i,v in pairs(larm:GetChildren()) do
  5232.             if v.Name == "asd" and v:IsA("Weld") then
  5233.                 v:Remove()
  5234.             end
  5235.         end
  5236.         bv = Instance.new("BodyVelocity",gp:FindFirstChild("UpperTorso"))
  5237.         bv.maxForce = Vector3.new(400000, 400000, 400000)
  5238.         bv.P = 12500
  5239.         bv.velocity = char.Head.CFrame.lookVector * 20
  5240.         for i = 1, 12 do
  5241.             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)
  5242.             if Debounces.on == false then end
  5243.             wait()
  5244.         end--
  5245.         ht=nil
  5246.         Spawn(function()
  5247.             wait(0.5)
  5248.             bv:Destroy()
  5249.         end)
  5250.         Debounces.on = false
  5251.         Debounces.NoIdl = false
  5252.         elseif ht == nil then wait()
  5253.         Grab = false
  5254.         Debounces.on = false
  5255.         Debounces.NoIdl = false
  5256.             end
  5257.         end
  5258.     end
  5259. end)
  5260. ----------------------------------------------------
  5261. mouse.KeyDown:connect(function(key)
  5262.     if string.byte(key) == 52 then
  5263.         char.Humanoid.WalkSpeed = 20
  5264.     end
  5265. end)
  5266. mouse.KeyUp:connect(function(key)
  5267.     if string.byte(key) == 52 then
  5268.         char.Humanoid.WalkSpeed = 9
  5269.     end
  5270. end)
  5271. ----------------------------------------------------
  5272. Change = false
  5273. mouse.KeyDown:connect(function(key)
  5274.     if key == "n" then
  5275.         if Change == false then
  5276.             Change = true
  5277.         stanceToggle = "Normal2"
  5278.     elseif Change == true then
  5279.         Change = false
  5280.         stanceToggle = "Normal"
  5281.         end
  5282.     end
  5283. end)
  5284. ----------------------------------------------------
  5285. local animpose = "Idle"
  5286. local lastanimpose = "Idle"
  5287. local sine = 0
  5288. local change = 1
  5289. local val = 0
  5290. local ffing = false
  5291. local och = 0
  5292. ----------------------------------------------------
  5293. game:GetService("RunService").RenderStepped:connect(function()
  5294. --[[if char.Humanoid.Jump == true then
  5295. jump = true
  5296. else
  5297. jump = false
  5298. end]]
  5299. char.Humanoid.FreeFalling:connect(function(f)
  5300. if f then
  5301. ffing = true
  5302. else
  5303. ffing = false
  5304. end
  5305. end)
  5306. sine = sine + change
  5307. if jumpn == true then
  5308. animpose = "Jumping"
  5309. elseif ffing == true then
  5310. animpose = "Freefalling"
  5311. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5312. animpose = "Idle"
  5313. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5314. animpose = "Walking"
  5315. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5316. animpose = "Running"
  5317. end
  5318. if animpose ~= lastanimpose then
  5319. sine = 0
  5320. if Debounces.NoIdl == false then
  5321. if animpose == "Idle" then
  5322. for i = 1, 2 do
  5323. 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)
  5324. 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)
  5325. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5326. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5327. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5328. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5329. 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)
  5330. end
  5331. elseif animpose == "Walking" then
  5332. for i = 1, 2 do
  5333. 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)
  5334. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5335. 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)
  5336. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5337. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5338. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5339. 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)
  5340. end
  5341. elseif animpose == "Running" then
  5342. for i = 1, 2 do
  5343. 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)
  5344. 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)
  5345. 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)
  5346. 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)
  5347. 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)
  5348. 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)
  5349. 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)
  5350. end
  5351. rs:wait(2)
  5352. end
  5353. else
  5354. end
  5355. end
  5356. lastanimpose = animpose
  5357. if Debounces.NoIdl == false then
  5358. if animpose == "Idle" then
  5359. if stanceToggle == "Normal" then
  5360. change = 0.5
  5361. 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)
  5362. 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)
  5363. 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)
  5364. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5365. 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)
  5366. 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)
  5367. 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)
  5368. elseif stanceToggle == "Sitting" then
  5369. 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)
  5370. 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)
  5371. 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)
  5372. 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)
  5373. 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)
  5374. 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)
  5375. 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)
  5376. elseif stanceToggle == "Normal2" then
  5377. 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)
  5378. 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)
  5379. 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)
  5380. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5381. 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)
  5382. 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)
  5383. 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)
  5384. end
  5385. elseif animpose == "Walking" then
  5386. if stanceToggle == "Normal" then
  5387. change = 1
  5388. 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)
  5389. 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)
  5390. 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)
  5391. 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)
  5392. 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)
  5393. 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)
  5394. 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)
  5395. elseif stanceToggle == "Normal2" then
  5396. 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)
  5397. 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)
  5398. 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)
  5399. 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)
  5400. 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)
  5401. 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)
  5402. 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)
  5403. end
  5404. elseif animpose == "Running" then
  5405. change = 1
  5406. 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)
  5407. 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)
  5408. 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)
  5409. 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)
  5410. 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)
  5411. 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)
  5412. 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)
  5413. end
  5414. end
  5415. och=och+1
  5416. for _,v in pairs(orbt) do
  5417.         pcall(function()
  5418.                 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)))
  5419.         end)
  5420. end
  5421. for _,v in pairs(stlt) do
  5422.         pcall(function()
  5423.                 v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5424.         end)
  5425. end
  5426. for _,v in pairs(chot) do
  5427.         pcall(function()
  5428.                 v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5429.                 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))
  5430.         end)
  5431. end
  5432. for _,v in pairs(cfxt) do
  5433.         pcall(function()
  5434.                 local vs=v.Mesh.Scale
  5435.                 v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5436.                 v.Transparency=v.Transparency+0.05
  5437.         end)
  5438. end
  5439. for _,v in pairs(pfxt) do
  5440.         pcall(function()
  5441.                 local vs=v.Mesh.Scale
  5442.                 v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5443.                 v.Transparency=v.Transparency+0.025
  5444.         end)
  5445. end
  5446. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement