Advertisement
Guest User

ioio

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