DerekWeyant

DarKTitanReborn

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