Advertisement
Guest User

9999999999

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