Advertisement
Guest User

Untitled

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