swagbeastbro25

Untitled

May 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 148.88 KB | None | 0 0
  1. --[[
  2. User: TheDarkRevenant
  3. Script: DSSJ3
  4. Pass: QNAh3g8U
  5.  
  6. ]]
  7.  
  8. local p = game.Players.LocalPlayer
  9. local char = p.Character
  10. local mouse = p:GetMouse()
  11. local larm = char["Left Arm"]
  12. local rarm = char["Right Arm"]
  13. local lleg = char["Left Leg"]
  14. local rleg = char["Right Leg"]
  15. local hed = char.Head
  16. local torso = char.Torso
  17. local hum = char.Humanoid
  18. local cam = game.Workspace.CurrentCamera
  19. local root = char.HumanoidRootPart
  20. local deb = false
  21. local shot = 0
  22. local debris=game:service"Debris"
  23. local l = game:GetService("Lighting")
  24. local rs = game:GetService("RunService").RenderStepped
  25. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  26. math.randomseed(os.time())
  27. for i,v in pairs(char:children()) do
  28. if v:IsA("Hat") then
  29. v:Destroy()
  30. end
  31. end
  32. for i,v in pairs (hed:GetChildren()) do
  33. if v:IsA("Sound") then
  34. v:Destroy()
  35. end
  36. end
  37. ----------------------------------------------------
  38. Debounces = {
  39. CanAttack = true;
  40. NoIdl = false;
  41. Slashing = false;
  42. Slashed = false;
  43. RPunch = false;
  44. RPunched = false;
  45. LPunch = false;
  46. LPunched = false;
  47. }
  48. local Touche = {char.Name, }
  49. ----------------------------------------------------
  50. --[[local Head = Instance.new("Part",char)
  51. Head.Size = Vector3.new(2.5,2.5,1)
  52. Head.Transparency = 1
  53. hed.Transparency = 1
  54. Head:BreakJoints()
  55. local hw = Instance.new("Weld",char.Head)
  56. hw.Part0 = char.Head
  57. hw.Part1 = Head
  58. hw.C0 = CFrame.new(0,1.2,0)
  59. faceDecal = Instance.new("Decal",Head)
  60. faceDecal.Face = Enum.NormalId.Front
  61. faceDecal.Texture = "rbxassetid://400387868"
  62. local backDecal = Instance.new("Decal",Head)
  63. backDecal.Face = Enum.NormalId.Back
  64. backDecal.Texture = "rbxassetid://400377807"
  65. local mes = Instance.new("BlockMesh",Head)
  66. mes.Scale = Vector3.new(1,1,.4) ]]
  67.  
  68. hed.Size = Vector3.new(1.5,1.5,1)
  69. hed.Transparency = 1
  70. faceDecal = Instance.new("Decal",hed)
  71. faceDecal.Face = Enum.NormalId.Front
  72. faceDecal.Texture = "rbxassetid://400387868"
  73. --[[local backDecal = Instance.new("Decal",hed)
  74. backDecal.Face = Enum.NormalId.Back
  75. backDecal.Texture = "rbxassetid://400377807" ]]
  76. hed.Mesh:Destroy()
  77. local mes = Instance.new("BlockMesh",hed)
  78. mes.Scale = Vector3.new(.5,1,.6)
  79. -----------------------------------------------------
  80. --hed.face.Texture = "rbxassetid://34668268"
  81. hed.face:Destroy()
  82. char["Body Colors"].HeadColor = BrickColor.new("White")
  83. char["Body Colors"].TorsoColor = BrickColor.new("White")
  84. char["Body Colors"].LeftArmColor = BrickColor.new("White")
  85. char["Body Colors"].RightArmColor = BrickColor.new("White")
  86. ----------------------------------------------------
  87. larm.Size = larm.Size * 2
  88. rarm.Size = rarm.Size * 2
  89. lleg.Size = lleg.Size * 2
  90. rleg.Size = rleg.Size * 2
  91. torso.Size = torso.Size * 2
  92. hed.Size = hed.Size * 2
  93. root.Size = root.Size * 2
  94. ----------------------------------------------------
  95. ypcall(function()
  96. char.Shirt:Destroy()
  97. char.Pants:Destroy()
  98. shirt = Instance.new("Shirt", char)
  99. shirt.Name = "Shirt"
  100. pants = Instance.new("Pants", char)
  101. pants.Name = "Pants"
  102. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  103. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  104. end)
  105. ----------------------------------------------------
  106. function lerp(a, b, t) -- Linear interpolation
  107. return a + (b - a)*t
  108. end
  109.  
  110. function slerp(a, b, t) --Spherical interpolation
  111. dot = a:Dot(b)
  112. if dot > 0.99999 or dot < -0.99999 then
  113. return t <= 0.5 and a or b
  114. else
  115. r = math.acos(dot)
  116. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  117. end
  118. end
  119.  
  120. function matrixInterpolate(a, b, t)
  121. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  122. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  123. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  124. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  125. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  126. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  127. local t = v1:Dot(v2)
  128. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  129. return CFrame.new()
  130. end
  131. return CFrame.new(
  132. v0.x, v0.y, v0.z,
  133. v1.x, v1.y, v1.z,
  134. v2.x, v2.y, v2.z,
  135. v3.x, v3.y, v3.z)
  136. end
  137. ----------------------------------------------------
  138. function genWeld(a,b)
  139. local w = Instance.new("Weld",a)
  140. w.Part0 = a
  141. w.Part1 = b
  142. return w
  143. end
  144. function weld(a, b)
  145. local weld = Instance.new("Weld")
  146. weld.Name = "W"
  147. weld.Part0 = a
  148. weld.Part1 = b
  149. weld.C0 = a.CFrame:inverse() * b.CFrame
  150. weld.Parent = a
  151. return weld;
  152. end
  153. ----------------------------------------------------
  154. function Lerp(c1,c2,al)
  155. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  156. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  157. for i,v in pairs(com1) do
  158. com1[i] = v+(com2[i]-v)*al
  159. end
  160. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  161. end
  162. ----------------------------------------------------
  163. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  164. local wld = Instance.new("Weld", wp1)
  165. wld.Part0 = wp0
  166. wld.Part1 = wp1
  167. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  168. end
  169. ----------------------------------------------------
  170. function weld5(part0, part1, c0, c1)
  171. weeld=Instance.new("Weld", part0)
  172. weeld.Part0=part0
  173. weeld.Part1=part1
  174. weeld.C0=c0
  175. weeld.C1=c1
  176. return weeld
  177. end
  178. ----------------------------------------------------
  179. function HasntTouched(plrname)
  180. local ret = true
  181. for _, v in pairs(Touche) do
  182. if v == plrname then
  183. ret = false
  184. end
  185. end
  186. return ret
  187. end
  188. ----------------------------------------------------
  189. newWeld(torso, larm, -1.5, 0.5, 0)
  190. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  191. newWeld(torso, rarm, 1.5, 0.5, 0)
  192. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  193. newWeld(torso, hed, 0, 1.5, 0)
  194. newWeld(torso, lleg, -0.5, -1, 0)
  195. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  196. newWeld(torso, rleg, 0.5, -1, 0)
  197. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  198. newWeld(root, torso, 0, -1, 0)
  199. torso.Weld.C1 = CFrame.new(0, -1, 0)
  200. ----------------------------------------------------
  201. z = Instance.new("Sound", char)
  202. z.SoundId = "rbxassetid://0000"--303570180
  203. z.Looped = true
  204. z.Pitch = 1
  205. z.Volume = 1
  206. wait(.1)
  207. z:Play()
  208. ----------------------------------------------------
  209. --[[local Transforming = true
  210. hum.WalkSpeed = 0
  211. local fx = Instance.new("Part",torso)
  212. fx.Anchored = true
  213. fx.Material = "Neon"
  214. fx.CanCollide = false
  215. fx.Locked = true
  216. fx.Transparency = 1
  217. fx.Material = "SmoothPlastic"
  218. fx.Size = Vector3.new(1,1,1)
  219. fx.TopSurface = "SmoothNoOutlines"
  220. fx.BottomSurface = "SmoothNoOutlines"
  221. fx.BrickColor = BrickColor.new("Really black")
  222. fxm = Instance.new("SpecialMesh",fx)
  223. fxm.MeshType = "Sphere"
  224. fxm.Scale = Vector3.new(1,1,1)
  225. for i = 1, 20 do rs:wait()
  226. fx.Transparency = fx.Transparency - (1/20)
  227. fx.CFrame = torso.CFrame
  228. fxm.Scale = fxm.Scale + Vector3.new(0.5,0.5,0.5)
  229. rs:wait()
  230. end ]]
  231. ----------------------------------------------------
  232. local m = Instance.new("Model")
  233. m.Name = "Hair"
  234. p1 = Instance.new("Part", m)
  235. p1.BrickColor = BrickColor.new("Really black")
  236. p1.FormFactor = Enum.FormFactor.Symmetric
  237. p1.Size = Vector3.new(1, 1, 1)
  238. p1.CFrame = CFrame.new(-2.49043155, 8.24595642, -3.40113306, -5.48362732e-006, -0.978699088, 0.205299795, 3.27825546e-007, -0.205299854, -0.978699148, 1, -5.28991222e-006, 1.48639083e-006)
  239. p1.CanCollide = false
  240. p1.Locked = true
  241. p1.BottomSurface = Enum.SurfaceType.Smooth
  242. p1.TopSurface = Enum.SurfaceType.Smooth
  243. b1 = Instance.new("SpecialMesh", p1)
  244. b1.MeshId = "http://www.roblox.com/asset/?id=12212520"
  245. b1.TextureId = ""
  246. b1.MeshType = Enum.MeshType.FileMesh
  247. b1.Name = "Mesh"
  248. b1.VertexColor = Vector3.new(0, 0, 0)
  249. b1.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  250. p2 = Instance.new("Part", m)
  251. p2.BrickColor = BrickColor.new("Pastel brown")
  252. p2.Transparency = 1
  253. p2.Name = "Head"
  254. p2.FormFactor = Enum.FormFactor.Symmetric
  255. p2.Size = Vector3.new(2, 1, 1)
  256. p2.CFrame = CFrame.new(-1.70008016, 8.14794922, -3.40013027, 4.24603923e-006, 7.4505806e-008, -1, -1.50268988e-007, 1, 1.49011612e-008, 1.00000012, 6.79109462e-008, 4.23316806e-006)
  257. p2.CanCollide = false
  258. p2.Locked = true
  259. p2.TopSurface = Enum.SurfaceType.Smooth
  260. b2 = Instance.new("SpecialMesh", p2)
  261. b2.MeshType = Enum.MeshType.Head
  262. b2.Name = "Mesh"
  263. b2.Scale = Vector3.new(1.25, 1.25, 1.25)
  264. p3 = Instance.new("Part", m)
  265. p3.BrickColor = BrickColor.new("Really black")
  266. p3.FormFactor = Enum.FormFactor.Symmetric
  267. p3.Size = Vector3.new(2, 2, 2)
  268. p3.CFrame = CFrame.new(-1.70003617, 8.71796131, -3.4000442, 2.57710985e-006, 6.95607483e-008, -1.00000012, -1.20466638e-007, 1, 9.95640903e-009, 1.00000024, 3.81086345e-008, 2.56423846e-006)
  269. p3.CanCollide = false
  270. p3.Locked = true
  271. p3.BottomSurface = Enum.SurfaceType.Smooth
  272. p3.TopSurface = Enum.SurfaceType.Smooth
  273. b3 = Instance.new("SpecialMesh", p3)
  274. b3.MeshId = "http://www.roblox.com/asset/?id=16627529"
  275. b3.TextureId = ""
  276. b3.MeshType = Enum.MeshType.FileMesh
  277. b3.Name = "Mesh"
  278. b3.VertexColor = Vector3.new(0, 0, 0)
  279. b3.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  280. p4 = Instance.new("Part", m)
  281. p4.BrickColor = BrickColor.new("Really black")
  282. p4.FormFactor = Enum.FormFactor.Symmetric
  283. p4.Size = Vector3.new(1, 1, 1)
  284. p4.CFrame = CFrame.new(-1.77981007, 8.84795475, -3.40016508, 5.79576135e-006, 7.9450956e-008, -1.00000012, -1.80071311e-007, 1, 1.98458743e-008, 1.00000024, 9.77132402e-008, 5.78289018e-006)
  285. p4.CanCollide = false
  286. p4.Locked = true
  287. p4.BottomSurface = Enum.SurfaceType.Smooth
  288. p4.TopSurface = Enum.SurfaceType.Smooth
  289. b4 = Instance.new("SpecialMesh", p4)
  290. b4.MeshId = "http://www.roblox.com/asset/?id=19326912"
  291. b4.TextureId = ""
  292. b4.MeshType = Enum.MeshType.FileMesh
  293. b4.Name = "Mesh"
  294. b4.VertexColor = Vector3.new(0, 0, 0)
  295. p5 = Instance.new("Part", m)
  296. p5.BrickColor = BrickColor.new("Really black")
  297. p5.FormFactor = Enum.FormFactor.Symmetric
  298. p5.Size = Vector3.new(1, 1, 1)
  299. p5.CFrame = CFrame.new(-1.70003772, 8.46796131, -3.40004301, -3.43517968e-007, 2.98088111e-007, -1, -1.00421907e-007, 1, 2.38484063e-007, 1.00000012, 1.80640072e-008, -3.56389592e-007)
  300. p5.CanCollide = false
  301. p5.Locked = true
  302. p5.BottomSurface = Enum.SurfaceType.Smooth
  303. p5.TopSurface = Enum.SurfaceType.Smooth
  304. b5 = Instance.new("SpecialMesh", p5)
  305. b5.MeshId = "http://www.roblox.com/asset/?id=45916884"
  306. b5.TextureId = ""
  307. b5.MeshType = Enum.MeshType.FileMesh
  308. b5.Name = "Mesh"
  309. b5.VertexColor = Vector3.new(0, 0, 0)
  310. b5.Scale = Vector3.new(1, 0.899999976, 1)
  311. p6 = Instance.new("Part", m)
  312. p6.BrickColor = BrickColor.new("Really black")
  313. p6.FormFactor = Enum.FormFactor.Symmetric
  314. p6.Size = Vector3.new(1, 1, 1)
  315. p6.CFrame = CFrame.new(-1.89967656, 8.58795834, -3.44990659, -5.81936433e-007, 5.36502284e-007, -0.99999994, -1.3998249e-007, 1, 4.76898265e-007, 1, 5.76247672e-008, -5.94808171e-007)
  316. p6.CanCollide = false
  317. p6.Locked = true
  318. p6.BottomSurface = Enum.SurfaceType.Smooth
  319. p6.TopSurface = Enum.SurfaceType.Smooth
  320. b6 = Instance.new("SpecialMesh", p6)
  321. b6.MeshId = "http://www.roblox.com/asset/?id=62246019"
  322. b6.TextureId = ""
  323. b6.MeshType = Enum.MeshType.FileMesh
  324. b6.Name = "Mesh"
  325. b6.VertexColor = Vector3.new(0, 0, 0)
  326. p7 = Instance.new("Part", m)
  327. p7.BrickColor = BrickColor.new("Really black")
  328. p7.FormFactor = Enum.FormFactor.Symmetric
  329. p7.Size = Vector3.new(1, 1, 1)
  330. p7.CFrame = CFrame.new(-1.89918542, 8.31796837, -3.50097537, -4.62727087e-007, 5.36502228e-007, -0.999999881, -1.39982518e-007, 1, 4.76898208e-007, 0.99999994, 5.76247459e-008, -4.75598938e-007)
  331. p7.CanCollide = false
  332. p7.Locked = true
  333. p7.BottomSurface = Enum.SurfaceType.Smooth
  334. p7.TopSurface = Enum.SurfaceType.Smooth
  335. b7 = Instance.new("SpecialMesh", p7)
  336. b7.MeshId = "http://www.roblox.com/asset/?id=76056263"
  337. b7.TextureId = ""
  338. b7.MeshType = Enum.MeshType.FileMesh
  339. b7.Name = "Mesh"
  340. b7.VertexColor = Vector3.new(0, 0, 0)
  341. p8 = Instance.new("Part", m)
  342. p8.BrickColor = BrickColor.new("Really black")
  343. p8.FormFactor = Enum.FormFactor.Symmetric
  344. p8.Size = Vector3.new(1, 1, 1)
  345. p8.CFrame = CFrame.new(-2.62433338, 7.66397905, -3.4010179, -1.17798254e-006, -0.805111349, 0.593123376, -2.5008859e-007, -0.593123615, -0.805111527, 0.999999881, -9.58229293e-007, 4.4941558e-007)
  346. p8.CanCollide = false
  347. p8.Locked = true
  348. p8.BottomSurface = Enum.SurfaceType.Smooth
  349. p8.TopSurface = Enum.SurfaceType.Smooth
  350. b8 = Instance.new("SpecialMesh", p8)
  351. b8.MeshId = "http://www.roblox.com/asset/?id=12212520"
  352. b8.TextureId = ""
  353. b8.MeshType = Enum.MeshType.FileMesh
  354. b8.Name = "Mesh"
  355. b8.VertexColor = Vector3.new(0, 0, 0)
  356. b8.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  357. p9 = Instance.new("Part", m)
  358. p9.BrickColor = BrickColor.new("Really black")
  359. p9.FormFactor = Enum.FormFactor.Symmetric
  360. p9.Size = Vector3.new(2, 1, 2)
  361. p9.CFrame = CFrame.new(-1.76505995, 8.56096649, -3.40065479, -9.73168881e-007, -0.0995008349, -0.995037436, -1.70322267e-007, 0.995037675, -0.0995009243, 1, 1.13823972e-007, -6.80968242e-007)
  362. p9.CanCollide = false
  363. p9.Locked = true
  364. p9.BottomSurface = Enum.SurfaceType.Smooth
  365. p9.TopSurface = Enum.SurfaceType.Smooth
  366. b9 = Instance.new("SpecialMesh", p9)
  367. b9.MeshId = "http://www.roblox.com/asset/?id=12259089"
  368. b9.TextureId = ""
  369. b9.MeshType = Enum.MeshType.FileMesh
  370. b9.Name = "Mesh"
  371. b9.VertexColor = Vector3.new(0, 0, 0)
  372. b9.Scale = Vector3.new(1.01999998, 1.04999995, 1.04999995)
  373. p10 = Instance.new("Part", m)
  374. p10.BrickColor = BrickColor.new("Really black")
  375. p10.FormFactor = Enum.FormFactor.Symmetric
  376. p10.Size = Vector3.new(1, 1, 1)
  377. p10.CFrame = CFrame.new(-2.0207715, 9.06097031, -3.39961624, -1.10652763e-006, -0.683569431, -0.729885519, -2.85231891e-007, 0.729885638, -0.68356967, 1.00000012, -3.22293062e-007, -8.40051371e-007)
  378. p10.CanCollide = false
  379. p10.Locked = true
  380. p10.BottomSurface = Enum.SurfaceType.Smooth
  381. p10.TopSurface = Enum.SurfaceType.Smooth
  382. b10 = Instance.new("SpecialMesh", p10)
  383. b10.MeshId = "http://www.roblox.com/asset/?id=12212520"
  384. b10.TextureId = ""
  385. b10.MeshType = Enum.MeshType.FileMesh
  386. b10.Name = "Mesh"
  387. b10.VertexColor = Vector3.new(0, 0, 0)
  388. b10.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  389. p11 = Instance.new("Part", m)
  390. p11.BrickColor = BrickColor.new("Really black")
  391. p11.FormFactor = Enum.FormFactor.Symmetric
  392. p11.Size = Vector3.new(1, 1, 1)
  393. p11.CFrame = CFrame.new(-2.16468835, 8.78595829, -3.40089417, -1.41617738e-006, -0.989475727, -0.144699216, -4.36450762e-007, 0.144699067, -0.989476085, 1.00000024, -9.47996682e-007, -7.38401468e-007)
  394. p11.CanCollide = false
  395. p11.Locked = true
  396. p11.BottomSurface = Enum.SurfaceType.Smooth
  397. p11.TopSurface = Enum.SurfaceType.Smooth
  398. b11 = Instance.new("SpecialMesh", p11)
  399. b11.MeshId = "http://www.roblox.com/asset/?id=12212520"
  400. b11.TextureId = ""
  401. b11.MeshType = Enum.MeshType.FileMesh
  402. b11.Name = "Mesh"
  403. b11.VertexColor = Vector3.new(0, 0, 0)
  404. b11.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  405. p12 = Instance.new("Part", m)
  406. p12.BrickColor = BrickColor.new("Really black")
  407. p12.FormFactor = Enum.FormFactor.Custom
  408. p12.Size = Vector3.new(1, 3.5, 1)
  409. p12.CFrame = CFrame.new(-3.74216318, 6.74288082, -3.40101933, -1.20476273e-006, -0.553697288, 0.832718134, -3.31002866e-007, -0.832718611, -0.553697169, 1.00000036, -8.7345768e-007, 3.69213154e-007)
  410. p12.CanCollide = false
  411. p12.Locked = true
  412. p12.BottomSurface = Enum.SurfaceType.Smooth
  413. p12.TopSurface = Enum.SurfaceType.Smooth
  414. b12 = Instance.new("SpecialMesh", p12)
  415. b12.MeshId = "http://www.roblox.com/asset/?id=12212520"
  416. b12.TextureId = ""
  417. b12.MeshType = Enum.MeshType.FileMesh
  418. b12.Name = "Mesh"
  419. b12.VertexColor = Vector3.new(0, 0, 0)
  420. b12.Scale = Vector3.new(1, 3, 1.29999995)
  421. p13 = Instance.new("Part", m)
  422. p13.BrickColor = BrickColor.new("Really black")
  423. p13.FormFactor = Enum.FormFactor.Custom
  424. p13.Size = Vector3.new(1, 2, 1)
  425. p13.CFrame = CFrame.new(-3.32689047, 6.86741829, -3.40101862, -9.81709945e-007, -0.319307148, 0.947651446, -5.6545997e-007, -0.947651923, -0.31930691, 1.00000048, -8.39551717e-007, 1.79318391e-007)
  426. p13.CanCollide = false
  427. p13.Locked = true
  428. p13.BottomSurface = Enum.SurfaceType.Smooth
  429. p13.TopSurface = Enum.SurfaceType.Smooth
  430. b13 = Instance.new("SpecialMesh", p13)
  431. b13.MeshId = "http://www.roblox.com/asset/?id=12212520"
  432. b13.TextureId = ""
  433. b13.MeshType = Enum.MeshType.FileMesh
  434. b13.Name = "Mesh"
  435. b13.VertexColor = Vector3.new(0, 0, 0)
  436. b13.Scale = Vector3.new(1, 3, 1.29999995)
  437. p14 = Instance.new("Part", m)
  438. p14.BrickColor = BrickColor.new("Really black")
  439. p14.FormFactor = Enum.FormFactor.Custom
  440. p14.Size = Vector3.new(1, 2, 1)
  441. p14.CFrame = CFrame.new(-3.02689028, 7.96740961, -3.40101862, -1.33478545e-006, -0.750354111, 0.661036491, -5.20037702e-008, -0.661037207, -0.750354171, 1.0000006, -6.31296757e-007, 2.01137496e-007)
  442. p14.CanCollide = false
  443. p14.Locked = true
  444. p14.BottomSurface = Enum.SurfaceType.Smooth
  445. p14.TopSurface = Enum.SurfaceType.Smooth
  446. b14 = Instance.new("SpecialMesh", p14)
  447. b14.MeshId = "http://www.roblox.com/asset/?id=12212520"
  448. b14.TextureId = ""
  449. b14.MeshType = Enum.MeshType.FileMesh
  450. b14.Name = "Mesh"
  451. b14.VertexColor = Vector3.new(0, 0, 0)
  452. b14.Scale = Vector3.new(1, 3, 1.29999995)
  453. p15 = Instance.new("Part", m)
  454. p15.BrickColor = BrickColor.new("Really black")
  455. p15.FormFactor = Enum.FormFactor.Custom
  456. p15.Size = Vector3.new(1, 2.5, 1)
  457. p15.CFrame = CFrame.new(-2.96531463, 7.75924349, -2.90101862, 0.342019022, -0.520305753, 0.782499552, -1.1920929e-007, -0.832718909, -0.553697407, 0.939693451, 0.189374983, -0.284806281)
  458. p15.CanCollide = false
  459. p15.Locked = true
  460. p15.BottomSurface = Enum.SurfaceType.Smooth
  461. p15.TopSurface = Enum.SurfaceType.Smooth
  462. b15 = Instance.new("SpecialMesh", p15)
  463. b15.MeshId = "http://www.roblox.com/asset/?id=12212520"
  464. b15.TextureId = ""
  465. b15.MeshType = Enum.MeshType.FileMesh
  466. b15.Name = "Mesh"
  467. b15.VertexColor = Vector3.new(0, 0, 0)
  468. b15.Scale = Vector3.new(1, 3, 1.29999995)
  469. p16 = Instance.new("Part", m)
  470. p16.BrickColor = BrickColor.new("Really black")
  471. p16.FormFactor = Enum.FormFactor.Custom
  472. p16.Size = Vector3.new(1, 2.5, 1)
  473. p16.CFrame = CFrame.new(-2.96531439, 7.75924349, -3.80101967, -0.258820295, -0.534830391, 0.804343879, -1.78813934e-007, -0.832718968, -0.553697228, 0.96592629, -0.143308073, 0.215523779)
  474. p16.CanCollide = false
  475. p16.Locked = true
  476. p16.BottomSurface = Enum.SurfaceType.Smooth
  477. p16.TopSurface = Enum.SurfaceType.Smooth
  478. b16 = Instance.new("SpecialMesh", p16)
  479. b16.MeshId = "http://www.roblox.com/asset/?id=12212520"
  480. b16.TextureId = ""
  481. b16.MeshType = Enum.MeshType.FileMesh
  482. b16.Name = "Mesh"
  483. b16.VertexColor = Vector3.new(0, 0, 0)
  484. b16.Scale = Vector3.new(1, 3, 1.29999995)
  485. p17 = Instance.new("Part", m)
  486. p17.BrickColor = BrickColor.new("Really black")
  487. p17.FormFactor = Enum.FormFactor.Custom
  488. p17.Size = Vector3.new(1, 2.4000001, 1)
  489. p17.CFrame = CFrame.new(-2.69075108, 7.07788849, -3.40101933, -1.13248825e-006, -0.319307148, 0.947651625, -1.1920929e-006, -0.947652161, -0.319306791, 1.0000006, -1.54972076e-006, 1.04308128e-007)
  490. p17.CanCollide = false
  491. p17.Locked = true
  492. p17.BottomSurface = Enum.SurfaceType.Smooth
  493. p17.TopSurface = Enum.SurfaceType.Smooth
  494. b17 = Instance.new("SpecialMesh", p17)
  495. b17.MeshId = "http://www.roblox.com/asset/?id=12212520"
  496. b17.TextureId = ""
  497. b17.MeshType = Enum.MeshType.FileMesh
  498. b17.Name = "Mesh"
  499. b17.VertexColor = Vector3.new(0, 0, 0)
  500. b17.Scale = Vector3.new(1, 3, 1.29999995)
  501. p18 = Instance.new("Part", m)
  502. p18.BrickColor = BrickColor.new("Really black")
  503. p18.FormFactor = Enum.FormFactor.Custom
  504. p18.Size = Vector3.new(2, 2, 2)
  505. p18.CFrame = CFrame.new(-1.70003319, 8.71796608, -3.40004444, -2.37434961e-006, 1.78813934e-007, 1.00000036, -2.35242567e-007, 1.00000072, 3.27825546e-007, -1.0000006, 7.95440158e-009, -2.91315405e-006)
  506. p18.CanCollide = false
  507. p18.Locked = true
  508. p18.BottomSurface = Enum.SurfaceType.Smooth
  509. p18.TopSurface = Enum.SurfaceType.Smooth
  510. b18 = Instance.new("SpecialMesh", p18)
  511. b18.MeshId = "http://www.roblox.com/asset/?id=16627529"
  512. b18.TextureId = ""
  513. b18.MeshType = Enum.MeshType.FileMesh
  514. b18.Name = "Mesh"
  515. b18.VertexColor = Vector3.new(0, 0, 0)
  516. b18.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  517. w1 = Instance.new("Weld", p1)
  518. w1.Name = "Head_Weld"
  519. w1.Part0 = p1
  520. w1.C0 = CFrame.new(3.40111661, -0.744508088, 8.58160019, -5.48362732e-006, 3.27825546e-007, 1, -0.978699088, -0.205299854, -5.30481339e-006, 0.205299824, -0.978699148, 1.49011612e-006)
  521. w1.Part1 = p2
  522. w1.C1 = CFrame.new(3.40013766, -8.14794827, -1.70006609, 4.23192978e-006, -1.08796726e-007, 1.00000012, 2.9664772e-008, 1, 1.08796598e-007, -1.00000012, 2.96642924e-008, 4.23192978e-006)
  523. w2 = Instance.new("Weld", p2)
  524. w2.Name = "Part_Weld"
  525. w2.Part0 = p2
  526. w2.C0 = CFrame.new(3.40013766, -8.14794827, -1.70006609, 4.23192978e-006, -1.08796726e-007, 1.00000012, 2.9664772e-008, 1, 1.08796598e-007, -1.00000012, 2.96642924e-008, 4.23192978e-006)
  527. w2.Part1 = p3
  528. w2.C1 = CFrame.new(3.40004802, -8.71796036, -1.70002759, 2.56299973e-006, -7.89943471e-008, 1, 2.47196947e-008, 1, 7.89942831e-008, -1, 2.47194887e-008, 2.56299973e-006)
  529. w3 = Instance.new("Weld", p3)
  530. w3.Name = "Part_Weld"
  531. w3.Part0 = p3
  532. w3.C0 = CFrame.new(3.40004802, -8.71796036, -1.70002759, 2.56299973e-006, -7.89943471e-008, 1, 2.47196947e-008, 1, 7.89942831e-008, -1, 2.47194887e-008, 2.56299973e-006)
  533. w3.Part1 = p4
  534. w3.C1 = CFrame.new(3.40017533, -8.8479538, -1.77979064, 5.78165054e-006, -1.38599077e-007, 1, 3.46098972e-008, 1, 1.38598878e-007, -1, 3.46090907e-008, 5.78165054e-006)
  535. w4 = Instance.new("Weld", p4)
  536. w4.Name = "Part_Weld"
  537. w4.Part0 = p4
  538. w4.C0 = CFrame.new(3.40017533, -8.8479538, -1.77979064, 5.78165054e-006, -1.38599077e-007, 1, 3.46098972e-008, 1, 1.38598878e-007, -1, 3.46090907e-008, 5.78165054e-006)
  539. w4.Part1 = p5
  540. w4.C1 = CFrame.new(3.40004182, -8.46796036, -1.70004117, -3.57627869e-007, -5.89495883e-008, 0.99999994, 2.53247009e-007, 1, 5.89496665e-008, -0.99999994, 2.53247009e-007, -3.57627869e-007)
  541. w5 = Instance.new("Weld", p5)
  542. w5.Name = "Part_Weld"
  543. w5.Part0 = p5
  544. w5.C0 = CFrame.new(3.40004182, -8.46796036, -1.70004117, -3.57627869e-007, -5.89495883e-008, 0.99999994, 2.53247009e-007, 1, 5.89496665e-008, -0.99999994, 2.53247009e-007, -3.57627869e-007)
  545. w5.Part1 = p6
  546. w5.C1 = CFrame.new(3.44990563, -8.58795738, -1.89968324, -5.96046448e-007, -9.85101565e-008, 1, 4.91661183e-007, 1, 9.85104407e-008, -1, 4.9166124e-007, -5.96046448e-007)
  547. w6 = Instance.new("Weld", p6)
  548. w6.Name = "Part_Weld"
  549. w6.Part0 = p6
  550. w6.C0 = CFrame.new(3.44990563, -8.58795738, -1.89968324, -5.96046448e-007, -9.85101565e-008, 1, 4.91661183e-007, 1, 9.85104407e-008, -1, 4.9166124e-007, -5.96046448e-007)
  551. w6.Part1 = p7
  552. w6.C1 = CFrame.new(3.50097466, -8.31796741, -1.89919162, -4.76837158e-007, -9.85101849e-008, 0.99999994, 4.91661126e-007, 1, 9.85104265e-008, -0.99999994, 4.91661183e-007, -4.76837158e-007)
  553. w7 = Instance.new("Weld", p7)
  554. w7.Name = "Part_Weld"
  555. w7.Part0 = p7
  556. w7.C0 = CFrame.new(3.50097466, -8.31796741, -1.89919162, -4.76837158e-007, -9.85101849e-008, 0.99999994, 4.91661126e-007, 1, 9.85104265e-008, -0.99999994, 4.91661183e-007, -4.76837158e-007)
  557. w7.Part1 = p8
  558. w7.C1 = CFrame.new(3.40101647, 2.43280101, 7.72691393, -1.1920929e-006, -2.08616257e-007, 1, -0.805111527, -0.593123555, -9.83476639e-007, 0.593123496, -0.805111527, 4.17232513e-007)
  559. w8 = Instance.new("Weld", p8)
  560. w8.Name = "Part_Weld"
  561. w8.Part0 = p8
  562. w8.C0 = CFrame.new(3.40101647, 2.43280101, 7.72691393, -1.1920929e-006, -2.08616257e-007, 1, -0.805111527, -0.593123555, -9.83476639e-007, 0.593123496, -0.805111527, 4.17232513e-007)
  563. w8.Part1 = p9
  564. w8.C1 = CFrame.new(3.40065455, -8.6941061, -0.904481649, -8.34465027e-007, -1.67638063e-007, 1.00000012, -0.0995008498, 0.995037496, 1.00582838e-007, -0.995037615, -0.0995008498, -8.34465027e-007)
  565. w9 = Instance.new("Weld", p9)
  566. w9.Name = "Part_Weld"
  567. w9.Part0 = p9
  568. w9.C0 = CFrame.new(3.40065455, -8.6941061, -0.904481649, -8.34465027e-007, -1.67638063e-007, 1.00000012, -0.0995008498, 0.995037496, 1.00582838e-007, -0.995037615, -0.0995008498, -8.34465027e-007)
  569. w9.Part1 = p10
  570. w9.C1 = CFrame.new(3.39961672, -7.99480963, 4.71886492, -9.53674316e-007, -2.98023224e-007, 1, -0.683569372, 0.729885519, -4.47034836e-007, -0.729885459, -0.683569431, -9.53674316e-007)
  571. w10 = Instance.new("Weld", p10)
  572. w10.Name = "Part_Weld"
  573. w10.Part0 = p10
  574. w10.C0 = CFrame.new(3.39961672, -7.99480963, 4.71886492, -9.53674316e-007, -2.98023224e-007, 1, -0.683569372, 0.729885519, -4.47034836e-007, -0.729885459, -0.683569431, -9.53674316e-007)
  575. w10.Part1 = p11
  576. w10.C1 = CFrame.new(3.40089583, -3.41323304, 8.38025856, -1.31130219e-006, -4.76837158e-007, 1.00000012, -0.989475787, 0.144699097, -1.07288361e-006, -0.144699246, -0.989475787, -7.15255737e-007)
  577. w11 = Instance.new("Weld", p11)
  578. w11.Name = "Part_Weld"
  579. w11.Part0 = p11
  580. w11.C0 = CFrame.new(3.40089583, -3.41323304, 8.38025856, -1.31130219e-006, -4.76837158e-007, 1.00000012, -0.989475787, 0.144699097, -1.07288361e-006, -0.144699246, -0.989475787, -7.15255737e-007)
  581. w11.Part1 = p12
  582. w11.C1 = CFrame.new(3.40101814, 3.54288888, 6.84968376, -9.53674316e-007, -4.47034836e-007, 1, -0.553697109, -0.832718134, -9.23871994e-007, 0.832718134, -0.553697109, 6.55651093e-007)
  583. w12 = Instance.new("Weld", p12)
  584. w12.Name = "Part_Weld"
  585. w12.Part0 = p12
  586. w12.C0 = CFrame.new(3.40101814, 3.54288888, 6.84968376, -9.53674316e-007, -4.47034836e-007, 1, -0.553697109, -0.832718134, -9.23871994e-007, 0.832718134, -0.553697109, 6.55651093e-007)
  587. w12.Part1 = p13
  588. w12.C1 = CFrame.new(3.40102005, 5.44561195, 5.34554911, -8.34465027e-007, -6.40749931e-007, 1.00000012, -0.319307029, -0.947651505, -8.19563866e-007, 0.947651386, -0.319307029, 3.57627869e-007)
  589. w13 = Instance.new("Weld", p13)
  590. w13.Name = "Part_Weld"
  591. w13.Part0 = p13
  592. w13.C0 = CFrame.new(3.40102005, 5.44561195, 5.34554911, -8.34465027e-007, -6.40749931e-007, 1.00000012, -0.319307029, -0.947651505, -8.19563866e-007, 0.947651386, -0.319307029, 3.57627869e-007)
  593. w13.Part1 = p14
  594. w13.C1 = CFrame.new(3.40101624, 2.99550176, 7.97925997, -9.53674316e-007, -1.49011612e-007, 1, -0.750353813, -0.661036491, -8.64267349e-007, 0.661036491, -0.750353813, 5.36441803e-007)
  595. w14 = Instance.new("Weld", p14)
  596. w14.Name = "Part_Weld"
  597. w14.Part0 = p14
  598. w14.C0 = CFrame.new(3.40101624, 2.99550176, 7.97925997, -9.53674316e-007, -1.49011612e-007, 1, -0.750353813, -0.661036491, -8.64267349e-007, 0.661036491, -0.750353813, 5.36441803e-007)
  599. w14.Part1 = p15
  600. w14.C1 = CFrame.new(3.74026394, 5.46776819, 5.79039907, 0.34201923, -3.27825546e-007, 0.939692974, -0.520305395, -0.832718134, 0.189374775, 0.782499313, -0.553697109, -0.284805775)
  601. w15 = Instance.new("Weld", p15)
  602. w15.Name = "Part_Weld"
  603. w15.Part0 = p15
  604. w15.C0 = CFrame.new(3.74026394, 5.46776819, 5.79039907, 0.34201923, -3.27825546e-007, 0.939692974, -0.520305395, -0.832718134, 0.189374775, 0.782499313, -0.553697109, -0.284805775)
  605. w15.Part1 = p16
  606. w15.C1 = CFrame.new(2.90401983, 4.33060169, 7.50061178, -0.258819938, -2.68220901e-007, 0.965925574, -0.534830093, -0.832718134, -0.143308043, 0.80434382, -0.55369705, 0.215523928)
  607. w16 = Instance.new("Weld", p16)
  608. w16.Name = "Part_Weld"
  609. w16.Part0 = p16
  610. w16.C0 = CFrame.new(2.90401983, 4.33060169, 7.50061178, -0.258819938, -2.68220901e-007, 0.965925574, -0.534830093, -0.832718134, -0.143308043, 0.80434382, -0.55369705, 0.215523928)
  611. w16.Part1 = p17
  612. w16.C1 = CFrame.new(3.4010253, 5.84818506, 4.80991411, -8.56413749e-007, -1.3483392e-006, 1, -0.31930685, -0.947651386, -1.55121427e-006, 0.947651386, -0.31930685, 3.81047698e-007)
  613. w17 = Instance.new("Weld", p17)
  614. w17.Name = "Part_Weld"
  615. w17.Part0 = p17
  616. w17.C0 = CFrame.new(3.4010253, 5.84818506, 4.80991411, -8.56413749e-007, -1.3483392e-006, 1, -0.31930685, -0.947651386, -1.55121427e-006, 0.947651386, -0.31930685, 3.81047698e-007)
  617. w17.Part1 = p18
  618. w17.C1 = CFrame.new(-3.40004683, -8.71796036, 1.70002675, -2.6504224e-006, -7.89943471e-008, -1, -2.47197018e-008, 1, -7.89942831e-008, 1, 2.47194887e-008, -2.6504224e-006)
  619. m.Parent = char
  620. m:MakeJoints()
  621. ----------------------------------------------------
  622. local cor = Instance.new("Part", char.Hair)
  623. cor.Name = "Link"
  624. cor.Locked = true
  625. cor.BottomSurface = 0
  626. cor.CanCollide = false
  627. cor.Size = Vector3.new(1, 9, 1)
  628. cor.Transparency = 1
  629. cor.TopSurface = 0
  630. corw = Instance.new("Weld", cor)
  631. corw.Part0 = hed
  632. corw.Part1 = cor
  633. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  634. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  635. weld1 = Instance.new("Weld", char.Hair)
  636. weld1.Part0 = cor
  637. weld1.Part1 = char.Hair.Head
  638. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  639. ----------------------------------------------------
  640. --[[GroundWave1 = function()
  641. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  642. local Colors = {"Royal purple", "Really black"}
  643. local wave = Instance.new("Part", torso)
  644. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  645. wave.Anchored = true
  646. wave.CanCollide = false
  647. wave.Locked = true
  648. wave.Size = Vector3.new(1, 1, 1)
  649. wave.TopSurface = "Smooth"
  650. wave.BottomSurface = "Smooth"
  651. wave.Transparency = 0.35
  652. wave.CFrame = HandCF
  653. wm = Instance.new("SpecialMesh", wave)
  654. wm.MeshId = "rbxassetid://3270017"
  655. coroutine.wrap(function()
  656. for i = 1, 30, 1 do
  657. wm.Scale = Vector3.new(1 + i*1.2, 1 + i*1.2, 1)
  658. wave.Size = wm.Scale
  659. wave.CFrame = HandCF
  660. wave.Transparency = i/30
  661. wait()
  662. end
  663. wait()
  664. wave:Destroy()
  665. end)()
  666. end
  667. ----------------------------------------------------
  668. GroundWave = function()
  669. if Transforming == true then
  670. local wave = Instance.new("Part", torso)
  671. wave.BrickColor = BrickColor.new("Really black")
  672. wave.Anchored = true
  673. wave.CanCollide = false
  674. wave.Locked = true
  675. wave.Size = Vector3.new(1, 1, 1)
  676. wave.TopSurface = "Smooth"
  677. wave.BottomSurface = "Smooth"
  678. wave.Transparency = 0.35
  679. wave.CFrame = fx.CFrame
  680. wm = Instance.new("SpecialMesh", wave)
  681. wm.MeshType = "Sphere"
  682. wm.Scale = Vector3.new(1,1,1)
  683. coroutine.wrap(function()
  684. for i = 1, 18, 1 do
  685. wm.Scale = Vector3.new(2 + i*2, 2 + i*2, 2 + i*2)
  686. --wave.Size = wm.Scale
  687. wave.CFrame = fx.CFrame
  688. wave.Transparency = i/14
  689. wait()
  690. end
  691. wait()
  692. wave:Destroy()
  693. end)()
  694. elseif Transforming == false then
  695. wait()
  696. end
  697. end
  698.  
  699. for i = 1, 100 do rs:wait()
  700. fx.CFrame = torso.CFrame
  701. end
  702.  
  703. Spawn(function()
  704. while wait(1) do
  705. GroundWave()
  706. end
  707. end)
  708.  
  709. wait(4)
  710.  
  711. Transforming = false
  712.  
  713. for i = 1, 20 do rs:wait()
  714. fx.Transparency = fx.Transparency + (1/20)
  715. fx.CFrame = torso.CFrame
  716. fxm.Scale = fxm.Scale + Vector3.new(0.5,0.5,0.5)
  717. rs:wait()
  718. end
  719.  
  720. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  721. local wave = Instance.new("Part", torso)
  722. wave.BrickColor = BrickColor.new("Institutional white")
  723. wave.Anchored = true
  724. wave.CanCollide = false
  725. wave.Locked = true
  726. wave.Size = Vector3.new(1, 1, 1)
  727. wave.TopSurface = "Smooth"
  728. wave.BottomSurface = "Smooth"
  729. wave.Transparency = 0.35
  730. wave.CFrame = HandCF
  731. wm = Instance.new("SpecialMesh", wave)
  732. wm.MeshId = "rbxassetid://3270017"
  733. coroutine.wrap(function()
  734. for i = 1, 14, 1 do
  735. wm.Scale = Vector3.new(1 + i*1.1, 1 + i*1.1, 1)
  736. wave.Size = wm.Scale
  737. wave.CFrame = HandCF
  738. wave.Transparency = i/14
  739. wait()
  740. end
  741. wait()
  742. wave:Destroy()
  743. end)()
  744. hum.WalkSpeed = 16 ]]
  745. ----------------------------------------------------
  746. Blast = function()
  747. local Colors = {"Really red", "Really black"}
  748. local wave = Instance.new("Part", torso)
  749. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  750. wave.Anchored = true
  751. wave.CanCollide = false
  752. wave.Locked = true
  753. wave.Size = Vector3.new(1, 1, 1)
  754. wave.TopSurface = "Smooth"
  755. wave.BottomSurface = "Smooth"
  756. wave.Transparency = 0.35
  757. wave.CFrame = rarm.CFrame
  758. wm = Instance.new("SpecialMesh", wave)
  759. wm.MeshType = "Sphere"
  760. wm.Scale = Vector3.new(1,1,1)
  761. z = Instance.new("Sound",wave)
  762. z.SoundId = "rbxassetid://237035051"
  763. z.Volume = 1
  764. z.Pitch = .9
  765. z:Play()
  766. coroutine.wrap(function()
  767. for i = 1, 30, 1 do
  768. wave.Size = Vector3.new(1 + i*4, 1 + i*4, 1 + i*4)
  769. --wave.Size = wm.Scale
  770. wave.CFrame = rarm.CFrame
  771. wave.Transparency = (1/14)
  772. rs:wait()
  773. end
  774. rs:wait()
  775. wave:Destroy()
  776. z:Destroy()
  777. end)()
  778. end
  779. ----------------------------------------------------
  780. rarm.Touched:connect(function(ht)
  781. hit = ht.Parent
  782. if ht and hit:IsA("Model") then
  783. if hit:FindFirstChild("Humanoid") then
  784. if hit.Name ~= p.Name then
  785. if Debounces.RPunch == true and Debounces.RPunched == false then
  786. Debounces.RPunched = true
  787. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  788. if Debounces.ks==true then
  789. z = Instance.new("Sound",hed)
  790. z.SoundId = "rbxassetid://169380525"
  791. z.Pitch = ptz[math.random(1,#ptz)]
  792. z.Volume = 1
  793. z:Play()
  794. end
  795. wait(.2)
  796. Debounces.RPunched = false
  797. end
  798. end
  799. end
  800. elseif ht and hit:IsA("Hat") then
  801. if hit.Parent.Name ~= p.Name then
  802. if hit.Parent:FindFirstChild("Humanoid") then
  803. if Debounces.RPunch == true and Debounces.RPunched == false then
  804. Debounces.RPunched = true
  805. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  806. if Debounces.ks==true then
  807. z = Instance.new("Sound",hed)
  808. z.SoundId = "rbxassetid://169380525"
  809. z.Pitch = ptz[math.random(1,#ptz)]
  810. z.Volume = 1
  811. z:Play()
  812. end
  813. wait(.2)
  814. Debounces.RPunched = false
  815. end
  816. end
  817. end
  818. end
  819. end)
  820. larm.Touched:connect(function(ht)
  821. hit = ht.Parent
  822. if ht and hit:IsA("Model") then
  823. if hit:FindFirstChild("Humanoid") then
  824. if hit.Name ~= p.Name then
  825. if Debounces.LPunch == true and Debounces.LPunched == false then
  826. Debounces.LPunched = true
  827. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  828. if Debounces.ks2==true then
  829. z = Instance.new("Sound",hed)
  830. z.SoundId = "rbxassetid://169380525"
  831. z.Pitch = ptz[math.random(1,#ptz)]
  832. z.Volume = 1
  833. z:Play()
  834. end
  835. wait(.2)
  836. Debounces.LPunched = false
  837. end
  838. end
  839. end
  840. elseif ht and hit:IsA("Hat") then
  841. if hit.Parent.Name ~= p.Name then
  842. if hit.Parent:FindFirstChild("Humanoid") then
  843. if Debounces.LPunch == true and Debounces.LPunched == false then
  844. Debounces.LPunched = true
  845. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  846. if Debounces.ks2==true then
  847. z = Instance.new("Sound",hed)
  848. z.SoundId = "rbxassetid://169380525"
  849. z.Pitch = ptz[math.random(1,#ptz)]
  850. z.Volume = 1
  851. z:Play()
  852. end
  853. wait(.2)
  854. Debounces.LPunched = false
  855. end
  856. end
  857. end
  858. end
  859. end)
  860. ----------------------------------------------------
  861. mod4 = Instance.new("Model",char)
  862.  
  863. ptez = {0.7, 0.8, 0.9, 1}
  864.  
  865. function FindNearestTorso(Position,Distance,SinglePlayer)
  866. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  867. local List = {}
  868. for i,v in pairs(workspace:GetChildren())do
  869. if v:IsA("Model")then
  870. if v:findFirstChild("Torso")then
  871. if v ~= char then
  872. if(v.Torso.Position -Position).magnitude <= Distance then
  873. table.insert(List,v)
  874. end
  875. end
  876. end
  877. end
  878. end
  879. return List
  880. end
  881.  
  882. function Punch()
  883. part=Instance.new('Part',mod4)
  884. part.Anchored=true
  885. part.CanCollide=false
  886. part.FormFactor='Custom'
  887. part.Size=Vector3.new(.2,.2,.2)
  888. part.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(0),0,0)
  889. part.Transparency=.7
  890. part.BrickColor=BrickColor.new('Really black')
  891. mesh=Instance.new('SpecialMesh',part)
  892. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  893. mesh.Scale=Vector3.new(3,3,3)
  894. part2=Instance.new('Part',mod4)
  895. part2.Anchored=true
  896. part2.CanCollide=false
  897. part2.FormFactor='Custom'
  898. part2.Size=Vector3.new(.2,.2,.2)
  899. part2.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(90),0,0)
  900. part2.Transparency=.7
  901. part2.BrickColor=BrickColor.new('Really red')
  902. mesh2=Instance.new('SpecialMesh',part2)
  903. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  904. mesh2.Scale=Vector3.new(3,1.5,3)
  905. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  906. if v:FindFirstChild('Humanoid') then
  907. v.Humanoid:TakeDamage(math.random(2,6))
  908. end
  909. end
  910. coroutine.resume(coroutine.create(function()
  911. for i=0,0.62,0.4 do
  912. wait()
  913. part.CFrame=part.CFrame
  914. part.Transparency=i
  915. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  916. part2.CFrame=part2.CFrame
  917. part2.Transparency=i
  918. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  919. end
  920. part.Parent=nil
  921. part2.Parent=nil
  922. end))
  923. end
  924. ----------------------------------------------------
  925. rarm.Touched:connect(function(ht)
  926. hit = ht.Parent
  927. if ht and hit:IsA("Model") then
  928. if hit:FindFirstChild("Humanoid") then
  929. if hit.Name ~= p.Name then
  930. if Debounces.RPunch == true and Debounces.RPunched == false then
  931. Debounces.RPunched = true
  932. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  933. if Debounces.ks==true then
  934. z = Instance.new("Sound",hed)
  935. z.SoundId = "rbxassetid://169380525"
  936. z.Pitch = ptz[math.random(1,#ptz)]
  937. z.Volume = 1
  938. z:Play()
  939. end
  940. wait(.2)
  941. Debounces.RPunched = false
  942. end
  943. end
  944. end
  945. elseif ht and hit:IsA("Hat") then
  946. if hit.Parent.Name ~= p.Name then
  947. if hit.Parent:FindFirstChild("Humanoid") then
  948. if Debounces.RPunch == true and Debounces.RPunched == false then
  949. Debounces.RPunched = true
  950. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  951. if Debounces.ks==true then
  952. z = Instance.new("Sound",hed)
  953. z.SoundId = "rbxassetid://169380525"
  954. z.Pitch = ptz[math.random(1,#ptz)]
  955. z.Volume = 1
  956. z:Play()
  957. end
  958. wait(.2)
  959. Debounces.RPunched = false
  960. end
  961. end
  962. end
  963. end
  964. end)
  965. larm.Touched:connect(function(ht)
  966. hit = ht.Parent
  967. if ht and hit:IsA("Model") then
  968. if hit:FindFirstChild("Humanoid") then
  969. if hit.Name ~= p.Name then
  970. if Debounces.LPunch == true and Debounces.LPunched == false then
  971. Debounces.LPunched = true
  972. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  973. if Debounces.ks2==true then
  974. z = Instance.new("Sound",hed)
  975. z.SoundId = "rbxassetid://169380525"
  976. z.Pitch = ptz[math.random(1,#ptz)]
  977. z.Volume = 1
  978. z:Play()
  979. end
  980. wait(.2)
  981. Debounces.LPunched = false
  982. end
  983. end
  984. end
  985. elseif ht and hit:IsA("Hat") then
  986. if hit.Parent.Name ~= p.Name then
  987. if hit.Parent:FindFirstChild("Humanoid") then
  988. if Debounces.LPunch == true and Debounces.LPunched == false then
  989. Debounces.LPunched = true
  990. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  991. if Debounces.ks2==true then
  992. z = Instance.new("Sound",hed)
  993. z.SoundId = "rbxassetid://169380525"
  994. z.Pitch = ptz[math.random(1,#ptz)]
  995. z.Volume = 1
  996. z:Play()
  997. end
  998. wait(.2)
  999. Debounces.LPunched = false
  1000. end
  1001. end
  1002. end
  1003. end
  1004. end)
  1005. ----------------------------------------------------
  1006. local player = game.Players.LocalPlayer
  1007. local pchar = player.Character
  1008. local mouse = player:GetMouse()
  1009. local cam = workspace.CurrentCamera
  1010.  
  1011. local rad = math.rad
  1012.  
  1013. local keysDown = {}
  1014. local flySpeed = 0
  1015. local MAX_FLY_SPEED = 150
  1016.  
  1017. local canFly = false
  1018. local flyToggled = false
  1019.  
  1020. local forward, side = 0, 0
  1021. local lastForward, lastSide = 0, 0
  1022.  
  1023. local floatBP = Instance.new("BodyPosition")
  1024. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  1025. local flyBV = Instance.new("BodyVelocity")
  1026. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1027. local turnBG = Instance.new("BodyGyro")
  1028. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1029.  
  1030. mouse.KeyDown:connect(function(key)
  1031. keysDown[key] = true
  1032.  
  1033. if key == "f" then
  1034. flyToggled = not flyToggled
  1035.  
  1036. if not flyToggled then
  1037. stanceToggle = "Normal"
  1038. floatBP.Parent = nil
  1039. flyBV.Parent = nil
  1040. turnBG.Parent = nil
  1041. root.Velocity = Vector3.new()
  1042. pchar.Humanoid.PlatformStand = false
  1043. end
  1044. end
  1045.  
  1046. end)
  1047. mouse.KeyUp:connect(function(key)
  1048. keysDown[key] = nil
  1049. end)
  1050.  
  1051. local function updateFly()
  1052.  
  1053. if not flyToggled then return end
  1054.  
  1055. lastForward = forward
  1056. lastSide = side
  1057.  
  1058. forward = 0
  1059. side = 0
  1060.  
  1061. if keysDown.w then
  1062. forward = forward + 1
  1063. end
  1064. if keysDown.s then
  1065. forward = forward - 1
  1066. end
  1067. if keysDown.a then
  1068. side = side - 1
  1069. end
  1070. if keysDown.d then
  1071. side = side + 1
  1072. end
  1073.  
  1074. canFly = (forward ~= 0 or side ~= 0)
  1075.  
  1076. if canFly then
  1077. stanceToggle = "Floating"
  1078. turnBG.Parent = root
  1079. floatBP.Parent = nil
  1080. flyBV.Parent = root
  1081.  
  1082. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  1083. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  1084. else
  1085. floatBP.position = root.Position
  1086. floatBP.Parent = root
  1087.  
  1088. flySpeed = flySpeed - 1
  1089. if flySpeed < 0 then flySpeed = 0 end
  1090. end
  1091.  
  1092. local camCF = cam.CoordinateFrame
  1093. local in_forward = canFly and forward or lastForward
  1094. local in_side = canFly and side or lastSide
  1095.  
  1096. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  1097. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  1098.  
  1099. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  1100. 0)
  1101. end
  1102.  
  1103. game:service'RunService'.RenderStepped:connect(function()
  1104. if flyToggled then
  1105. pchar.Humanoid.PlatformStand = true
  1106. end
  1107. updateFly()
  1108. end)
  1109. -------------------------------
  1110. mouse.KeyDown:connect(function(key)
  1111. if key == "q" then
  1112. if Debounces.CanAttack == true then
  1113. Debounces.CanAttack = false
  1114. Debounces.NoIdl = true
  1115. Debounces.on = true
  1116. function FindNearestTorso(Position,Distance,SinglePlayer)
  1117. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1118. local List = {}
  1119. for i,v in pairs(workspace:GetChildren())do
  1120. if v:IsA("Model")then
  1121. if v:findFirstChild("Torso")then
  1122. if v ~= char then
  1123. if(v.Torso.Position -Position).magnitude <= Distance then
  1124. table.insert(List,v)
  1125. end
  1126. end
  1127. end
  1128. end
  1129. end
  1130. return List
  1131. end
  1132. z = Instance.new("Sound",hed)
  1133. z.SoundId = "rbxassetid://232213955"
  1134. z.Pitch = 1
  1135. z.Volume = 1
  1136. wait(0.2)
  1137. z:Play()
  1138. sp = Instance.new("Part",rarm)
  1139. sp.Anchored = true
  1140. sp.CanCollide = false
  1141. sp.Locked = true
  1142. sp.Transparency = 0
  1143. sp.Material = "Neon"
  1144. sp.Size = Vector3.new(1,1,1)
  1145. sp.TopSurface = "SmoothNoOutlines"
  1146. sp.BottomSurface = "SmoothNoOutlines"
  1147. sp.BrickColor = BrickColor.new("Royal purple")
  1148. spm = Instance.new("SpecialMesh",sp)
  1149. spm.MeshType = "Sphere"
  1150. spm.Scale = Vector3.new(21,21,21)
  1151. sp2 = Instance.new("Part", rarm)
  1152. sp2.Name = "Energy"
  1153. sp2.BrickColor = BrickColor.new("Royal purple")
  1154. sp2.Size = Vector3.new(1, 1, 1)
  1155. sp2.Shape = "Ball"
  1156. sp2.CanCollide = false
  1157. sp2.Anchored = true
  1158. sp2.Locked = true
  1159. sp2.TopSurface = 0
  1160. sp2.BottomSurface = 0
  1161. sp2.Transparency = 1
  1162. spm2 = Instance.new("SpecialMesh",sp2)
  1163. spm2.MeshId = "rbxassetid://9982590"
  1164. spm2.Scale = Vector3.new(2,2,2)
  1165. for i = 1, 20 do
  1166. spm.Scale = spm.Scale - Vector3.new(1,1,1)
  1167. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1168. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  1169. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  1170. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1171. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  1172. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1173. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1174. if Debounces.on == false then break end
  1175. rs:wait()
  1176. end
  1177. for i = 1, 100, 20 do rs:wait()
  1178. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1179. end
  1180. for i = 1, 20 do
  1181. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1182. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  1183. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.4)
  1184. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(10),math.rad(-30),0), 0.4)
  1185. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), math.rad(0)), 0.4)
  1186. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1187. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1188. if Debounces.on == false then break end
  1189. rs:wait()
  1190. end
  1191. sp.Transparency = 1
  1192. for i = 1, 20 do
  1193. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  1194. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.62,-.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.4)
  1195. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.4)
  1196. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-50), math.rad(0)), 0.4)
  1197. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1198. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1199. if Debounces.on == false then break end
  1200. rs:wait()
  1201. end
  1202. wait(1)
  1203. sp.Transparency = 0
  1204. sp2.Transparency = 0.84
  1205. for i = 1, 20 do
  1206. --spm.Scale = spm.Scale - Vector3.new(1,1,1)
  1207. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  1208. sp2.CFrame = sp.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  1209. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(110),math.rad(-6),math.rad(140)), 0.4)
  1210. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(80),math.rad(6),math.rad(-40)), 0.2)
  1211. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  1212. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  1213. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  1214. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  1215. if Debounces.on == false then break end
  1216. rs:wait()
  1217. end
  1218. for i = 1, 2880, 50 do
  1219. rs:wait()
  1220. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  1221. sp2.CFrame = rarm.CFrame * CFrame.new(0,-1,0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  1222. rs:wait()
  1223. end
  1224. sp:Destroy()
  1225. sp2:Destroy()
  1226. local X = Instance.new("Part",char)
  1227. local O = Instance.new("ObjectValue",X)
  1228. O.Name = "creator"
  1229. X.Locked = true
  1230. X.Name = "Shell"
  1231. X.Anchored = false
  1232. X.CanCollide = false
  1233. X.Transparency = 0
  1234. X.Reflectance = 0
  1235. X.BottomSurface = 0
  1236. X.TopSurface = 0
  1237. X.Shape = 0
  1238. local V = Instance.new("ObjectValue",X)
  1239. V.Value = char
  1240. V.Name = "creator"
  1241. X.BrickColor = BrickColor.new("Royal purple")
  1242. X.Size = Vector3.new(2,2,2)
  1243. X.Material = "Neon"
  1244. local Z = Instance.new("SpecialMesh",X)
  1245. Z.MeshType = "Sphere"
  1246. Z.Scale = Vector3.new(0.5,0.5,1)
  1247. X.CFrame = rarm.CFrame*CFrame.new(-3,0,0)
  1248. local bv = Instance.new("BodyVelocity",X)
  1249. bv.maxForce = Vector3.new(99999,99999,99999)
  1250. X.CFrame = CFrame.new(X.Position,mouse.Hit.p)
  1251. bv.velocity = X.CFrame.lookVector*65
  1252.  
  1253. Explode = X.Touched:connect(function(hit)
  1254. if hit ~= char and hit.Name ~= "Shell" then
  1255. local cf = X.CFrame
  1256. bv:Destroy()
  1257. X.Anchored = true
  1258. Z:Remove()
  1259. Explode:disconnect()
  1260. X.Size = Vector3.new(3,3,3)
  1261. X.Touched:connect(function(hit) end)
  1262. X.CanCollide = false
  1263. local part3 = Instance.new("Part", rarm)
  1264. part3.Anchored=true
  1265. part3.CanCollide=false
  1266. part3.Locked = true
  1267. part3.TopSurface = "SmoothNoOutlines"
  1268. part3.BottomSurface = "SmoothNoOutlines"
  1269. part3.FormFactor='Custom'
  1270. part3.Size=Vector3.new(1,1, 1)
  1271. part3.CFrame=X.CFrame
  1272. part3.Transparency=0
  1273. part3.BrickColor=BrickColor.new("Royal purple")
  1274. local mesh3 = Instance.new("SpecialMesh",part3)
  1275. mesh3.MeshType = "Sphere"
  1276. mesh3.Scale = Vector3.new(1,1,1)
  1277. --debris:AddItem(X,8)
  1278. local part4 = Instance.new("Part", rarm)
  1279. part4.Material = "Neon"
  1280. part4.Anchored=true
  1281. part4.CanCollide=false
  1282. part4.Locked = true
  1283. part4.TopSurface = "SmoothNoOutlines"
  1284. part4.BottomSurface = "SmoothNoOutlines"
  1285. part4.FormFactor='Custom'
  1286. part4.Size=Vector3.new(1,1, 1)
  1287. part4.CFrame=X.CFrame
  1288. part4.Transparency=0
  1289. part4.BrickColor=BrickColor.new("Hot pink")
  1290. local mesh4 = Instance.new("SpecialMesh",part4)
  1291. mesh4.MeshType = "Sphere"
  1292. mesh4.Scale = Vector3.new(.5,.5,.5)
  1293. local part7 = Instance.new("Part", rarm)
  1294. part7.Material = "Neon"
  1295. part7.Anchored=true
  1296. part7.CanCollide=false
  1297. part7.Locked = true
  1298. part7.TopSurface = "SmoothNoOutlines"
  1299. part7.BottomSurface = "SmoothNoOutlines"
  1300. part7.FormFactor='Custom'
  1301. part7.Size=Vector3.new(1,1, 1)
  1302. part7.CFrame=X.CFrame
  1303. part7.Transparency=0
  1304. part7.BrickColor=BrickColor.new("Really black")
  1305. local mesh7 = Instance.new("SpecialMesh",part7)
  1306. mesh7.MeshType = "Sphere"
  1307. mesh7.Scale = Vector3.new(0.1, 0.1, 0.1)
  1308. --[[X.Touched:connect(function(ht)
  1309. hit = ht.Parent
  1310. if ht and hit:IsA("Model") then
  1311. if hit:FindFirstChild("Humanoid") then
  1312. if hit.Name ~= p.Name then
  1313. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1314. wait(.3)
  1315. end
  1316. end
  1317. elseif ht and hit:IsA("Hat") then
  1318. if hit.Parent.Name ~= p.Name then
  1319. if hit.Parent:FindFirstChild("Humanoid") then
  1320. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1321. wait(.3)
  1322. end
  1323. end
  1324. end
  1325. end)
  1326. part3.Touched:connect(function(ht)
  1327. hit = ht.Parent
  1328. if ht and hit:IsA("Model") then
  1329. if hit:FindFirstChild("Humanoid") then
  1330. if hit.Name ~= p.Name then
  1331. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1332. wait(.3)
  1333. end
  1334. end
  1335. elseif ht and hit:IsA("Hat") then
  1336. if hit.Parent.Name ~= p.Name then
  1337. if hit.Parent:FindFirstChild("Humanoid") then
  1338. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1339. wait(.3)
  1340. end
  1341. end
  1342. end
  1343. end)]]--
  1344. for i,v in pairs(FindNearestTorso(X.CFrame.p,140))do
  1345. if v:FindFirstChild('Humanoid') then
  1346. v.Humanoid:TakeDamage(math.random(60,90))
  1347. v.Humanoid.PlatformStand = true
  1348. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1349. end
  1350. end
  1351.  
  1352. local acos = math.acos
  1353. local sqrt = math.sqrt
  1354. local Vec3 = Vector3.new
  1355. local fromAxisAngle = CFrame.fromAxisAngle
  1356.  
  1357. local function toAxisAngle(CFr)
  1358. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1359. local Angle = math.acos((R00+R11+R22-1)/2)
  1360. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1361. A = A == 0 and 0.00001 or A
  1362. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1363. B = B == 0 and 0.00001 or B
  1364. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1365. C = C == 0 and 0.00001 or C
  1366. local x = (R21-R12)/sqrt(A)
  1367. local y = (R02-R20)/sqrt(B)
  1368. local z = (R10-R01)/sqrt(C)
  1369. return Vec3(x,y,z),Angle
  1370. end
  1371.  
  1372. function ApplyTrig(Num,Func)
  1373. local Min,Max = Func(0),Func(1)
  1374. local i = Func(Num)
  1375. return (i-Min)/(Max-Min)
  1376. end
  1377.  
  1378. function LerpCFrame(CFrame1,CFrame2,Num)
  1379. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1380. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1381. end
  1382.  
  1383. function Crater(Torso,Radius)
  1384. Spawn(function()
  1385. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1386. local Ignore = {}
  1387. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1388. if v.Character ~= nil then
  1389. Ignore[#Ignore+1] = v.Character
  1390. end
  1391. end
  1392. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1393. if Hit == nil then return end
  1394. local Parts = {}
  1395. for i = 1,360,10 do
  1396. local P = Instance.new("Part",Torso.Parent)
  1397. P.Anchored = true
  1398. P.FormFactor = "Custom"
  1399. P.BrickColor = Hit.BrickColor
  1400. P.Material = Hit.Material
  1401. P.TopSurface = "Smooth"
  1402. P.BottomSurface = "Smooth"
  1403. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1404. 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)))
  1405. 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}
  1406. if math.random(0,5) == 0 then -- rubble
  1407. local P = Instance.new("Part",Torso.Parent)
  1408. P.Anchored = true
  1409. P.FormFactor = "Custom"
  1410. P.BrickColor = Hit.BrickColor
  1411. P.Material = Hit.Material
  1412. P.TopSurface = "Smooth"
  1413. P.BottomSurface = "Smooth"
  1414. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1415. 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)))
  1416. 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}
  1417. end
  1418. end
  1419. for i = 0,1,0.05 do
  1420. for i2,v in pairs(Parts) do
  1421. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1422. end
  1423. wait(0.02)
  1424. end
  1425. for i,v in pairs(Parts) do
  1426. if v[1].Size.X > 2.1 then
  1427. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1428. end
  1429. v[1].Anchored = false
  1430. end
  1431. for i = 0,1,0.05 do
  1432. for i2,v in pairs(Parts) do
  1433. v[1].Transparency = i
  1434. if i == 1 then
  1435. v[1]:Destroy()
  1436. elseif i >= 0.25 then
  1437. v[1].CanCollide = false
  1438. end
  1439. end
  1440. wait(0.02)
  1441. end
  1442. Parts = nil
  1443. end)
  1444. end
  1445.  
  1446. ROW = function(out, trans, s, wt, t, ang, plus)
  1447. for i = 1, 360, 360/t do
  1448. local c = Instance.new("Part", game.Workspace)
  1449. c.FormFactor = 3
  1450. c.TopSurface = 0
  1451. c.BottomSurface = 0
  1452. c.Size = s
  1453. c.Anchored = true
  1454. c.CanCollide = wt
  1455. c.Material=workspace.Base.Material
  1456. c.Transparency = trans
  1457. c.BrickColor = workspace.Base.BrickColor
  1458. c.CFrame = CFrame.new(X.CFrame.x,0,X.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  1459. c.Locked=true
  1460. game.Debris:AddItem(c,15)
  1461. end
  1462. end
  1463.  
  1464. Part = function(x,y,z,color,tr,cc,an,parent)
  1465. local p = Instance.new('Part',parent or Weapon)
  1466. p.formFactor = 'Custom'
  1467. p.Size = Vector3.new(x,y,z)
  1468. p.BrickColor = BrickColor.new(color)
  1469. p.CanCollide = cc
  1470. p.Transparency = tr
  1471. p.Anchored = an
  1472. p.TopSurface,p.BottomSurface = 0,0
  1473. p.Locked=true
  1474. p:BreakJoints()
  1475. return p end
  1476.  
  1477. Mesh = function(par,num,x,y,z)
  1478. local msh = _
  1479. if num == 1 then msh = Instance.new("CylinderMesh",par)
  1480. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  1481. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  1482. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  1483. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  1484. end msh.Scale = Vector3.new(x,y,z)
  1485. return msh end
  1486.  
  1487. function explosion(col1,col2,cfr,sz,rng,dmg)
  1488. local a= Part(1,1,1,col1,.5,false,true,workspace)
  1489. local a2= Part(1,1,1,col2,.5,false,true,workspace)
  1490. local a3= Part(1,1,1,col2,.5,false,true,workspace)
  1491. v1,v2,v3=sz.x,sz.y,sz.z
  1492. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  1493. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  1494. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  1495. a.CFrame=cfr
  1496. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  1497. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  1498.  
  1499. Spawn(function()
  1500. while wait() do
  1501. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  1502. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  1503. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  1504. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  1505. a.Transparency=a.Transparency+0.05
  1506. a2.Transparency=a2.Transparency+0.05
  1507. a3.Transparency=a3.Transparency+0.05
  1508. end
  1509. end)
  1510. end
  1511.  
  1512. Crater(X,20)
  1513. ROW(12, 0, Vector3.new(34.5, 30, 3), true, 8, CFrame.Angles(math.rad(math.random (30,60)), 0, math.rad (math.random(-30,30))), 0)
  1514. z = Instance.new("Sound",X)
  1515. z.SoundId = "rbxassetid://231917744"
  1516. z.Pitch = .5
  1517. z.Volume = 10
  1518. z1 = Instance.new("Sound",X)
  1519. z1.SoundId = "rbxassetid://231917744"
  1520. z1.Pitch = .5
  1521. z1.Volume = 10
  1522. z2 = Instance.new("Sound",X)
  1523. z2.SoundId = "rbxassetid://231917744"
  1524. z2.Pitch = .5
  1525. z2.Volume = 10
  1526. z3 = Instance.new("Sound",X)
  1527. z3.SoundId = "rbxassetid://245537790"
  1528. z3.Pitch = .7
  1529. z3.Volume = 1
  1530. z4 = Instance.new("Sound",X)
  1531. z4.SoundId = "rbxassetid://245537790"
  1532. z4.Pitch = .7
  1533. z4.Volume = 1
  1534. wait(0.1)
  1535. z:Play()
  1536. z1:Play()
  1537. z2:Play()
  1538. z3:Play()
  1539. z4:Play()
  1540.  
  1541. local part=Instance.new('Part',rarm)
  1542. part.Anchored=true
  1543. part.CanCollide=false
  1544. part.Locked = true
  1545. part.FormFactor='Custom'
  1546. part.Size=Vector3.new(1,1,1)
  1547. part.CFrame=X.CFrame*CFrame.new(0,0,0)
  1548. part.Transparency=0
  1549. part.BrickColor=BrickColor.new('Really black')
  1550. local mesh=Instance.new('SpecialMesh',part)
  1551. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1552. mesh.Scale=Vector3.new(2,2,2)
  1553. local part2=part:clone()
  1554. part2.Parent = rarm
  1555. part2.BrickColor=BrickColor.new("Royal purple")
  1556. local part5=part:clone()
  1557. part5.Parent = rarm
  1558. part5.BrickColor=BrickColor.new("Magenta")
  1559. local part6=part:clone()
  1560. part6.Parent = rarm
  1561. part6.BrickColor=BrickColor.new("Black")
  1562. local mesh2=mesh:clone()
  1563. mesh2.Parent=part2
  1564. mesh2.Scale=Vector3.new(3, 3, 3)
  1565. local mesh5=mesh:clone()
  1566. mesh5.Parent=part5
  1567. mesh5.Scale=Vector3.new(3, 3, 3)
  1568. local mesh6=mesh:clone()
  1569. mesh6.Parent=part6
  1570. mesh6.Scale=Vector3.new(3, 3, 3)
  1571. local blast = Instance.new("Part", rarm)
  1572. blast.BrickColor = BrickColor.new("Really black")
  1573. blast.Anchored = true
  1574. blast.CanCollide = false
  1575. blast.Locked = true
  1576. blast.Size = Vector3.new(1, 1, 1)
  1577. blast.TopSurface = "Smooth"
  1578. blast.BottomSurface = "Smooth"
  1579. blast.Transparency = 0
  1580. blast.CFrame = HandCF
  1581. local bm = Instance.new("SpecialMesh", blast)
  1582. bm.Scale = Vector3.new(5,1,5)
  1583. bm.MeshId = "rbxassetid://3270017"
  1584. local blast2 = Instance.new("Part", rarm)
  1585. blast2.BrickColor = BrickColor.new("Really black")
  1586. blast2.Anchored = true
  1587. blast2.CanCollide = false
  1588. blast2.Locked = true
  1589. blast2.Size = Vector3.new(1, 1, 1)
  1590. blast2.TopSurface = "Smooth"
  1591. blast2.BottomSurface = "Smooth"
  1592. blast2.Transparency = 0
  1593. blast2.CFrame = HandCF
  1594. local bm2 = Instance.new("SpecialMesh", blast2)
  1595. bm2.Scale = Vector3.new(3,1,3)
  1596. bm2.MeshId = "rbxassetid://3270017"
  1597. local blast3 = Instance.new("Part", rarm)
  1598. blast3.BrickColor = BrickColor.new("Really black")
  1599. blast3.Anchored = true
  1600. blast3.CanCollide = false
  1601. blast3.Locked = true
  1602. blast3.Size = Vector3.new(1, 1, 1)
  1603. blast3.TopSurface = "Smooth"
  1604. blast3.BottomSurface = "Smooth"
  1605. blast3.Transparency = 0
  1606. blast3.CFrame = HandCF
  1607. local bm3 = Instance.new("SpecialMesh", blast3)
  1608. bm3.Scale = Vector3.new(3,1,3)
  1609. bm3.MeshId = "rbxassetid://3270017"
  1610. for i = 1,120 do rs:wait()
  1611. X.Transparency = X.Transparency + (1/120)
  1612. part.Transparency = part.Transparency + (1/120)
  1613. part2.Transparency = part2.Transparency + (1/120)
  1614. part3.Transparency = part3.Transparency + (1/120)
  1615. part4.Transparency = part4.Transparency + (1/120)
  1616. part5.Transparency = part5.Transparency + (1/120)
  1617. part6.Transparency = part6.Transparency + (1/120)
  1618. part7.Transparency = part7.Transparency + (1/120)
  1619. blast.Transparency = blast.Transparency + (1/120)
  1620. blast2.Transparency = blast2.Transparency + (1/120)
  1621. blast3.Transparency = blast3.Transparency + (1/120)
  1622. X.Size = X.Size + Vector3.new(.8,.8,.8)
  1623. --part3.Size = part3.Size + Vector3.new(3,3,3)
  1624. mesh.Scale = mesh.Scale + Vector3.new(1,.2,1)
  1625. mesh2.Scale = mesh2.Scale + Vector3.new(1.1,.2,1.1)
  1626. mesh3.Scale = mesh3.Scale + Vector3.new(3,3,3)
  1627. mesh4.Scale = mesh4.Scale + Vector3.new(1.7,1.7,1.7)
  1628. mesh5.Scale = mesh5.Scale + Vector3.new(1.6,.2,1.6)
  1629. mesh6.Scale = mesh6.Scale + Vector3.new(2,.2,2)
  1630. mesh7.Scale = mesh7.Scale + Vector3.new(4,4,4)
  1631. bm.Scale = bm.Scale + Vector3.new(6,6,.2)
  1632. bm2.Scale = bm2.Scale + Vector3.new(4,4,.2)
  1633. bm3.Scale = bm3.Scale + Vector3.new(4,4,.2)
  1634. X.CFrame = cf
  1635. part.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2),0)
  1636. part2.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2),0)
  1637. part3.CFrame=X.CFrame
  1638. part4.CFrame=X.CFrame
  1639. part7.CFrame=X.CFrame
  1640. part5.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2.6),0)
  1641. part6.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2.4),0)
  1642. blast.CFrame=X.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1643. blast2.CFrame=X.CFrame * CFrame.Angles(math.rad(-i*4), math.rad(i*4), math.rad(0))
  1644. blast3.CFrame=X.CFrame * CFrame.Angles(math.rad(180+i*4), math.rad(90-i*4), math.rad(0))
  1645. rs:wait()
  1646. end
  1647. X:Destroy()
  1648. part:Destroy()
  1649. part2:Destroy()
  1650. part3:Destroy()
  1651. part4:Destroy()
  1652. part5:Destroy()
  1653. part6:Destroy()
  1654. blast:Destroy()
  1655. blast2:Destroy()
  1656. blast3:Destroy()
  1657. z:Destroy()
  1658. z1:Destroy()
  1659. z2:Destroy()
  1660. z3:Destroy()
  1661. z4:Destroy()
  1662. end
  1663. end)
  1664. for i = 1, 20 do
  1665. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(-6),math.rad(-20)), 0.2)
  1666. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.2)
  1667. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  1668. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  1669. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  1670. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  1671. if Debounces.on == false then break end
  1672. rs:wait()
  1673. end
  1674. if Debounces.CanAttack == false then
  1675. Debounces.CanAttack = true
  1676. Debounces.NoIdl = false
  1677. Debounces.on = false
  1678. end
  1679. end
  1680. end
  1681. end)
  1682. ----------------------------------------------------
  1683. mouse.KeyDown:connect(function(key)
  1684. if key == "e" then
  1685. if Debounces.CanAttack == true then
  1686. Debounces.CanAttack = false
  1687. Debounces.on = true
  1688. Debounces.NoIdl = true
  1689. pt = {1, 1.1, 1.2, 1.3, 1.4, 1.5}
  1690. z = Instance.new("Sound", rarm)
  1691. z.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  1692. z.Volume = .6
  1693. z.Pitch = pt[math.random(1,#pt)]
  1694. z.Looped = false
  1695. z:Play()
  1696. Debounces.RPunch = true
  1697. Debounces.LPunch = true
  1698. Debounces.ks = true
  1699. Debounces.ks2 = true
  1700. for i = 1, 3 do
  1701. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  1702. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  1703. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1704. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1705. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1706. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1707. if Debounces.on == false then break end
  1708. wait()
  1709. end
  1710. z2 = Instance.new("Sound", larm)
  1711. z2.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1712. z2.Volume = .6
  1713. z2.Pitch = pt[math.random(1,#pt)]
  1714. z2.Looped = false
  1715. z2:Play()
  1716. for i = 1, 3 do
  1717. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1718. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1719. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1720. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1721. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1722. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1723. if Debounces.on == false then break end
  1724. wait()
  1725. end
  1726. z3 = Instance.new("Sound", rarm)
  1727. z3.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1728. z3.Volume = 0.6
  1729. z3.Pitch = pt[math.random(1,#pt)]
  1730. z3.Looped = false
  1731. z3:Play()
  1732. for i = 1, 3 do
  1733. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1734. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1735. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1736. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1737. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1738. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1739. if Debounces.on == false then break end
  1740. wait()
  1741. end
  1742. z4 = Instance.new("Sound", larm)
  1743. z4.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1744. z4.Volume = .6
  1745. z4.Pitch = pt[math.random(1,#pt)]
  1746. z4.Looped = false
  1747. z4:Play()
  1748. for i = 1, 3 do
  1749. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1750. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1751. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1752. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1753. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1754. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1755. if Debounces.on == false then break end
  1756. wait()
  1757. end
  1758. z5 = Instance.new("Sound", rarm)
  1759. z5.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1760. z5.Volume = .6
  1761. z5.Pitch = pt[math.random(1,#pt)]
  1762. z5.Looped = false
  1763. z5:Play()
  1764. for i = 1, 3 do
  1765. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  1766. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  1767. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  1768. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  1769. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  1770. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  1771. if Debounces.on == false then break end
  1772. wait()
  1773. end
  1774. z6 = Instance.new("Sound", larm)
  1775. z6.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1776. z6.Volume = .6
  1777. z6.Pitch = pt[math.random(1,#pt)]
  1778. z6.Looped = false
  1779. z6:Play()
  1780. for i = 1, 3 do
  1781. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1782. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1783. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1784. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1785. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1786. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1787. if Debounces.on == false then break end
  1788. wait()
  1789. end
  1790. z7 = Instance.new("Sound", rarm)
  1791. z7.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  1792. z7.Volume = .6
  1793. z7.Pitch = pt[math.random(1,#pt)]
  1794. z7.Looped = false
  1795. z7:Play()
  1796. for i = 1, 3 do
  1797. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  1798. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  1799. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1800. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1801. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1802. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1803. if Debounces.on == false then break end
  1804. wait()
  1805. end
  1806. z8 = Instance.new("Sound", larm)
  1807. z8.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1808. z8.Volume = .6
  1809. z8.Pitch = pt[math.random(1,#pt)]
  1810. z8.Looped = false
  1811. z8:Play()
  1812. for i = 1, 3 do
  1813. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1814. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1815. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1816. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1817. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1818. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1819. if Debounces.on == false then break end
  1820. wait()
  1821. end
  1822. z9 = Instance.new("Sound", rarm)
  1823. z9.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1824. z9.Volume = 0.6
  1825. z9.Pitch = pt[math.random(1,#pt)]
  1826. z9.Looped = false
  1827. z9:Play()
  1828. for i = 1, 3 do
  1829. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1830. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1831. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1832. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1833. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1834. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1835. if Debounces.on == false then break end
  1836. wait()
  1837. end
  1838. z10 = Instance.new("Sound", larm)
  1839. z10.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1840. z10.Volume = .6
  1841. z10.Pitch = pt[math.random(1,#pt)]
  1842. z10.Looped = false
  1843. z10:Play()
  1844. for i = 1, 3 do
  1845. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1846. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1847. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1848. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1849. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1850. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1851. if Debounces.on == false then break end
  1852. wait()
  1853. end
  1854. z11 = Instance.new("Sound", rarm)
  1855. z11.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1856. z11.Volume = .6
  1857. z11.Pitch = pt[math.random(1,#pt)]
  1858. z11.Looped = false
  1859. z11:Play()
  1860. for i = 1, 3 do
  1861. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  1862. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  1863. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  1864. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  1865. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  1866. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  1867. if Debounces.on == false then break end
  1868. wait()
  1869. end
  1870. z12 = Instance.new("Sound", larm)
  1871. z12.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1872. z12.Volume = .6
  1873. z12.Pitch = pt[math.random(1,#pt)]
  1874. z12.Looped = false
  1875. z12:Play()
  1876. for i = 1, 3 do
  1877. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1878. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1879. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1880. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1881. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1882. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1883. if Debounces.on == false then break end
  1884. wait()
  1885. end
  1886. z13 = Instance.new("Sound", rarm)
  1887. z13.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1888. z13.Volume = 0.6
  1889. z13.Pitch = pt[math.random(1,#pt)]
  1890. z13.Looped = false
  1891. z13:Play()
  1892. for i = 1, 3 do
  1893. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1894. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1895. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1896. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1897. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1898. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1899. if Debounces.on == false then break end
  1900. wait()
  1901. end
  1902. z14 = Instance.new("Sound", larm)
  1903. z14.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1904. z14.Volume = .6
  1905. z14.Pitch = pt[math.random(1,#pt)]
  1906. z14.Looped = false
  1907. z14:Play()
  1908. for i = 1, 3 do
  1909. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1910. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1911. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1912. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1913. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1914. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1915. if Debounces.on == false then break end
  1916. wait()
  1917. end
  1918. z15 = Instance.new("Sound", rarm)
  1919. z15.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1920. z15.Volume = .6
  1921. z15.Pitch = pt[math.random(1,#pt)]
  1922. z15.Looped = false
  1923. z15:Play()
  1924. for i = 1, 3 do
  1925. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  1926. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  1927. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  1928. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  1929. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  1930. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  1931. if Debounces.on == false then break end
  1932. wait()
  1933. end
  1934. z16 = Instance.new("Sound", larm)
  1935. z16.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1936. z16.Volume = .6
  1937. z16.Pitch = pt[math.random(1,#pt)]
  1938. z16.Looped = false
  1939. z16:Play()
  1940. for i = 1, 3 do
  1941. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1942. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1943. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1944. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1945. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1946. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1947. if Debounces.on == false then break end
  1948. wait()
  1949. end
  1950. z17 = Instance.new("Sound", rarm)
  1951. z17.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  1952. z17.Volume = .6
  1953. z17.Pitch = pt[math.random(1,#pt)]
  1954. z17.Looped = false
  1955. z17:Play()
  1956. for i = 1, 3 do
  1957. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  1958. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  1959. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1960. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1961. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1962. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1963. if Debounces.on == false then break end
  1964. wait()
  1965. end
  1966. z18 = Instance.new("Sound", larm)
  1967. z18.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1968. z18.Volume = .6
  1969. z18.Pitch = pt[math.random(1,#pt)]
  1970. z18.Looped = false
  1971. z18:Play()
  1972. for i = 1, 3 do
  1973. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1974. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1975. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1976. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1977. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1978. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1979. if Debounces.on == false then break end
  1980. wait()
  1981. end
  1982. z19 = Instance.new("Sound", rarm)
  1983. z19.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1984. z19.Volume = 0.6
  1985. z19.Pitch = pt[math.random(1,#pt)]
  1986. z19.Looped = false
  1987. z19:Play()
  1988. for i = 1, 3 do
  1989. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1990. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1991. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1992. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1993. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1994. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1995. if Debounces.on == false then break end
  1996. wait()
  1997. end
  1998. z20 = Instance.new("Sound", larm)
  1999. z20.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2000. z20.Volume = .6
  2001. z20.Pitch = pt[math.random(1,#pt)]
  2002. z20.Looped = false
  2003. z20:Play()
  2004. for i = 1, 3 do
  2005. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2006. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  2007. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2008. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2009. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2010. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2011. if Debounces.on == false then break end
  2012. wait()
  2013. end
  2014. z:Destroy()
  2015. z2:Destroy()
  2016. z3:Destroy()
  2017. z4:Destroy()
  2018. z5:Destroy()
  2019. z6:Destroy()
  2020. z7:Destroy()
  2021. z8:Destroy()
  2022. z9:Destroy()
  2023. z10:Destroy()
  2024. z11:Destroy()
  2025. z12:Destroy()
  2026. z13:Destroy()
  2027. z14:Destroy()
  2028. z15:Destroy()
  2029. z16:Destroy()
  2030. z17:Destroy()
  2031. z18:Destroy()
  2032. z19:Destroy()
  2033. z20:Destroy()
  2034. Debounces.LPunch = false
  2035. Debounces.RPunch = false
  2036. Debounces.ks = false
  2037. Debounces.ks2 = false
  2038. if Debounces.CanAttack == false then
  2039. Debounces.CanAttack = true
  2040. Debounces.on = false
  2041. Debounces.NoIdl = false
  2042. end
  2043. end
  2044. end
  2045. end)
  2046. -------------------------------
  2047. mouse.KeyDown:connect(function(key)
  2048. if key == "t" then
  2049. if Debounces.CanAttack == true then
  2050. Debounces.CanAttack = false
  2051. Debounces.NoIdl = true
  2052. Debounces.on = true
  2053. Debounces.ks = true
  2054. kik = rleg.Touched:connect(function(ht)
  2055. hit = ht.Parent
  2056. if ht and hit:IsA("Model") then
  2057. if hit:FindFirstChild("Humanoid") then
  2058. if hit.Name ~= p.Name then
  2059. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2060. Debounces.Slashed = true]]--
  2061. if Debounces.ks==true then
  2062. z = Instance.new("Sound",hed)
  2063. z.SoundId = "rbxassetid://169380525"
  2064. z.Volume = 1
  2065. z:Play()
  2066. Debounces.ks=false
  2067. end
  2068. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2069. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  2070. --Debounces.Slashed = false
  2071. --end
  2072. end
  2073. end
  2074. elseif ht and hit:IsA("Hat") then
  2075. if hit.Parent.Name ~= p.Name then
  2076. if hit.Parent:FindFirstChild("Humanoid") then
  2077. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2078. Debounces.Slashed = true]]--
  2079. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2080. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  2081. --Debounces.Slashed = false
  2082. --end
  2083. end
  2084. end
  2085. end
  2086. end)
  2087. for i = 1,20 do
  2088. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  2089. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.4)
  2090. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2091. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(90), math.rad(90)), 0.4)
  2092. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-90)), 0.4)
  2093. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2094. if Debounces.on == false then break end
  2095. rs:wait()
  2096. end
  2097. kik:disconnect()
  2098. if Debounces.CanAttack == false then
  2099. Debounces.CanAttack = true
  2100. Debounces.NoIdl = false
  2101. Debounces.on = false
  2102. end
  2103. end
  2104. end
  2105. end)
  2106. ----------------------------------------------------
  2107. mouse.KeyDown:connect(function(key)
  2108. if key == "y" then
  2109. if Debounces.CanAttack == true then
  2110. Debounces.CanAttack = false
  2111. Debounces.on = true
  2112. Debounces.NoIdl = true
  2113. for i = 1, 15 do
  2114. 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)
  2115. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  2116. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2117. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2118. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2119. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2120. 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)
  2121. if Debounces.on == false then break end
  2122. wait()
  2123. end
  2124. x = Instance.new("Sound",char)
  2125. x.SoundId = "rbxassetid://228343271"
  2126. x.Pitch = 1
  2127. x.Volume = .8
  2128. wait(.1)
  2129. x:Play()
  2130. Debounces.on = false
  2131. Debounces.Here = false
  2132. shot = shot + 1
  2133. local rng = Instance.new("Part", char)
  2134. rng.Anchored = true
  2135. rng.BrickColor = BrickColor.new("Institutional white")
  2136. rng.CanCollide = false
  2137. rng.FormFactor = 3
  2138. rng.Name = "Ring"
  2139. rng.Size = Vector3.new(1, 1, 1)
  2140. rng.Transparency = 0.35
  2141. rng.TopSurface = 0
  2142. rng.BottomSurface = 0
  2143. rng2 = rng:clone()
  2144. rng3 = rng2:clone()
  2145. rng4 = rng2:clone()
  2146. local rngm = Instance.new("SpecialMesh", rng)
  2147. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2148. rngm.Scale = Vector3.new(10, 10, 1)
  2149. rngm2 = rngm:clone()
  2150. rngm2.Scale = Vector3.new(5, 5, 1)
  2151. rngm3=rngm2:clone()
  2152. rngm3.Parent = rng3
  2153. rngm3.Scale = Vector3.new(8, 8, 1)
  2154. rngm4 = rngm2:clone()
  2155. rngm4.Parent = rng4
  2156. rngm4.Scale = Vector3.new(6, 6, 1)
  2157. local bem = Instance.new("Part", char)
  2158. bem.Anchored = true
  2159. bem.BrickColor = BrickColor.new("Institutional white")
  2160. bem.CanCollide = false
  2161. bem.FormFactor = 3
  2162. bem.Name = "Beam" .. shot
  2163. bem.Size = Vector3.new(1, 1, 1)
  2164. bem.Transparency = 0.35
  2165. bem.TopSurface = 0
  2166. bem.BottomSurface = 0
  2167. local bemm = Instance.new("SpecialMesh", bem)
  2168. bemm.MeshType = 4
  2169. bemm.Scale = Vector3.new(1, 4, 4)
  2170. local out = Instance.new("Part", char)
  2171. out.Anchored = true
  2172. out.BrickColor = BrickColor.new("Institutional white")
  2173. out.CanCollide = false
  2174. out.FormFactor = 3
  2175. out.Name = "Out"
  2176. out.Size = Vector3.new(4, 4, 4)
  2177. out.Transparency = 0.35
  2178. out.TopSurface = 0
  2179. out.BottomSurface = 0
  2180. local outm = Instance.new("SpecialMesh", out)
  2181. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2182. outm.Scale = Vector3.new(4, 4, 4)
  2183. local bnd = Instance.new("Part", char)
  2184. bnd.Anchored = true
  2185. bnd.BrickColor = BrickColor.new("Institutional white")
  2186. bnd.CanCollide = false
  2187. bnd.FormFactor = 3
  2188. bnd.Name = "Bend"
  2189. bnd.Size = Vector3.new(1, 1, 1)
  2190. bnd.Transparency = 1
  2191. bnd.TopSurface = 0
  2192. bnd.BottomSurface = 0
  2193. local bndm = Instance.new("SpecialMesh", bnd)
  2194. bndm.MeshType = 3
  2195. bndm.Scale = Vector3.new(8, 8, 8)
  2196. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2197. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2198. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2199. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2200. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2201. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2202. Debounces.Shewt = true
  2203. coroutine.wrap(function()
  2204. for i = 1, 20, 0.2 do
  2205. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2206. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2207. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2208. rng.Transparency = i/20
  2209. rng3.Transparency = 1/16
  2210. rng4.Transparency = i/12
  2211. wait()
  2212. end
  2213. wait()
  2214. rng:Destroy()
  2215. end)()
  2216. if Debounces.Shewt == true then
  2217. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2218. hit = ht.Parent
  2219. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2220. if HasntTouched(hit.Name) == true and deb == false then
  2221. deb = true
  2222. coroutine.wrap(function()
  2223. hit:FindFirstChild("Humanoid").PlatformStand = true
  2224. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2225. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  2226. end)()
  2227. table.insert(Touche, hit.Name)
  2228. deb = false
  2229. end
  2230. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2231. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2232. deb = true
  2233. coroutine.wrap(function()
  2234. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2235. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2236. wait(1)
  2237. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2238. end)()
  2239. table.insert(Touche, hit.Parent.Name)
  2240. deb = false
  2241. for i, v in pairs(Touche) do
  2242. print(v)
  2243. end
  2244. end
  2245. end
  2246. end)
  2247. end
  2248. for i = 0, 260, 8 do
  2249. bem.Size = Vector3.new(i, 2, 2)
  2250. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2251. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2252. bnd.Size = Vector3.new(1,1,1)
  2253. bndm.Scale = Vector3.new(8,8,8)
  2254. if i % 10 == 0 then
  2255. local newRng = rng2:Clone()
  2256. newRng.Parent = char
  2257. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2258. local newRngm = rngm2:clone()
  2259. newRngm.Parent=newRng
  2260. coroutine.wrap(function()
  2261. for i = 1, 10, 0.2 do
  2262. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2263. newRng.Transparency = i/10
  2264. wait()
  2265. end
  2266. wait()
  2267. newRng:Destroy()
  2268. end)()
  2269. end
  2270. wait()
  2271. end
  2272. wait()
  2273. Debounces.Shewt = false
  2274. bem:Destroy()
  2275. out:Destroy()
  2276. bnd:Destroy()
  2277. Debounces.Ready = false
  2278. for i, v in pairs(Touche) do
  2279. table.remove(Touche, i)
  2280. end
  2281. wait()
  2282. table.insert(Touche, char.Name)
  2283. Debounces.NoIdl = false
  2284. if Debounces.CanAttack == false then
  2285. Debounces.CanAttack = true
  2286. end
  2287. end
  2288. end
  2289. end)
  2290. ----------------------------------------------------
  2291. --[[mouse.KeyDown:connect(function(key)
  2292. if key == "y" then
  2293. if Debounces.CanAttack == true then
  2294. Debounces.CanAttack = false
  2295. Debounces.NoIdl = true
  2296. Debounces.on = true
  2297. local shell = Instance.new("Part",torso)
  2298. shell.BrickColor = BrickColor.new("Royal purple")
  2299. shell.Anchored = false
  2300. shell.CanCollide = false
  2301. shell.Locked = true
  2302. shell.TopSurface = "SmoothNoOutlines"
  2303. shell.BottomSurface = "SmoothNoOutlines"
  2304. shell.Size = Vector3.new(1.2,1.2,1.2)
  2305. shell.FormFactor = 3
  2306. local shellm = Instance.new("SpecialMesh",shell)
  2307. shellm.MeshType = "Sphere"
  2308. shellm.Scale = Vector3.new(1.2,1.2,1.2)
  2309. Omega = function()
  2310. local X = Instance.new("Part",char)
  2311. local O = Instance.new("ObjectValue",X)
  2312. O.Name = "creator"
  2313. X.Locked = true
  2314. X.Name = "Shell"
  2315. X.Anchored = false
  2316. X.CanCollide = false
  2317. X.Transparency = 0.5
  2318. X.Reflectance = 0
  2319. X.BottomSurface = 0
  2320. X.TopSurface = 0
  2321. X.Shape = 0
  2322. local V = Instance.new("ObjectValue",X)
  2323. V.Value = char
  2324. V.Name = "creator"
  2325. X.BrickColor = BrickColor.new("Royal purple")
  2326. X.Size = Vector3.new(40,40,40)
  2327. --X.Material = "Neon"
  2328. local Z = Instance.new("SpecialMesh",X)
  2329. Z.MeshType = "Sphere"
  2330. Z.Scale = Vector3.new(0.2,0.2,0.2)
  2331. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  2332. local bv = Instance.new("BodyVelocity",X)
  2333. bv.maxForce = Vector3.new(99999,99999,99999)
  2334. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  2335. bv.velocity = root.CFrame.lookVector*10
  2336. Explode = X.Touched:connect(function(hit)
  2337. if hit ~= char and hit.Name ~= "Shell" and hit ~= X and hit:IsA("Part") or hit:IsA("BasePart}") then
  2338. local cf = X.CFrame
  2339. bv:Destroy()
  2340. X.Anchored = true
  2341. Z:Remove()
  2342. Explode:disconnect()
  2343. X.Size = Vector3.new(3,3,3)
  2344. X.Touched:connect(function(hit) end)
  2345. X.CanCollide = false
  2346. for i,v in pairs(FindNearestTorso(X.CFrame.p,200))do
  2347. if v:FindFirstChild('Humanoid') then
  2348. v.Humanoid:TakeDamage(math.random(80,120))
  2349. end
  2350. end
  2351. for i = 1, (40) do rs:wait()
  2352. X.Transparency = X.Transparency + (1/40)
  2353. X.Size = X.Size + Vector3.new(1,1,1)
  2354. X.CFrame = root.CFrame * CFrame.new(0,0,-10)
  2355. end
  2356. X:Destroy()
  2357. end
  2358. end)
  2359. end
  2360. for i = 1,200 do
  2361. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2362. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.03)
  2363. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
  2364. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2365. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2366. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2367. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2368. if Debounces.on == false then break end
  2369. rs:wait()
  2370. end
  2371. for i = 1,30 do
  2372. shell.CFrame = torso.CFrame * CFrame.new(0,8,0)
  2373. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.4)
  2374. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-170)), 0.4)
  2375. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2376. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2377. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2378. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2379. if Debounces.on == false then break end
  2380. rs:wait()
  2381. end
  2382. for i = 1,40 do
  2383. shell.CFrame = torso.CFrame * CFrame.new(0,20,0)
  2384. shell.Size = shell.Size + Vector3.new(1,1,1)
  2385. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(100)), 0.4)
  2386. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-100)), 0.4)
  2387. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2388. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2389. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2390. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2391. if Debounces.on == false then break end
  2392. rs:wait()
  2393. end
  2394. for i = 1,40 do
  2395. shell.CFrame = torso.CFrame * CFrame.new(0,0,-30)
  2396. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(20)), 0.4)
  2397. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.4)
  2398. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2399. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2400. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2401. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2402. if Debounces.on == false then break end
  2403. rs:wait()
  2404. end
  2405. for i = 1,60 do
  2406. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  2407. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-30)), 0.4)
  2408. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.4)
  2409. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2410. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2411. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2412. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2413. if Debounces.on == false then break end
  2414. rs:wait()
  2415. end
  2416. for i = 1,60 do
  2417. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  2418. shell.Size = shell.Size + Vector3.new(1,1,1)
  2419. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(120)), 0.4)
  2420. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(-120)), 0.4)
  2421. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2422. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2423. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2424. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2425. if Debounces.on == false then break end
  2426. rs:wait()
  2427. end
  2428. if Debounces.CanAttack == false then
  2429. Debounces.CanAttack = true
  2430. Debounces.NoIdl = false
  2431. Debounces.on = false
  2432. end
  2433. end
  2434. end
  2435. end)]]--
  2436. ----------------------------------------------------
  2437. Charging = false
  2438. mouse.KeyDown:connect(function(key)
  2439. if key == "r" then
  2440. if Charging == false then
  2441. Charging = true
  2442. if Debounces.CanAttack == true then
  2443. Debounces.CanAttack = false
  2444. Debounces.NoIdl = true
  2445. Debounces.on = true
  2446. for i = 1,20 do
  2447. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-40)), 0.2)
  2448. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(40)), 0.2)
  2449. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  2450. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  2451. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  2452. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  2453. if Debounces.on == false then break end
  2454. rs:wait()
  2455. end
  2456. --[[for i = 1,20 do
  2457. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(-20),math.rad(50)), 0.4)
  2458. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(20),math.rad(-50)), 0.4)
  2459. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(34),math.rad(0),0), 0.4)
  2460. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)), 0.4)
  2461. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.4)
  2462. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.4)
  2463. if Debounces.on == false then break end
  2464. rs:wait()
  2465. end]]--
  2466. pt=Instance.new('Part',torso)
  2467. pt.Anchored=true
  2468. pt.CanCollide=false
  2469. pt.Locked = true
  2470. pt.FormFactor='Custom'
  2471. pt.Size=Vector3.new(1,1,1)
  2472. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  2473. pt.Transparency=.6
  2474. pt.BrickColor=BrickColor.new('Really black')
  2475. msh=Instance.new('SpecialMesh',pt)
  2476. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  2477. msh.Scale=Vector3.new(8,4,8)
  2478. pt2=pt:clone()
  2479. pt2.Parent = torso
  2480. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  2481. pt2.BrickColor=BrickColor.new("Royal purple")
  2482. msh2=msh:clone()
  2483. msh2.Parent=pt2
  2484. msh2.Scale=Vector3.new(10,5,10)
  2485.  
  2486. custommath={25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100}
  2487.  
  2488. bl = Instance.new("Part", char)
  2489. bl.Locked = true
  2490. bl.Name = "Shell"
  2491. bl.BrickColor = BrickColor.new("Really black")
  2492. bl.Anchored = true
  2493. bl.CanCollide = false
  2494. bl.Transparency = 0
  2495. bl.Reflectance = 0
  2496. bl.BottomSurface = 0
  2497. bl.TopSurface = 0
  2498. bl.Shape = 0
  2499. blm = Instance.new("SpecialMesh",bl)
  2500. blm.MeshType = "Sphere"
  2501. blm.Scale = Vector3.new(1,1,1)
  2502. blm.MeshId = "rbxassetid://9982590"
  2503.  
  2504. coroutine.resume(coroutine.create(function()
  2505. for i=1, math.huge, 4 do
  2506. if Charging == true then
  2507. rs:wait()
  2508. bl.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  2509. blm.Scale = blm.Scale + Vector3.new(0.1, 0.1, 0.1)
  2510. bl.Transparency = bl.Transparency + 0.005
  2511. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2),0)
  2512. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2),0)
  2513. msh.Scale = msh.Scale + Vector3.new(0.05,0,0.05)
  2514. msh2.Scale = msh2.Scale + Vector3.new(0.05,0,0.05)
  2515. elseif Charging == false then break
  2516. end
  2517. end
  2518. end))
  2519.  
  2520. repeat
  2521. local p = Instance.new('Part',torso)
  2522. p.formFactor = 'Custom'
  2523. p.Size = Vector3.new(1,1,1)
  2524. p.BrickColor = workspace.Base.BrickColor
  2525. p.CanCollide = false
  2526. p.Transparency = 0
  2527. p.Anchored = true
  2528. p.Locked=true
  2529. p.Material = workspace.Base.Material
  2530. s = math.random(1,40)/10
  2531. local m = Instance.new("BlockMesh",p)
  2532. m.Scale = Vector3.new(s,s,s)
  2533. p.CFrame = torso.CFrame*CFrame.new(custommath[math.random(1,#custommath)]/10,-math.random(5,7),custommath[math.random(1,#custommath)]/10)*CFrame.Angles(math.random(),math.random(),math.random())
  2534. --[[coroutine.wrap(function()
  2535. wait(2)
  2536. while Charging == true do
  2537. wait(2)
  2538. GroundWave1()
  2539. wait(2)
  2540. end
  2541. end)()]]--
  2542. Spawn(function()
  2543. while rs:wait() do
  2544. if Charging == true then
  2545. rarm.Weld.C0 = CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(-30,-20)),math.rad(math.random(30,50)))
  2546. larm.Weld.C0 = CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(20,30)),math.rad(math.random(-50,-30)))
  2547. hed.Weld.C0 = CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(math.random(26,34)),math.rad(math.random(-5,5)),math.rad(0))
  2548. torso.Weld.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(10), math.rad(math.random(-4,4)), math.rad(0))
  2549. lleg.Weld.C0 = CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(10,20)), math.rad(math.random(-20,-10)))
  2550. rleg.Weld.C0 = CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(-20,-10)), math.rad(math.random(10,20)))
  2551. elseif Charging == false then break
  2552. end
  2553. end
  2554. end)
  2555. Spawn(function()
  2556. while rs:wait() do
  2557. if p.Transparency >= 1 then p:Destroy() break end
  2558. p.CFrame = p.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.2,0)
  2559. p.Transparency = p.Transparency+0.01
  2560. end
  2561. end)
  2562. wait(.3)
  2563. until Charging == false
  2564. end
  2565. end
  2566. end
  2567. end)
  2568. ----------------------------------------------------
  2569. mouse.KeyUp:connect(function(key)
  2570. if key == "r" then
  2571. if Charging == true then
  2572. Charging = false
  2573. pt:Destroy()
  2574. pt2:Destroy()
  2575. bl:Destroy()
  2576. if Debounces.CanAttack == false then
  2577. Debounces.CanAttack = true
  2578. Debounces.NoIdl = false
  2579. Debounces.on = false
  2580. end
  2581. end
  2582. end
  2583. end)
  2584. ----------------------------------------------------
  2585. mouse.KeyDown:connect(function(key)
  2586. if key == "g" then
  2587. if Debounces.CanAttack == true then
  2588. Debounces.CanAttack = false
  2589. Debounces.NoIdl = true
  2590. Debounces.on = true
  2591. local shell = Instance.new("Part",torso)
  2592. shell.BrickColor = BrickColor.new("Royal purple")
  2593. shell.Anchored = true
  2594. shell.CanCollide = false
  2595. shell.Locked = true
  2596. shell.TopSurface = "SmoothNoOutlines"
  2597. shell.BottomSurface = "SmoothNoOutlines"
  2598. shell.Size = Vector3.new(1,1,1)
  2599. shellm = Instance.new("SpecialMesh",shell)
  2600. shellm.MeshType = "Sphere"
  2601. shellm.Scale = Vector3.new(1,1,1)
  2602. local shell2 = Instance.new("Part",torso)
  2603. shell2.BrickColor = BrickColor.new("Royal purple")
  2604. shell2.Anchored = true
  2605. shell2.CanCollide = false
  2606. shell2.Locked = true
  2607. shell2.TopSurface = "SmoothNoOutlines"
  2608. shell2.BottomSurface = "SmoothNoOutlines"
  2609. shell2.Size = Vector3.new(1,1,1)
  2610. shellm2 = Instance.new("SpecialMesh",shell2)
  2611. shellm2.MeshType = "Sphere"
  2612. shellm2.Scale = Vector3.new(1,1,1)
  2613.  
  2614. function FindNearestTorso(Position,Distance,SinglePlayer)
  2615. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2616. local List = {}
  2617. for i,v in pairs(workspace:GetChildren())do
  2618. if v:IsA("Model")then
  2619. if v:findFirstChild("Torso")then
  2620. if v ~= char then
  2621. if(v.Torso.Position -Position).magnitude <= Distance then
  2622. table.insert(List,v)
  2623. end
  2624. end
  2625. end
  2626. end
  2627. end
  2628. return List
  2629. end
  2630.  
  2631. Shell = function()
  2632. local X = Instance.new("Part",char)
  2633. local O = Instance.new("ObjectValue",X)
  2634. O.Name = "creator"
  2635. X.Locked = true
  2636. X.Name = "Shell"
  2637. X.Anchored = false
  2638. X.CanCollide = false
  2639. X.Transparency = 0
  2640. X.Reflectance = 0
  2641. X.BottomSurface = 0
  2642. X.TopSurface = 0
  2643. X.Shape = 0
  2644. local V = Instance.new("ObjectValue",X)
  2645. V.Value = char
  2646. V.Name = "creator"
  2647. X.BrickColor = BrickColor.new("Royal purple")
  2648. X.Size = Vector3.new(1,1,1)
  2649. --X.Material = "Neon"
  2650. local Z = Instance.new("SpecialMesh",X)
  2651. Z.MeshType = "Sphere"
  2652. Z.Scale = Vector3.new(1,1,1)
  2653. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  2654. local bv = Instance.new("BodyVelocity",X)
  2655. bv.maxForce = Vector3.new(99999,99999,99999)
  2656. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  2657. bv.velocity = root.CFrame.lookVector*65
  2658. Explode = X.Touched:connect(function(hit)
  2659. if hit ~= char and hit.Name ~= "Shell" and hit:IsA("Part") or hit:IsA("BasePart}") then
  2660. local cf = X.CFrame
  2661. bv:Destroy()
  2662. X.Anchored = true
  2663. Z:Remove()
  2664. Explode:disconnect()
  2665. X.Size = Vector3.new(3,3,3)
  2666. X.Touched:connect(function(hit) end)
  2667. X.CanCollide = false
  2668. for i,v in pairs(FindNearestTorso(X.CFrame.p,40))do
  2669. if v:FindFirstChild('Humanoid') then
  2670. v.Humanoid:TakeDamage(math.random(6,12))
  2671. end
  2672. end
  2673. for i = 1, (40) do rs:wait()
  2674. X.Transparency = X.Transparency + (1/40)
  2675. X.Size = X.Size + Vector3.new(1,1,1)
  2676. X.CFrame = cf
  2677. end
  2678. X:Destroy()
  2679. end
  2680. end)
  2681. end
  2682. Shell()
  2683. for i = 1, 10 do
  2684. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2685. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2686. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2687. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2688. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.7)
  2689. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.7)
  2690. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), 0.7)
  2691. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.7)
  2692. if Debounces.on == false then break end
  2693. rs:wait()
  2694. end
  2695. Shell()
  2696. shell.Transparency = 1
  2697. for i = 1, 10 do
  2698. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2699. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2700. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2701. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2702. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2703. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2704. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2705. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2706. if Debounces.on == false then break end
  2707. rs:wait()
  2708. end
  2709. Shell()
  2710. shell.Transparency = 0
  2711. shell2.Transparency = 1
  2712. for i = 1, 10 do
  2713. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2714. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2715. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2716. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2717. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  2718. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2719. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2720. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2721. if Debounces.on == false then break end
  2722. rs:wait()
  2723. end
  2724. Shell()
  2725. shell2.Transparency = 0
  2726. shell.Transparency = 1
  2727. for i = 1, 10 do
  2728. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2729. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2730. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2731. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2732. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2733. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2734. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2735. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2736. if Debounces.on == false then break end
  2737. rs:wait()
  2738. end
  2739. Shell()
  2740. shell.Transparency = 0
  2741. shell2.Transparency = 1
  2742. for i = 1, 10 do
  2743. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2744. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2745. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2746. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2747. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  2748. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2749. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2750. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2751. if Debounces.on == false then break end
  2752. rs:wait()
  2753. end
  2754. Shell()
  2755. shell2.Transparency = 0
  2756. shell.Transparency = 1
  2757. for i = 1, 10 do
  2758. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2759. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2760. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2761. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2762. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2763. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2764. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2765. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2766. if Debounces.on == false then break end
  2767. rs:wait()
  2768. end
  2769. Shell()
  2770. shell.Transparency = 0
  2771. shell2.Transparency = 1
  2772. for i = 1, 10 do
  2773. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2774. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2775. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2776. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.5)
  2777. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2778. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2779. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2780. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2781. if Debounces.on == false then break end
  2782. rs:wait()
  2783. end
  2784. Shell()
  2785. shell2.Transparency = 0
  2786. shell.Transparency = 1
  2787. for i = 1, 10 do
  2788. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2789. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2790. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2791. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2792. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2793. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2794. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2795. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2796. if Debounces.on == false then break end
  2797. rs:wait()
  2798. end
  2799. Shell()
  2800. shell.Transparency = 0
  2801. shell2.Transparency = 1
  2802. for i = 1, 10 do
  2803. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2804. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2805. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2806. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2807. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  2808. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2809. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2810. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2811. if Debounces.on == false then break end
  2812. rs:wait()
  2813. end
  2814. Shell()
  2815. shell2.Transparency = 0
  2816. shell.Transparency = 1
  2817. for i = 1, 10 do
  2818. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2819. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2820. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2821. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2822. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2823. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2824. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2825. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2826. if Debounces.on == false then break end
  2827. rs:wait()
  2828. end
  2829. Shell()
  2830. shell.Transparency = 0
  2831. shell2.Transparency = 1
  2832. for i = 1, 10 do
  2833. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2834. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2835. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2836. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2837. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  2838. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2839. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2840. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2841. if Debounces.on == false then break end
  2842. rs:wait()
  2843. end
  2844. Shell()
  2845. shell2.Transparency = 0
  2846. shell.Transparency = 1
  2847. for i = 1, 10 do
  2848. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2849. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2850. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2851. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2852. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2853. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2854. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2855. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2856. if Debounces.on == false then break end
  2857. rs:wait()
  2858. end
  2859. Shell()
  2860. shell.Transparency = 0
  2861. shell2.Transparency = 1
  2862. for i = 1, 10 do
  2863. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2864. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2865. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2866. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2867. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  2868. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2869. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2870. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2871. if Debounces.on == false then break end
  2872. rs:wait()
  2873. end
  2874. shell.Transparency = 1
  2875. if Debounces.CanAttack == false then
  2876. Debounces.CanAttack = true
  2877. Debounces.NoIdl = false
  2878. Debounces.on = false
  2879. end
  2880. end
  2881. end
  2882. end)
  2883. ----------------------------------------------------
  2884. Search = false
  2885. mouse.KeyDown:connect(function(key)
  2886. if key == "n" then
  2887. if Search == false then
  2888. Search = true
  2889. for i,v in pairs(game.Players:getPlayers()) do
  2890. if v.Name~=char.Name then
  2891. for j,k in pairs(v.Character:GetChildren()) do
  2892. if k:IsA("BasePart") and k.Transparency >= 1 then
  2893. bawx=Instance.new("SelectionBox",cam)
  2894. bawx.Color = BrickColor.new("Bright red")
  2895. bawx.Transparency = .5
  2896. bawx.Adornee = k
  2897. end
  2898. end
  2899. end
  2900. end
  2901. elseif Search == true then
  2902. Search = false
  2903. for i, v in pairs(cam:GetChildren()) do
  2904. if v:IsA("SelectionBox") then
  2905. v:Destroy()
  2906. end
  2907. end
  2908. end
  2909. end
  2910. end)
  2911. ----------------------------------------------------
  2912. Grab = false
  2913. mouse.KeyDown:connect(function(key)
  2914. if key == "z" then
  2915. Debounces.on = true
  2916. Debounces.NoIdl = true
  2917. Debounces.ks = true
  2918. if Grab == false then
  2919. gp = nil
  2920. for i = 1, 20 do
  2921. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.2)
  2922. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.2)
  2923. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  2924. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2925. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  2926. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  2927. if Debounces.on == false then break end
  2928. rs:wait()
  2929. end
  2930. con1=larm.Touched:connect(function(hit) -- this is grab
  2931. ht = hit.Parent
  2932. hum1=ht:FindFirstChild('Humanoid')
  2933. if hum1 ~= nil then
  2934. if Debounces.ks==true then
  2935. z = Instance.new("Sound",hed)
  2936. z.SoundId = "rbxassetid://169380525"
  2937. z.Volume = 1
  2938. z:Play()
  2939. Debounces.ks=false
  2940. end
  2941. hum1.PlatformStand=true
  2942. gp = ht
  2943. Grab = true
  2944. asd=weld5(root,ht:FindFirstChild("Torso"),CFrame.new(0,0,-2.4),CFrame.new(0,0,0))
  2945. asd.Parent = larm
  2946. asd.Name = "asd"
  2947. asd.C0=asd.C0*CFrame.Angles(math.rad(0),math.rad(180),0)
  2948. --[[elseif hum1 == nil then
  2949. con1:disconnect()
  2950. wait() return]]--
  2951. end
  2952. end)
  2953. for i = 1, 20 do
  2954. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
  2955. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
  2956. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  2957. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2958. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  2959. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  2960. if Debounces.on == false then break end
  2961. rs:wait()
  2962. end
  2963. if hum1 == nil then
  2964. Debounces.on = false
  2965. Debounces.NoIdl = false
  2966. end
  2967. con1:disconnect()
  2968. elseif Grab == true then
  2969. Grab = false
  2970. Punch()
  2971. z = Instance.new("Sound",hed)
  2972. z.SoundId = "rbxassetid://169380525"
  2973. z.Pitch = ptz[math.random(1,#ptz)]
  2974. z.Volume = 1
  2975. z:Play()
  2976. for i = 1, 10 do
  2977. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2978. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2979. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2980. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2981. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2982. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2983. if Debounces.on == false then break end
  2984. rs:wait()
  2985. end
  2986. Punch()
  2987. z = Instance.new("Sound",hed)
  2988. z.SoundId = "rbxassetid://169380525"
  2989. z.Pitch = ptz[math.random(1,#ptz)]
  2990. z.Volume = 1
  2991. z:Play()
  2992. for i = 1, 10 do
  2993. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2994. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2995. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2996. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2997. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2998. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2999. if Debounces.on == false then break end
  3000. rs:wait()
  3001. end
  3002. Punch()
  3003. z = Instance.new("Sound",hed)
  3004. z.SoundId = "rbxassetid://169380525"
  3005. z.Pitch = ptz[math.random(1,#ptz)]
  3006. z.Volume = 1
  3007. z:Play()
  3008. for i = 1, 10 do
  3009. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3010. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3011. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3012. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3013. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3014. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3015. if Debounces.on == false then break end
  3016. rs:wait()
  3017. end
  3018. Punch()
  3019. z = Instance.new("Sound",hed)
  3020. z.SoundId = "rbxassetid://169380525"
  3021. z.Pitch = ptz[math.random(1,#ptz)]
  3022. z.Volume = 1
  3023. z:Play()
  3024. for i = 1, 10 do
  3025. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3026. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3027. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3028. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3029. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3030. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3031. if Debounces.on == false then break end
  3032. rs:wait()
  3033. end
  3034. Punch()
  3035. z = Instance.new("Sound",hed)
  3036. z.SoundId = "rbxassetid://169380525"
  3037. z.Pitch = ptz[math.random(1,#ptz)]
  3038. z.Volume = 1
  3039. z:Play()
  3040. for i = 1, 10 do
  3041. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3042. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3043. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3044. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3045. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3046. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3047. if Debounces.on == false then break end
  3048. rs:wait()
  3049. end
  3050. Punch()
  3051. z = Instance.new("Sound",hed)
  3052. z.SoundId = "rbxassetid://169380525"
  3053. z.Pitch = ptz[math.random(1,#ptz)]
  3054. z.Volume = 1
  3055. z:Play()
  3056. for i = 1, 10 do
  3057. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3058. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3059. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3060. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3061. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3062. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3063. if Debounces.on == false then break end
  3064. rs:wait()
  3065. end
  3066. Punch()
  3067. z = Instance.new("Sound",hed)
  3068. z.SoundId = "rbxassetid://169380525"
  3069. z.Pitch = ptz[math.random(1,#ptz)]
  3070. z.Volume = 1
  3071. z:Play()
  3072. for i = 1, 10 do
  3073. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3074. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3075. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3076. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3077. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3078. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3079. if Debounces.on == false then break end
  3080. rs:wait()
  3081. end
  3082. Punch()
  3083. z = Instance.new("Sound",hed)
  3084. z.SoundId = "rbxassetid://169380525"
  3085. z.Pitch = ptz[math.random(1,#ptz)]
  3086. z.Volume = 1
  3087. z:Play()
  3088. for i = 1, 10 do
  3089. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3090. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3091. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3092. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3093. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3094. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3095. if Debounces.on == false then break end
  3096. rs:wait()
  3097. end
  3098. Punch()
  3099. z = Instance.new("Sound",hed)
  3100. z.SoundId = "rbxassetid://169380525"
  3101. z.Pitch = ptz[math.random(1,#ptz)]
  3102. z.Volume = 1
  3103. z:Play()
  3104. for i = 1, 10 do
  3105. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3106. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3107. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3108. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3109. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3110. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3111. if Debounces.on == false then break end
  3112. rs:wait()
  3113. end
  3114. Punch()
  3115. z = Instance.new("Sound",hed)
  3116. z.SoundId = "rbxassetid://169380525"
  3117. z.Pitch = ptz[math.random(1,#ptz)]
  3118. z.Volume = 1
  3119. z:Play()
  3120. for i = 1, 10 do
  3121. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3122. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3123. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3124. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3125. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3126. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3127. if Debounces.on == false then break end
  3128. rs:wait()
  3129. end
  3130. Punch()
  3131. z = Instance.new("Sound",hed)
  3132. z.SoundId = "rbxassetid://169380525"
  3133. z.Pitch = ptz[math.random(1,#ptz)]
  3134. z.Volume = 1
  3135. z:Play()
  3136. for i = 1, 10 do
  3137. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  3138. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  3139. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  3140. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  3141. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3142. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3143. if Debounces.on == false then break end
  3144. rs:wait()
  3145. end
  3146. Punch()
  3147. z = Instance.new("Sound",hed)
  3148. z.SoundId = "rbxassetid://169380525"
  3149. z.Pitch = ptz[math.random(1,#ptz)]
  3150. z.Volume = 1
  3151. z:Play()
  3152. for i = 1, 10 do
  3153. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3154. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3155. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3156. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3157. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3158. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3159. if Debounces.on == false then break end
  3160. rs:wait()
  3161. end
  3162. con1:disconnect()
  3163. Debounces.on = false
  3164. Debounces.NoIdl = false
  3165. if gp ~= nil then
  3166. gp:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 140
  3167. for i,v in pairs(larm:GetChildren()) do
  3168. if v.Name == "asd" and v:IsA("Weld") then
  3169. v:Remove()
  3170. end
  3171. end
  3172. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3173. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3174. bv.P = 125000
  3175. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  3176. hum1=nil
  3177. ht=nil
  3178. Debounces.on = false
  3179. Debounces.NoIdl = false
  3180. elseif ht == nil then wait()
  3181. Grab = false
  3182. Debounces.on = false
  3183. Debounces.NoIdl = false
  3184. end
  3185. end
  3186. end
  3187. end)
  3188. ----------------------------------------------------
  3189. mouse.KeyDown:connect(function(key)
  3190. if string.byte(key) == 52 then
  3191. char.Humanoid.WalkSpeed = 60
  3192. end
  3193. end)
  3194. mouse.KeyUp:connect(function(key)
  3195. if string.byte(key) == 52 then
  3196. char.Humanoid.WalkSpeed = 16
  3197. end
  3198. end)
  3199. -------------------------------
  3200. local animpose = "Idle"
  3201. local lastanimpose = "Idle"
  3202. local sine = 0
  3203. local change = 1
  3204. local val = 0
  3205. local ffing = false
  3206. -------------------------------
  3207. game:GetService("RunService").RenderStepped:connect(function()
  3208. --[[if char.Humanoid.Jump == true then
  3209. jump = true
  3210. else
  3211. jump = false
  3212. end]]
  3213. char.Humanoid.FreeFalling:connect(function(f)
  3214. if f then
  3215. ffing = true
  3216. else
  3217. ffing = false
  3218. end
  3219. end)
  3220. sine = sine + change
  3221. if jumpn == true then
  3222. animpose = "Jumping"
  3223. elseif ffing == true then
  3224. animpose = "Freefalling"
  3225. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3226. animpose = "Idle"
  3227. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3228. animpose = "Walking"
  3229. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3230. animpose = "Running"
  3231. end
  3232. if animpose ~= lastanimpose then
  3233. sine = 0
  3234. if Debounces.NoIdl == false then
  3235. if animpose == "Idle" then
  3236. for i = 1, 2 do
  3237. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  3238. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  3239. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3240. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3241. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  3242. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  3243. end
  3244. elseif animpose == "Walking" then
  3245. for i = 1, 2 do
  3246. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3247. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3248. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3249. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  3250. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3251. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3252. end
  3253. elseif animpose == "Running" then
  3254. for i = 1, 2 do
  3255. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-14),math.rad(8+2*math.cos(sine/14))), 0.2)
  3256. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(14),math.rad(-8-2*math.cos(sine/14))), 0.2)
  3257. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10),0,0), 0.4)
  3258. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20),0, math.rad(0)), 0.4)
  3259. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-7)), 0.4)
  3260. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(7)), 0.4)
  3261. wait()
  3262. end
  3263. end
  3264. else
  3265. end
  3266. end
  3267. lastanimpose = animpose
  3268. if Debounces.NoIdl == false then
  3269. if animpose == "Idle" then
  3270. change = 0.5
  3271. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8+2*math.cos(sine/14))), 0.4)
  3272. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8-2*math.cos(sine/14))), 0.4)
  3273. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  3274. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  3275. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2.6, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  3276. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  3277. elseif animpose == "Walking" then
  3278. change = 1
  3279. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3280. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3281. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3282. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  3283. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2.6, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3284. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3285. elseif animpose == "Running" then
  3286. change = 1
  3287. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.35,.4)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(-30+2*math.cos(sine/14))), 0.2)
  3288. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  3289. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  3290. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-40),math.rad(-10), math.rad(0)), 0.2)
  3291. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, 0, -0.6) * CFrame.Angles(math.rad(-20), math.rad(10), math.rad(0)), 0.4)
  3292. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -0.5, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4)
  3293. end
  3294. end
  3295. end)
  3296.  
  3297. hum.MaxHealth = 9001
  3298. wait(3)
  3299. hum.Health = 9001
  3300.  
  3301. function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module
  3302. --[[Part0 = Vector3 (Start pos)
  3303. Part1 = Vector3 (End pos)
  3304. Times = number (Amount of lightning parts)
  3305. Offset = number (Offset)
  3306. Color = color (brickcolor value)
  3307. Thickness = number (thickness)
  3308. Trans = number (transparency)
  3309. ]]--
  3310. local magz = (Part0 - Part1).magnitude
  3311. local curpos = Part0
  3312. local trz = {-Offset,Offset}
  3313. for i=1,Times do
  3314. local li = Instance.new("Part", torso)
  3315. li.Name = "Lightning"
  3316. li.TopSurface =0
  3317. li.Material = "Neon"
  3318. li.BottomSurface = 0
  3319. li.Anchored = true
  3320. li.Locked = true
  3321. li.Transparency = Trans or 0.4
  3322. li.BrickColor = BrickColor.new(Color)
  3323. li.formFactor = "Custom"
  3324. li.CanCollide = false
  3325. li.Size = Vector3.new(Thickness,Thickness,magz/Times)
  3326. local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  3327. local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
  3328. if Times == i then
  3329. local magz2 = (curpos - Part1).magnitude
  3330. li.Size = Vector3.new(Thickness,Thickness,magz2)
  3331. li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
  3332. else
  3333. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  3334. end
  3335. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
  3336. game.Debris:AddItem(li,.1)
  3337. end
  3338. end
  3339.  
  3340. BodyParts = {} -- Parts to emit lightning effects from
  3341. for _, v in pairs(char:GetChildren()) do
  3342. if v:IsA("Part") then
  3343. table.insert(BodyParts, v)
  3344. end
  3345. end
  3346.  
  3347. Bounding = {} -- Calculate the bounding boxes
  3348. for _, v in pairs(BodyParts) do
  3349. local temp = {X=nil, Y=nil, Z=nil}
  3350. temp.X = v.Size.X/2 * 10
  3351. temp.Y = v.Size.Y/2 * 10
  3352. temp.Z = v.Size.Z/2 * 10
  3353. Bounding[v.Name] = temp
  3354. --table.insert(Bounding, v.Name, temp)
  3355. end
  3356.  
  3357. while wait(math.random(1,10)/10) do -- Emit the Lightning effects randomly
  3358. local Body1 = BodyParts[math.random(#BodyParts)]
  3359. local Body2 = BodyParts[math.random(#BodyParts)]
  3360. local Pos1 = Vector3.new(
  3361. math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/10,
  3362. math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/10,
  3363. math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/10
  3364. )
  3365. local Pos2 = Vector3.new(
  3366. math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/10,
  3367. math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/10,
  3368. math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/10
  3369. )
  3370. local SPos1 = Body1.Position + Pos1
  3371. local SPos2 = Body2.Position + Pos2
  3372. Lightning(SPos1, SPos2, 4, 3, "Bright blue", .3, .56)
  3373. end
Add Comment
Please, Sign In to add comment