Advertisement
Guest User

for cool123068

a guest
Aug 17th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 190.59 KB | None | 0 0
  1.  
  2. 2.
  3.  
  4.  
  5. 3.--[[
  6.  
  7.  
  8. 4.User:cool123068
  9.  
  10.  
  11. 5.Script: DSSJ3
  12.  
  13.  
  14. 6.Pass: CENSORED
  15.  
  16.  
  17. 7.
  18.  
  19.  
  20. 8.]]
  21.  
  22.  
  23. 9.
  24.  
  25.  
  26. 10.local p = game.Players.LocalPlayer
  27.  
  28.  
  29. 11.local char = p.Character
  30.  
  31.  
  32. 12.local mouse = p:GetMouse()
  33.  
  34.  
  35. 13.local larm = char["Left Arm"]
  36.  
  37.  
  38. 14.local rarm = char["Right Arm"]
  39.  
  40.  
  41. 15.local lleg = char["Left Leg"]
  42.  
  43.  
  44. 16.local rleg = char["Right Leg"]
  45.  
  46.  
  47. 17.local hed = char.Head
  48.  
  49.  
  50. 18.local torso = char.Torso
  51.  
  52.  
  53. 19.local hum = char.Humanoid
  54.  
  55.  
  56. 20.local cam = game.Workspace.CurrentCamera
  57.  
  58.  
  59. 21.local root = char.HumanoidRootPart
  60.  
  61.  
  62. 22.local deb = false
  63.  
  64.  
  65. 23.local shot = 0
  66.  
  67.  
  68. 24.local debris=game:service"Debris"
  69.  
  70.  
  71. 25.local l = game:GetService("Lighting")
  72.  
  73.  
  74. 26.local rs = game:GetService("RunService").RenderStepped
  75.  
  76.  
  77. 27.ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  78.  
  79.  
  80. 28.math.randomseed(os.time())
  81.  
  82.  
  83. 29.for i,v in pairs(char:children()) do
  84.  
  85.  
  86. 30. if v:IsA("Hat") then
  87.  
  88.  
  89. 31. v:Destroy()
  90.  
  91.  
  92. 32. end
  93.  
  94.  
  95. 33.end
  96.  
  97.  
  98. 34.for i,v in pairs (hed:GetChildren()) do
  99.  
  100.  
  101. 35. if v:IsA("Sound") then
  102.  
  103.  
  104. 36. v:Destroy()
  105.  
  106.  
  107. 37. end
  108.  
  109.  
  110. 38.end
  111.  
  112.  
  113. 39.----------------------------------------------------
  114.  
  115.  
  116. 40.Debounces = {
  117.  
  118.  
  119. 41.CanAttack = true;
  120.  
  121.  
  122. 42.NoIdl = false;
  123.  
  124.  
  125. 43.Slashing = false;
  126.  
  127.  
  128. 44.Slashed = false;
  129.  
  130.  
  131. 45.RPunch = false;
  132.  
  133.  
  134. 46.RPunched = false;
  135.  
  136.  
  137. 47.LPunch = false;
  138.  
  139.  
  140. 48.LPunched = false;
  141.  
  142.  
  143. 49.}
  144.  
  145.  
  146. 50.local Touche = {char.Name, }
  147.  
  148.  
  149. 51.----------------------------------------------------
  150.  
  151.  
  152. 52.hed.face.Texture = "rbxassetid://34668268"
  153.  
  154.  
  155. 53.char["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
  156.  
  157.  
  158. 54.char["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
  159.  
  160.  
  161. 55.char["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
  162.  
  163.  
  164. 56.char["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
  165.  
  166.  
  167. 57.----------------------------------------------------
  168.  
  169.  
  170. 58.ypcall(function()
  171.  
  172.  
  173. 59.char.Shirt:Destroy()
  174.  
  175.  
  176. 60.char.Pants:Destroy()
  177.  
  178.  
  179. 61.shirt = Instance.new("Shirt", char)
  180.  
  181.  
  182. 62.shirt.Name = "Shirt"
  183.  
  184.  
  185. 63.pants = Instance.new("Pants", char)
  186.  
  187.  
  188. 64.pants.Name = "Pants"
  189.  
  190.  
  191. 65.char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  192.  
  193.  
  194. 66.char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  195.  
  196.  
  197. 67.end)
  198.  
  199.  
  200. 68.----------------------------------------------------
  201.  
  202.  
  203. 69.function lerp(a, b, t) -- Linear interpolation
  204.  
  205.  
  206. 70. return a + (b - a)*t
  207.  
  208.  
  209. 71.end
  210.  
  211.  
  212. 72.
  213.  
  214.  
  215. 73.function slerp(a, b, t) --Spherical interpolation
  216.  
  217.  
  218. 74. dot = a:Dot(b)
  219.  
  220.  
  221. 75. if dot > 0.99999 or dot < -0.99999 then
  222.  
  223.  
  224. 76. return t <= 0.5 and a or b
  225.  
  226.  
  227. 77. else
  228.  
  229.  
  230. 78. r = math.acos(dot)
  231.  
  232.  
  233. 79. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  234.  
  235.  
  236. 80. end
  237.  
  238.  
  239. 81.end
  240.  
  241.  
  242. 82.
  243.  
  244.  
  245. 83.function matrixInterpolate(a, b, t)
  246.  
  247.  
  248. 84. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  249.  
  250.  
  251. 85. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  252.  
  253.  
  254. 86. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  255.  
  256.  
  257. 87. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  258.  
  259.  
  260. 88. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  261.  
  262.  
  263. 89. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  264.  
  265.  
  266. 90. local t = v1:Dot(v2)
  267.  
  268.  
  269. 91. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  270.  
  271.  
  272. 92. return CFrame.new()
  273.  
  274.  
  275. 93. end
  276.  
  277.  
  278. 94. return CFrame.new(
  279.  
  280.  
  281. 95. v0.x, v0.y, v0.z,
  282.  
  283.  
  284. 96. v1.x, v1.y, v1.z,
  285.  
  286.  
  287. 97. v2.x, v2.y, v2.z,
  288.  
  289.  
  290. 98. v3.x, v3.y, v3.z)
  291.  
  292.  
  293. 99.end
  294.  
  295.  
  296. 100.----------------------------------------------------
  297.  
  298.  
  299. 101.function genWeld(a,b)
  300.  
  301.  
  302. 102. local w = Instance.new("Weld",a)
  303.  
  304.  
  305. 103. w.Part0 = a
  306.  
  307.  
  308. 104. w.Part1 = b
  309.  
  310.  
  311. 105. return w
  312.  
  313.  
  314. 106.end
  315.  
  316.  
  317. 107.function weld(a, b)
  318.  
  319.  
  320. 108. local weld = Instance.new("Weld")
  321.  
  322.  
  323. 109. weld.Name = "W"
  324.  
  325.  
  326. 110. weld.Part0 = a
  327.  
  328.  
  329. 111. weld.Part1 = b
  330.  
  331.  
  332. 112. weld.C0 = a.CFrame:inverse() * b.CFrame
  333.  
  334.  
  335. 113. weld.Parent = a
  336.  
  337.  
  338. 114. return weld;
  339.  
  340.  
  341. 115.end
  342.  
  343.  
  344. 116.----------------------------------------------------
  345.  
  346.  
  347. 117.function Lerp(c1,c2,al)
  348.  
  349.  
  350. 118.local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  351.  
  352.  
  353. 119.local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  354.  
  355.  
  356. 120.for i,v in pairs(com1) do
  357.  
  358.  
  359. 121.com1[i] = v+(com2[i]-v)*al
  360.  
  361.  
  362. 122.end
  363.  
  364.  
  365. 123.return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  366.  
  367.  
  368. 124.end
  369.  
  370.  
  371. 125.----------------------------------------------------
  372.  
  373.  
  374. 126.newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  375.  
  376.  
  377. 127.local wld = Instance.new("Weld", wp1)
  378.  
  379.  
  380. 128.wld.Part0 = wp0
  381.  
  382.  
  383. 129.wld.Part1 = wp1
  384.  
  385.  
  386. 130.wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  387.  
  388.  
  389. 131.end
  390.  
  391.  
  392. 132.----------------------------------------------------
  393.  
  394.  
  395. 133.function weld5(part0, part1, c0, c1)
  396.  
  397.  
  398. 134. weeld=Instance.new("Weld", part0)
  399.  
  400.  
  401. 135. weeld.Part0=part0
  402.  
  403.  
  404. 136. weeld.Part1=part1
  405.  
  406.  
  407. 137. weeld.C0=c0
  408.  
  409.  
  410. 138. weeld.C1=c1
  411.  
  412.  
  413. 139. return weeld
  414.  
  415.  
  416. 140.end
  417.  
  418.  
  419. 141.----------------------------------------------------
  420.  
  421.  
  422. 142.function HasntTouched(plrname)
  423.  
  424.  
  425. 143.local ret = true
  426.  
  427.  
  428. 144.for _, v in pairs(Touche) do
  429.  
  430.  
  431. 145.if v == plrname then
  432.  
  433.  
  434. 146.ret = false
  435.  
  436.  
  437. 147.end
  438.  
  439.  
  440. 148.end
  441.  
  442.  
  443. 149.return ret
  444.  
  445.  
  446. 150.end
  447.  
  448.  
  449. 151.----------------------------------------------------
  450.  
  451.  
  452. 152.newWeld(torso, larm, -1.5, 0.5, 0)
  453.  
  454.  
  455. 153.larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  456.  
  457.  
  458. 154.newWeld(torso, rarm, 1.5, 0.5, 0)
  459.  
  460.  
  461. 155.rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  462.  
  463.  
  464. 156.newWeld(torso, hed, 0, 1.5, 0)
  465.  
  466.  
  467. 157.newWeld(torso, lleg, -0.5, -1, 0)
  468.  
  469.  
  470. 158.lleg.Weld.C1 = CFrame.new(0, 1, 0)
  471.  
  472.  
  473. 159.newWeld(torso, rleg, 0.5, -1, 0)
  474.  
  475.  
  476. 160.rleg.Weld.C1 = CFrame.new(0, 1, 0)
  477.  
  478.  
  479. 161.newWeld(root, torso, 0, -1, 0)
  480.  
  481.  
  482. 162.torso.Weld.C1 = CFrame.new(0, -1, 0)
  483.  
  484.  
  485. 163.----------------------------------------------------
  486.  
  487.  
  488. 164.z = Instance.new("Sound", char)
  489.  
  490.  
  491. 165.z.SoundId = "rbxassetid://303570180"--303570180
  492.  
  493.  
  494. 166.z.Looped = true
  495.  
  496.  
  497. 167.z.Pitch = 1
  498.  
  499.  
  500. 168.z.Volume = 1
  501.  
  502.  
  503. 169.wait(.1)
  504.  
  505.  
  506. 170.z:Play()
  507.  
  508.  
  509. 171.----------------------------------------------------
  510.  
  511.  
  512. 172.local Transforming = true
  513.  
  514.  
  515. 173.hum.WalkSpeed = 0
  516.  
  517.  
  518. 174.local fx = Instance.new("Part",torso)
  519.  
  520.  
  521. 175.fx.Anchored = true
  522.  
  523.  
  524. 176.fx.Material = "Neon"
  525.  
  526.  
  527. 177.fx.CanCollide = false
  528.  
  529.  
  530. 178.fx.Locked = true
  531.  
  532.  
  533. 179.fx.Transparency = 1
  534.  
  535.  
  536. 180.fx.Material = "SmoothPlastic"
  537.  
  538.  
  539. 181.fx.Size = Vector3.new(1,1,1)
  540.  
  541.  
  542. 182.fx.TopSurface = "SmoothNoOutlines"
  543.  
  544.  
  545. 183.fx.BottomSurface = "SmoothNoOutlines"
  546.  
  547.  
  548. 184.fx.BrickColor = BrickColor.new("Really red")
  549.  
  550.  
  551. 185.fxm = Instance.new("SpecialMesh",fx)
  552.  
  553.  
  554. 186.fxm.MeshType = "Sphere"
  555.  
  556.  
  557. 187.fxm.Scale = Vector3.new(1,1,1)
  558.  
  559.  
  560. 188.for i = 1, 20 do rs:wait()
  561.  
  562.  
  563. 189. fx.Transparency = fx.Transparency - (1/20)
  564.  
  565.  
  566. 190. fx.CFrame = torso.CFrame
  567.  
  568.  
  569. 191. fxm.Scale = fxm.Scale + Vector3.new(0.5,0.5,0.5)
  570.  
  571.  
  572. 192. rs:wait()
  573.  
  574.  
  575. 193.end
  576.  
  577.  
  578. 194.----------------------------------------------------
  579.  
  580.  
  581. 195.local m = Instance.new("Model")
  582.  
  583.  
  584. 196.m.Name = "Hair"
  585.  
  586.  
  587. 197.p1 = Instance.new("Part", m)
  588.  
  589.  
  590. 198.p1.BrickColor = BrickColor.new("Really red")
  591.  
  592.  
  593. 199.p1.FormFactor = Enum.FormFactor.Symmetric
  594.  
  595.  
  596. 200.p1.Size = Vector3.new(1, 1, 1)
  597.  
  598.  
  599. 201.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)
  600.  
  601.  
  602. 202.p1.CanCollide = false
  603.  
  604.  
  605. 203.p1.Locked = true
  606.  
  607.  
  608. 204.p1.BottomSurface = Enum.SurfaceType.Smooth
  609.  
  610.  
  611. 205.p1.TopSurface = Enum.SurfaceType.Smooth
  612.  
  613.  
  614. 206.b1 = Instance.new("SpecialMesh", p1)
  615.  
  616.  
  617. 207.b1.MeshId = "http://www.roblox.com/asset/?id=12212520"
  618.  
  619.  
  620. 208.b1.TextureId = ""
  621.  
  622.  
  623. 209.b1.MeshType = Enum.MeshType.FileMesh
  624.  
  625.  
  626. 210.b1.Name = "Mesh"
  627.  
  628.  
  629. 211.b1.VertexColor = Vector3.new(0, 0, 0)
  630.  
  631.  
  632. 212.b1.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  633.  
  634.  
  635. 213.p2 = Instance.new("Part", m)
  636.  
  637.  
  638. 214.p2.BrickColor = BrickColor.new("Pastel brown")
  639.  
  640.  
  641. 215.p2.Transparency = 1
  642.  
  643.  
  644. 216.p2.Name = "Head"
  645.  
  646.  
  647. 217.p2.FormFactor = Enum.FormFactor.Symmetric
  648.  
  649.  
  650. 218.p2.Size = Vector3.new(2, 1, 1)
  651.  
  652.  
  653. 219.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)
  654.  
  655.  
  656. 220.p2.CanCollide = false
  657.  
  658.  
  659. 221.p2.Locked = true
  660.  
  661.  
  662. 222.p2.TopSurface = Enum.SurfaceType.Smooth
  663.  
  664.  
  665. 223.b2 = Instance.new("SpecialMesh", p2)
  666.  
  667.  
  668. 224.b2.MeshType = Enum.MeshType.Head
  669.  
  670.  
  671. 225.b2.Name = "Mesh"
  672.  
  673.  
  674. 226.b2.Scale = Vector3.new(1.25, 1.25, 1.25)
  675.  
  676.  
  677. 227.p3 = Instance.new("Part", m)
  678.  
  679.  
  680. 228.p3.BrickColor = BrickColor.new("Really red")
  681.  
  682.  
  683. 229.p3.FormFactor = Enum.FormFactor.Symmetric
  684.  
  685.  
  686. 230.p3.Size = Vector3.new(2, 2, 2)
  687.  
  688.  
  689. 231.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)
  690.  
  691.  
  692. 232.p3.CanCollide = false
  693.  
  694.  
  695. 233.p3.Locked = true
  696.  
  697.  
  698. 234.p3.BottomSurface = Enum.SurfaceType.Smooth
  699.  
  700.  
  701. 235.p3.TopSurface = Enum.SurfaceType.Smooth
  702.  
  703.  
  704. 236.b3 = Instance.new("SpecialMesh", p3)
  705.  
  706.  
  707. 237.b3.MeshId = "http://www.roblox.com/asset/?id=16627529"
  708.  
  709.  
  710. 238.b3.TextureId = ""
  711.  
  712.  
  713. 239.b3.MeshType = Enum.MeshType.FileMesh
  714.  
  715.  
  716. 240.b3.Name = "Mesh"
  717.  
  718.  
  719. 241.b3.VertexColor = Vector3.new(0, 0, 0)
  720.  
  721.  
  722. 242.b3.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  723.  
  724.  
  725. 243.p4 = Instance.new("Part", m)
  726.  
  727.  
  728. 244.p4.BrickColor = BrickColor.new("Really red")
  729.  
  730.  
  731. 245.p4.FormFactor = Enum.FormFactor.Symmetric
  732.  
  733.  
  734. 246.p4.Size = Vector3.new(1, 1, 1)
  735.  
  736.  
  737. 247.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)
  738.  
  739.  
  740. 248.p4.CanCollide = false
  741.  
  742.  
  743. 249.p4.Locked = true
  744.  
  745.  
  746. 250.p4.BottomSurface = Enum.SurfaceType.Smooth
  747.  
  748.  
  749. 251.p4.TopSurface = Enum.SurfaceType.Smooth
  750.  
  751.  
  752. 252.b4 = Instance.new("SpecialMesh", p4)
  753.  
  754.  
  755. 253.b4.MeshId = "http://www.roblox.com/asset/?id=19326912"
  756.  
  757.  
  758. 254.b4.TextureId = ""
  759.  
  760.  
  761. 255.b4.MeshType = Enum.MeshType.FileMesh
  762.  
  763.  
  764. 256.b4.Name = "Mesh"
  765.  
  766.  
  767. 257.b4.VertexColor = Vector3.new(0, 0, 0)
  768.  
  769.  
  770. 258.p5 = Instance.new("Part", m)
  771.  
  772.  
  773. 259.p5.BrickColor = BrickColor.new("Really red")
  774.  
  775.  
  776. 260.p5.FormFactor = Enum.FormFactor.Symmetric
  777.  
  778.  
  779. 261.p5.Size = Vector3.new(1, 1, 1)
  780.  
  781.  
  782. 262.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)
  783.  
  784.  
  785. 263.p5.CanCollide = false
  786.  
  787.  
  788. 264.p5.Locked = true
  789.  
  790.  
  791. 265.p5.BottomSurface = Enum.SurfaceType.Smooth
  792.  
  793.  
  794. 266.p5.TopSurface = Enum.SurfaceType.Smooth
  795.  
  796.  
  797. 267.b5 = Instance.new("SpecialMesh", p5)
  798.  
  799.  
  800. 268.b5.MeshId = "http://www.roblox.com/asset/?id=45916884"
  801.  
  802.  
  803. 269.b5.TextureId = ""
  804.  
  805.  
  806. 270.b5.MeshType = Enum.MeshType.FileMesh
  807.  
  808.  
  809. 271.b5.Name = "Mesh"
  810.  
  811.  
  812. 272.b5.VertexColor = Vector3.new(0, 0, 0)
  813.  
  814.  
  815. 273.b5.Scale = Vector3.new(1, 0.899999976, 1)
  816.  
  817.  
  818. 274.p6 = Instance.new("Part", m)
  819.  
  820.  
  821. 275.p6.BrickColor = BrickColor.new("Really red")
  822.  
  823.  
  824. 276.p6.FormFactor = Enum.FormFactor.Symmetric
  825.  
  826.  
  827. 277.p6.Size = Vector3.new(1, 1, 1)
  828.  
  829.  
  830. 278.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)
  831.  
  832.  
  833. 279.p6.CanCollide = false
  834.  
  835.  
  836. 280.p6.Locked = true
  837.  
  838.  
  839. 281.p6.BottomSurface = Enum.SurfaceType.Smooth
  840.  
  841.  
  842. 282.p6.TopSurface = Enum.SurfaceType.Smooth
  843.  
  844.  
  845. 283.b6 = Instance.new("SpecialMesh", p6)
  846.  
  847.  
  848. 284.b6.MeshId = "http://www.roblox.com/asset/?id=62246019"
  849.  
  850.  
  851. 285.b6.TextureId = ""
  852.  
  853.  
  854. 286.b6.MeshType = Enum.MeshType.FileMesh
  855.  
  856.  
  857. 287.b6.Name = "Mesh"
  858.  
  859.  
  860. 288.b6.VertexColor = Vector3.new(0, 0, 0)
  861.  
  862.  
  863. 289.p7 = Instance.new("Part", m)
  864.  
  865.  
  866. 290.p7.BrickColor = BrickColor.new("Really red")
  867.  
  868.  
  869. 291.p7.FormFactor = Enum.FormFactor.Symmetric
  870.  
  871.  
  872. 292.p7.Size = Vector3.new(1, 1, 1)
  873.  
  874.  
  875. 293.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)
  876.  
  877.  
  878. 294.p7.CanCollide = false
  879.  
  880.  
  881. 295.p7.Locked = true
  882.  
  883.  
  884. 296.p7.BottomSurface = Enum.SurfaceType.Smooth
  885.  
  886.  
  887. 297.p7.TopSurface = Enum.SurfaceType.Smooth
  888.  
  889.  
  890. 298.b7 = Instance.new("SpecialMesh", p7)
  891.  
  892.  
  893. 299.b7.MeshId = "http://www.roblox.com/asset/?id=76056263"
  894.  
  895.  
  896. 300.b7.TextureId = ""
  897.  
  898.  
  899. 301.b7.MeshType = Enum.MeshType.FileMesh
  900.  
  901.  
  902. 302.b7.Name = "Mesh"
  903.  
  904.  
  905. 303.b7.VertexColor = Vector3.new(0, 0, 0)
  906.  
  907.  
  908. 304.p8 = Instance.new("Part", m)
  909.  
  910.  
  911. 305.p8.BrickColor = BrickColor.new("Really red")
  912.  
  913.  
  914. 306.p8.FormFactor = Enum.FormFactor.Symmetric
  915.  
  916.  
  917. 307.p8.Size = Vector3.new(1, 1, 1)
  918.  
  919.  
  920. 308.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)
  921.  
  922.  
  923. 309.p8.CanCollide = false
  924.  
  925.  
  926. 310.p8.Locked = true
  927.  
  928.  
  929. 311.p8.BottomSurface = Enum.SurfaceType.Smooth
  930.  
  931.  
  932. 312.p8.TopSurface = Enum.SurfaceType.Smooth
  933.  
  934.  
  935. 313.b8 = Instance.new("SpecialMesh", p8)
  936.  
  937.  
  938. 314.b8.MeshId = "http://www.roblox.com/asset/?id=12212520"
  939.  
  940.  
  941. 315.b8.TextureId = ""
  942.  
  943.  
  944. 316.b8.MeshType = Enum.MeshType.FileMesh
  945.  
  946.  
  947. 317.b8.Name = "Mesh"
  948.  
  949.  
  950. 318.b8.VertexColor = Vector3.new(0, 0, 0)
  951.  
  952.  
  953. 319.b8.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  954.  
  955.  
  956. 320.p9 = Instance.new("Part", m)
  957.  
  958.  
  959. 321.p9.BrickColor = BrickColor.new("Really red")
  960.  
  961.  
  962. 322.p9.FormFactor = Enum.FormFactor.Symmetric
  963.  
  964.  
  965. 323.p9.Size = Vector3.new(2, 1, 2)
  966.  
  967.  
  968. 324.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)
  969.  
  970.  
  971. 325.p9.CanCollide = false
  972.  
  973.  
  974. 326.p9.Locked = true
  975.  
  976.  
  977. 327.p9.BottomSurface = Enum.SurfaceType.Smooth
  978.  
  979.  
  980. 328.p9.TopSurface = Enum.SurfaceType.Smooth
  981.  
  982.  
  983. 329.b9 = Instance.new("SpecialMesh", p9)
  984.  
  985.  
  986. 330.b9.MeshId = "http://www.roblox.com/asset/?id=12259089"
  987.  
  988.  
  989. 331.b9.TextureId = ""
  990.  
  991.  
  992. 332.b9.MeshType = Enum.MeshType.FileMesh
  993.  
  994.  
  995. 333.b9.Name = "Mesh"
  996.  
  997.  
  998. 334.b9.VertexColor = Vector3.new(0, 0, 0)
  999.  
  1000.  
  1001. 335.b9.Scale = Vector3.new(1.01999998, 1.04999995, 1.04999995)
  1002.  
  1003.  
  1004. 336.p10 = Instance.new("Part", m)
  1005.  
  1006.  
  1007. 337.p10.BrickColor = BrickColor.new("Really red")
  1008.  
  1009.  
  1010. 338.p10.FormFactor = Enum.FormFactor.Symmetric
  1011.  
  1012.  
  1013. 339.p10.Size = Vector3.new(1, 1, 1)
  1014.  
  1015.  
  1016. 340.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)
  1017.  
  1018.  
  1019. 341.p10.CanCollide = false
  1020.  
  1021.  
  1022. 342.p10.Locked = true
  1023.  
  1024.  
  1025. 343.p10.BottomSurface = Enum.SurfaceType.Smooth
  1026.  
  1027.  
  1028. 344.p10.TopSurface = Enum.SurfaceType.Smooth
  1029.  
  1030.  
  1031. 345.b10 = Instance.new("SpecialMesh", p10)
  1032.  
  1033.  
  1034. 346.b10.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1035.  
  1036.  
  1037. 347.b10.TextureId = ""
  1038.  
  1039.  
  1040. 348.b10.MeshType = Enum.MeshType.FileMesh
  1041.  
  1042.  
  1043. 349.b10.Name = "Mesh"
  1044.  
  1045.  
  1046. 350.b10.VertexColor = Vector3.new(0, 0, 0)
  1047.  
  1048.  
  1049. 351.b10.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  1050.  
  1051.  
  1052. 352.p11 = Instance.new("Part", m)
  1053.  
  1054.  
  1055. 353.p11.BrickColor = BrickColor.new("Really red")
  1056.  
  1057.  
  1058. 354.p11.FormFactor = Enum.FormFactor.Symmetric
  1059.  
  1060.  
  1061. 355.p11.Size = Vector3.new(1, 1, 1)
  1062.  
  1063.  
  1064. 356.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)
  1065.  
  1066.  
  1067. 357.p11.CanCollide = false
  1068.  
  1069.  
  1070. 358.p11.Locked = true
  1071.  
  1072.  
  1073. 359.p11.BottomSurface = Enum.SurfaceType.Smooth
  1074.  
  1075.  
  1076. 360.p11.TopSurface = Enum.SurfaceType.Smooth
  1077.  
  1078.  
  1079. 361.b11 = Instance.new("SpecialMesh", p11)
  1080.  
  1081.  
  1082. 362.b11.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1083.  
  1084.  
  1085. 363.b11.TextureId = ""
  1086.  
  1087.  
  1088. 364.b11.MeshType = Enum.MeshType.FileMesh
  1089.  
  1090.  
  1091. 365.b11.Name = "Mesh"
  1092.  
  1093.  
  1094. 366.b11.VertexColor = Vector3.new(0, 0, 0)
  1095.  
  1096.  
  1097. 367.b11.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  1098.  
  1099.  
  1100. 368.p12 = Instance.new("Part", m)
  1101.  
  1102.  
  1103. 369.p12.BrickColor = BrickColor.new("Really red")
  1104.  
  1105.  
  1106. 370.p12.FormFactor = Enum.FormFactor.Custom
  1107.  
  1108.  
  1109. 371.p12.Size = Vector3.new(1, 3.5, 1)
  1110.  
  1111.  
  1112. 372.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)
  1113.  
  1114.  
  1115. 373.p12.CanCollide = false
  1116.  
  1117.  
  1118. 374.p12.Locked = true
  1119.  
  1120.  
  1121. 375.p12.BottomSurface = Enum.SurfaceType.Smooth
  1122.  
  1123.  
  1124. 376.p12.TopSurface = Enum.SurfaceType.Smooth
  1125.  
  1126.  
  1127. 377.b12 = Instance.new("SpecialMesh", p12)
  1128.  
  1129.  
  1130. 378.b12.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1131.  
  1132.  
  1133. 379.b12.TextureId = ""
  1134.  
  1135.  
  1136. 380.b12.MeshType = Enum.MeshType.FileMesh
  1137.  
  1138.  
  1139. 381.b12.Name = "Mesh"
  1140.  
  1141.  
  1142. 382.b12.VertexColor = Vector3.new(0, 0, 0)
  1143.  
  1144.  
  1145. 383.b12.Scale = Vector3.new(1, 3, 1.29999995)
  1146.  
  1147.  
  1148. 384.p13 = Instance.new("Part", m)
  1149.  
  1150.  
  1151. 385.p13.BrickColor = BrickColor.new("Really red")
  1152.  
  1153.  
  1154. 386.p13.FormFactor = Enum.FormFactor.Custom
  1155.  
  1156.  
  1157. 387.p13.Size = Vector3.new(1, 2, 1)
  1158.  
  1159.  
  1160. 388.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)
  1161.  
  1162.  
  1163. 389.p13.CanCollide = false
  1164.  
  1165.  
  1166. 390.p13.Locked = true
  1167.  
  1168.  
  1169. 391.p13.BottomSurface = Enum.SurfaceType.Smooth
  1170.  
  1171.  
  1172. 392.p13.TopSurface = Enum.SurfaceType.Smooth
  1173.  
  1174.  
  1175. 393.b13 = Instance.new("SpecialMesh", p13)
  1176.  
  1177.  
  1178. 394.b13.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1179.  
  1180.  
  1181. 395.b13.TextureId = ""
  1182.  
  1183.  
  1184. 396.b13.MeshType = Enum.MeshType.FileMesh
  1185.  
  1186.  
  1187. 397.b13.Name = "Mesh"
  1188.  
  1189.  
  1190. 398.b13.VertexColor = Vector3.new(0, 0, 0)
  1191.  
  1192.  
  1193. 399.b13.Scale = Vector3.new(1, 3, 1.29999995)
  1194.  
  1195.  
  1196. 400.p14 = Instance.new("Part", m)
  1197.  
  1198.  
  1199. 401.p14.BrickColor = BrickColor.new("Really red")
  1200.  
  1201.  
  1202. 402.p14.FormFactor = Enum.FormFactor.Custom
  1203.  
  1204.  
  1205. 403.p14.Size = Vector3.new(1, 2, 1)
  1206.  
  1207.  
  1208. 404.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)
  1209.  
  1210.  
  1211. 405.p14.CanCollide = false
  1212.  
  1213.  
  1214. 406.p14.Locked = true
  1215.  
  1216.  
  1217. 407.p14.BottomSurface = Enum.SurfaceType.Smooth
  1218.  
  1219.  
  1220. 408.p14.TopSurface = Enum.SurfaceType.Smooth
  1221.  
  1222.  
  1223. 409.b14 = Instance.new("SpecialMesh", p14)
  1224.  
  1225.  
  1226. 410.b14.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1227.  
  1228.  
  1229. 411.b14.TextureId = ""
  1230.  
  1231.  
  1232. 412.b14.MeshType = Enum.MeshType.FileMesh
  1233.  
  1234.  
  1235. 413.b14.Name = "Mesh"
  1236.  
  1237.  
  1238. 414.b14.VertexColor = Vector3.new(0, 0, 0)
  1239.  
  1240.  
  1241. 415.b14.Scale = Vector3.new(1, 3, 1.29999995)
  1242.  
  1243.  
  1244. 416.p15 = Instance.new("Part", m)
  1245.  
  1246.  
  1247. 417.p15.BrickColor = BrickColor.new("Really red")
  1248.  
  1249.  
  1250. 418.p15.FormFactor = Enum.FormFactor.Custom
  1251.  
  1252.  
  1253. 419.p15.Size = Vector3.new(1, 2.5, 1)
  1254.  
  1255.  
  1256. 420.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)
  1257.  
  1258.  
  1259. 421.p15.CanCollide = false
  1260.  
  1261.  
  1262. 422.p15.Locked = true
  1263.  
  1264.  
  1265. 423.p15.BottomSurface = Enum.SurfaceType.Smooth
  1266.  
  1267.  
  1268. 424.p15.TopSurface = Enum.SurfaceType.Smooth
  1269.  
  1270.  
  1271. 425.b15 = Instance.new("SpecialMesh", p15)
  1272.  
  1273.  
  1274. 426.b15.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1275.  
  1276.  
  1277. 427.b15.TextureId = ""
  1278.  
  1279.  
  1280. 428.b15.MeshType = Enum.MeshType.FileMesh
  1281.  
  1282.  
  1283. 429.b15.Name = "Mesh"
  1284.  
  1285.  
  1286. 430.b15.VertexColor = Vector3.new(0, 0, 0)
  1287.  
  1288.  
  1289. 431.b15.Scale = Vector3.new(1, 3, 1.29999995)
  1290.  
  1291.  
  1292. 432.p16 = Instance.new("Part", m)
  1293.  
  1294.  
  1295. 433.p16.BrickColor = BrickColor.new("Really red")
  1296.  
  1297.  
  1298. 434.p16.FormFactor = Enum.FormFactor.Custom
  1299.  
  1300.  
  1301. 435.p16.Size = Vector3.new(1, 2.5, 1)
  1302.  
  1303.  
  1304. 436.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)
  1305.  
  1306.  
  1307. 437.p16.CanCollide = false
  1308.  
  1309.  
  1310. 438.p16.Locked = true
  1311.  
  1312.  
  1313. 439.p16.BottomSurface = Enum.SurfaceType.Smooth
  1314.  
  1315.  
  1316. 440.p16.TopSurface = Enum.SurfaceType.Smooth
  1317.  
  1318.  
  1319. 441.b16 = Instance.new("SpecialMesh", p16)
  1320.  
  1321.  
  1322. 442.b16.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1323.  
  1324.  
  1325. 443.b16.TextureId = ""
  1326.  
  1327.  
  1328. 444.b16.MeshType = Enum.MeshType.FileMesh
  1329.  
  1330.  
  1331. 445.b16.Name = "Mesh"
  1332.  
  1333.  
  1334. 446.b16.VertexColor = Vector3.new(0, 0, 0)
  1335.  
  1336.  
  1337. 447.b16.Scale = Vector3.new(1, 3, 1.29999995)
  1338.  
  1339.  
  1340. 448.p17 = Instance.new("Part", m)
  1341.  
  1342.  
  1343. 449.p17.BrickColor = BrickColor.new("Really red")
  1344.  
  1345.  
  1346. 450.p17.FormFactor = Enum.FormFactor.Custom
  1347.  
  1348.  
  1349. 451.p17.Size = Vector3.new(1, 2.4000001, 1)
  1350.  
  1351.  
  1352. 452.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)
  1353.  
  1354.  
  1355. 453.p17.CanCollide = false
  1356.  
  1357.  
  1358. 454.p17.Locked = true
  1359.  
  1360.  
  1361. 455.p17.BottomSurface = Enum.SurfaceType.Smooth
  1362.  
  1363.  
  1364. 456.p17.TopSurface = Enum.SurfaceType.Smooth
  1365.  
  1366.  
  1367. 457.b17 = Instance.new("SpecialMesh", p17)
  1368.  
  1369.  
  1370. 458.b17.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1371.  
  1372.  
  1373. 459.b17.TextureId = ""
  1374.  
  1375.  
  1376. 460.b17.MeshType = Enum.MeshType.FileMesh
  1377.  
  1378.  
  1379. 461.b17.Name = "Mesh"
  1380.  
  1381.  
  1382. 462.b17.VertexColor = Vector3.new(0, 0, 0)
  1383.  
  1384.  
  1385. 463.b17.Scale = Vector3.new(1, 3, 1.29999995)
  1386.  
  1387.  
  1388. 464.p18 = Instance.new("Part", m)
  1389.  
  1390.  
  1391. 465.p18.BrickColor = BrickColor.new("Really red")
  1392.  
  1393.  
  1394. 466.p18.FormFactor = Enum.FormFactor.Custom
  1395.  
  1396.  
  1397. 467.p18.Size = Vector3.new(2, 2, 2)
  1398.  
  1399.  
  1400. 468.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)
  1401.  
  1402.  
  1403. 469.p18.CanCollide = false
  1404.  
  1405.  
  1406. 470.p18.Locked = true
  1407.  
  1408.  
  1409. 471.p18.BottomSurface = Enum.SurfaceType.Smooth
  1410.  
  1411.  
  1412. 472.p18.TopSurface = Enum.SurfaceType.Smooth
  1413.  
  1414.  
  1415. 473.b18 = Instance.new("SpecialMesh", p18)
  1416.  
  1417.  
  1418. 474.b18.MeshId = "http://www.roblox.com/asset/?id=16627529"
  1419.  
  1420.  
  1421. 475.b18.TextureId = ""
  1422.  
  1423.  
  1424. 476.b18.MeshType = Enum.MeshType.FileMesh
  1425.  
  1426.  
  1427. 477.b18.Name = "Mesh"
  1428.  
  1429.  
  1430. 478.b18.VertexColor = Vector3.new(0, 0, 0)
  1431.  
  1432.  
  1433. 479.b18.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  1434.  
  1435.  
  1436. 480.w1 = Instance.new("Weld", p1)
  1437.  
  1438.  
  1439. 481.w1.Name = "Head_Weld"
  1440.  
  1441.  
  1442. 482.w1.Part0 = p1
  1443.  
  1444.  
  1445. 483.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)
  1446.  
  1447.  
  1448. 484.w1.Part1 = p2
  1449.  
  1450.  
  1451. 485.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)
  1452.  
  1453.  
  1454. 486.w2 = Instance.new("Weld", p2)
  1455.  
  1456.  
  1457. 487.w2.Name = "Part_Weld"
  1458.  
  1459.  
  1460. 488.w2.Part0 = p2
  1461.  
  1462.  
  1463. 489.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)
  1464.  
  1465.  
  1466. 490.w2.Part1 = p3
  1467.  
  1468.  
  1469. 491.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)
  1470.  
  1471.  
  1472. 492.w3 = Instance.new("Weld", p3)
  1473.  
  1474.  
  1475. 493.w3.Name = "Part_Weld"
  1476.  
  1477.  
  1478. 494.w3.Part0 = p3
  1479.  
  1480.  
  1481. 495.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)
  1482.  
  1483.  
  1484. 496.w3.Part1 = p4
  1485.  
  1486.  
  1487. 497.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)
  1488.  
  1489.  
  1490. 498.w4 = Instance.new("Weld", p4)
  1491.  
  1492.  
  1493. 499.w4.Name = "Part_Weld"
  1494.  
  1495.  
  1496. 500.w4.Part0 = p4
  1497.  
  1498.  
  1499. 501.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)
  1500.  
  1501.  
  1502. 502.w4.Part1 = p5
  1503.  
  1504.  
  1505. 503.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)
  1506.  
  1507.  
  1508. 504.w5 = Instance.new("Weld", p5)
  1509.  
  1510.  
  1511. 505.w5.Name = "Part_Weld"
  1512.  
  1513.  
  1514. 506.w5.Part0 = p5
  1515.  
  1516.  
  1517. 507.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)
  1518.  
  1519.  
  1520. 508.w5.Part1 = p6
  1521.  
  1522.  
  1523. 509.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)
  1524.  
  1525.  
  1526. 510.w6 = Instance.new("Weld", p6)
  1527.  
  1528.  
  1529. 511.w6.Name = "Part_Weld"
  1530.  
  1531.  
  1532. 512.w6.Part0 = p6
  1533.  
  1534.  
  1535. 513.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)
  1536.  
  1537.  
  1538. 514.w6.Part1 = p7
  1539.  
  1540.  
  1541. 515.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)
  1542.  
  1543.  
  1544. 516.w7 = Instance.new("Weld", p7)
  1545.  
  1546.  
  1547. 517.w7.Name = "Part_Weld"
  1548.  
  1549.  
  1550. 518.w7.Part0 = p7
  1551.  
  1552.  
  1553. 519.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)
  1554.  
  1555.  
  1556. 520.w7.Part1 = p8
  1557.  
  1558.  
  1559. 521.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)
  1560.  
  1561.  
  1562. 522.w8 = Instance.new("Weld", p8)
  1563.  
  1564.  
  1565. 523.w8.Name = "Part_Weld"
  1566.  
  1567.  
  1568. 524.w8.Part0 = p8
  1569.  
  1570.  
  1571. 525.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)
  1572.  
  1573.  
  1574. 526.w8.Part1 = p9
  1575.  
  1576.  
  1577. 527.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)
  1578.  
  1579.  
  1580. 528.w9 = Instance.new("Weld", p9)
  1581.  
  1582.  
  1583. 529.w9.Name = "Part_Weld"
  1584.  
  1585.  
  1586. 530.w9.Part0 = p9
  1587.  
  1588.  
  1589. 531.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)
  1590.  
  1591.  
  1592. 532.w9.Part1 = p10
  1593.  
  1594.  
  1595. 533.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)
  1596.  
  1597.  
  1598. 534.w10 = Instance.new("Weld", p10)
  1599.  
  1600.  
  1601. 535.w10.Name = "Part_Weld"
  1602.  
  1603.  
  1604. 536.w10.Part0 = p10
  1605.  
  1606.  
  1607. 537.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)
  1608.  
  1609.  
  1610. 538.w10.Part1 = p11
  1611.  
  1612.  
  1613. 539.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)
  1614.  
  1615.  
  1616. 540.w11 = Instance.new("Weld", p11)
  1617.  
  1618.  
  1619. 541.w11.Name = "Part_Weld"
  1620.  
  1621.  
  1622. 542.w11.Part0 = p11
  1623.  
  1624.  
  1625. 543.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)
  1626.  
  1627.  
  1628. 544.w11.Part1 = p12
  1629.  
  1630.  
  1631. 545.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)
  1632.  
  1633.  
  1634. 546.w12 = Instance.new("Weld", p12)
  1635.  
  1636.  
  1637. 547.w12.Name = "Part_Weld"
  1638.  
  1639.  
  1640. 548.w12.Part0 = p12
  1641.  
  1642.  
  1643. 549.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)
  1644.  
  1645.  
  1646. 550.w12.Part1 = p13
  1647.  
  1648.  
  1649. 551.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)
  1650.  
  1651.  
  1652. 552.w13 = Instance.new("Weld", p13)
  1653.  
  1654.  
  1655. 553.w13.Name = "Part_Weld"
  1656.  
  1657.  
  1658. 554.w13.Part0 = p13
  1659.  
  1660.  
  1661. 555.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)
  1662.  
  1663.  
  1664. 556.w13.Part1 = p14
  1665.  
  1666.  
  1667. 557.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)
  1668.  
  1669.  
  1670. 558.w14 = Instance.new("Weld", p14)
  1671.  
  1672.  
  1673. 559.w14.Name = "Part_Weld"
  1674.  
  1675.  
  1676. 560.w14.Part0 = p14
  1677.  
  1678.  
  1679. 561.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)
  1680.  
  1681.  
  1682. 562.w14.Part1 = p15
  1683.  
  1684.  
  1685. 563.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)
  1686.  
  1687.  
  1688. 564.w15 = Instance.new("Weld", p15)
  1689.  
  1690.  
  1691. 565.w15.Name = "Part_Weld"
  1692.  
  1693.  
  1694. 566.w15.Part0 = p15
  1695.  
  1696.  
  1697. 567.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)
  1698.  
  1699.  
  1700. 568.w15.Part1 = p16
  1701.  
  1702.  
  1703. 569.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)
  1704.  
  1705.  
  1706. 570.w16 = Instance.new("Weld", p16)
  1707.  
  1708.  
  1709. 571.w16.Name = "Part_Weld"
  1710.  
  1711.  
  1712. 572.w16.Part0 = p16
  1713.  
  1714.  
  1715. 573.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)
  1716.  
  1717.  
  1718. 574.w16.Part1 = p17
  1719.  
  1720.  
  1721. 575.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)
  1722.  
  1723.  
  1724. 576.w17 = Instance.new("Weld", p17)
  1725.  
  1726.  
  1727. 577.w17.Name = "Part_Weld"
  1728.  
  1729.  
  1730. 578.w17.Part0 = p17
  1731.  
  1732.  
  1733. 579.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)
  1734.  
  1735.  
  1736. 580.w17.Part1 = p18
  1737.  
  1738.  
  1739. 581.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)
  1740.  
  1741.  
  1742. 582.m.Parent = char
  1743.  
  1744.  
  1745. 583.m:MakeJoints()
  1746.  
  1747.  
  1748. 584.----------------------------------------------------
  1749.  
  1750.  
  1751. 585.local cor = Instance.new("Part", char.Hair)
  1752.  
  1753.  
  1754. 586.cor.Name = "Link"
  1755.  
  1756.  
  1757. 587.cor.Locked = true
  1758.  
  1759.  
  1760. 588.cor.BottomSurface = 0
  1761.  
  1762.  
  1763. 589.cor.CanCollide = false
  1764.  
  1765.  
  1766. 590.cor.Size = Vector3.new(1, 9, 1)
  1767.  
  1768.  
  1769. 591.cor.Transparency = 1
  1770.  
  1771.  
  1772. 592.cor.TopSurface = 0
  1773.  
  1774.  
  1775. 593.corw = Instance.new("Weld", cor)
  1776.  
  1777.  
  1778. 594.corw.Part0 = hed
  1779.  
  1780.  
  1781. 595.corw.Part1 = cor
  1782.  
  1783.  
  1784. 596.corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1785.  
  1786.  
  1787. 597.corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1788.  
  1789.  
  1790. 598.weld1 = Instance.new("Weld", char.Hair)
  1791.  
  1792.  
  1793. 599.weld1.Part0 = cor
  1794.  
  1795.  
  1796. 600.weld1.Part1 = char.Hair.Head
  1797.  
  1798.  
  1799. 601.weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1800.  
  1801.  
  1802. 602.----------------------------------------------------
  1803.  
  1804.  
  1805. 603.GroundWave1 = function()
  1806.  
  1807.  
  1808. 604. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1809.  
  1810.  
  1811. 605. local Colors = {"Royal purple", "Really red"}
  1812.  
  1813.  
  1814. 606. local wave = Instance.new("Part", torso)
  1815.  
  1816.  
  1817. 607. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1818.  
  1819.  
  1820. 608. wave.Anchored = true
  1821.  
  1822.  
  1823. 609. wave.CanCollide = false
  1824.  
  1825.  
  1826. 610. wave.Locked = true
  1827.  
  1828.  
  1829. 611. wave.Size = Vector3.new(1, 1, 1)
  1830.  
  1831.  
  1832. 612. wave.TopSurface = "Smooth"
  1833.  
  1834.  
  1835. 613. wave.BottomSurface = "Smooth"
  1836.  
  1837.  
  1838. 614. wave.Transparency = 0.35
  1839.  
  1840.  
  1841. 615. wave.CFrame = HandCF
  1842.  
  1843.  
  1844. 616. wm = Instance.new("SpecialMesh", wave)
  1845.  
  1846.  
  1847. 617. wm.MeshId = "rbxassetid://3270017"
  1848.  
  1849.  
  1850. 618. coroutine.wrap(function()
  1851.  
  1852.  
  1853. 619. for i = 1, 30, 1 do
  1854.  
  1855.  
  1856. 620. wm.Scale = Vector3.new(1 + i*1.2, 1 + i*1.2, 1)
  1857.  
  1858.  
  1859. 621. wave.Size = wm.Scale
  1860.  
  1861.  
  1862. 622. wave.CFrame = HandCF
  1863.  
  1864.  
  1865. 623. wave.Transparency = i/30
  1866.  
  1867.  
  1868. 624. wait()
  1869.  
  1870.  
  1871. 625. end
  1872.  
  1873.  
  1874. 626. wait()
  1875.  
  1876.  
  1877. 627. wave:Destroy()
  1878.  
  1879.  
  1880. 628. end)()
  1881.  
  1882.  
  1883. 629.end
  1884.  
  1885.  
  1886. 630.----------------------------------------------------
  1887.  
  1888.  
  1889. 631.GroundWave = function()
  1890.  
  1891.  
  1892. 632. if Transforming == true then
  1893.  
  1894.  
  1895. 633. local wave = Instance.new("Part", torso)
  1896.  
  1897.  
  1898. 634. wave.BrickColor = BrickColor.new("Really red")
  1899.  
  1900.  
  1901. 635. wave.Anchored = true
  1902.  
  1903.  
  1904. 636. wave.CanCollide = false
  1905.  
  1906.  
  1907. 637. wave.Locked = true
  1908.  
  1909.  
  1910. 638. wave.Size = Vector3.new(1, 1, 1)
  1911.  
  1912.  
  1913. 639. wave.TopSurface = "Smooth"
  1914.  
  1915.  
  1916. 640. wave.BottomSurface = "Smooth"
  1917.  
  1918.  
  1919. 641. wave.Transparency = 0.35
  1920.  
  1921.  
  1922. 642. wave.CFrame = fx.CFrame
  1923.  
  1924.  
  1925. 643. wm = Instance.new("SpecialMesh", wave)
  1926.  
  1927.  
  1928. 644. wm.MeshType = "Sphere"
  1929.  
  1930.  
  1931. 645. wm.Scale = Vector3.new(1,1,1)
  1932.  
  1933.  
  1934. 646. coroutine.wrap(function()
  1935.  
  1936.  
  1937. 647. for i = 1, 18, 1 do
  1938.  
  1939.  
  1940. 648. wm.Scale = Vector3.new(2 + i*2, 2 + i*2, 2 + i*2)
  1941.  
  1942.  
  1943. 649. --wave.Size = wm.Scale
  1944.  
  1945.  
  1946. 650. wave.CFrame = fx.CFrame
  1947.  
  1948.  
  1949. 651. wave.Transparency = i/14
  1950.  
  1951.  
  1952. 652. wait()
  1953.  
  1954.  
  1955. 653. end
  1956.  
  1957.  
  1958. 654. wait()
  1959.  
  1960.  
  1961. 655. wave:Destroy()
  1962.  
  1963.  
  1964. 656. end)()
  1965.  
  1966.  
  1967. 657. elseif Transforming == false then
  1968.  
  1969.  
  1970. 658. wait()
  1971.  
  1972.  
  1973. 659. end
  1974.  
  1975.  
  1976. 660.end
  1977.  
  1978.  
  1979. 661.
  1980.  
  1981.  
  1982. 662.for i = 1, 100 do rs:wait()
  1983.  
  1984.  
  1985. 663. fx.CFrame = torso.CFrame
  1986.  
  1987.  
  1988. 664.end
  1989.  
  1990.  
  1991. 665.
  1992.  
  1993.  
  1994. 666.Spawn(function()
  1995.  
  1996.  
  1997. 667. while wait(1) do
  1998.  
  1999.  
  2000. 668. GroundWave()
  2001.  
  2002.  
  2003. 669. end
  2004.  
  2005.  
  2006. 670.end)
  2007.  
  2008.  
  2009. 671.
  2010.  
  2011.  
  2012. 672.wait(4)
  2013.  
  2014.  
  2015. 673.
  2016.  
  2017.  
  2018. 674.Transforming = false
  2019.  
  2020.  
  2021. 675.
  2022.  
  2023.  
  2024. 676.for i = 1, 20 do rs:wait()
  2025.  
  2026.  
  2027. 677. fx.Transparency = fx.Transparency + (1/20)
  2028.  
  2029.  
  2030. 678. fx.CFrame = torso.CFrame
  2031.  
  2032.  
  2033. 679. fxm.Scale = fxm.Scale + Vector3.new(0.5,0.5,0.5)
  2034.  
  2035.  
  2036. 680. rs:wait()
  2037.  
  2038.  
  2039. 681.end
  2040.  
  2041.  
  2042. 682.
  2043.  
  2044.  
  2045. 683.local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2046.  
  2047.  
  2048. 684. local wave = Instance.new("Part", torso)
  2049.  
  2050.  
  2051. 685. wave.BrickColor = BrickColor.new("Institutional white")
  2052.  
  2053.  
  2054. 686. wave.Anchored = true
  2055.  
  2056.  
  2057. 687. wave.CanCollide = false
  2058.  
  2059.  
  2060. 688. wave.Locked = true
  2061.  
  2062.  
  2063. 689. wave.Size = Vector3.new(1, 1, 1)
  2064.  
  2065.  
  2066. 690. wave.TopSurface = "Smooth"
  2067.  
  2068.  
  2069. 691. wave.BottomSurface = "Smooth"
  2070.  
  2071.  
  2072. 692. wave.Transparency = 0.35
  2073.  
  2074.  
  2075. 693. wave.CFrame = HandCF
  2076.  
  2077.  
  2078. 694. wm = Instance.new("SpecialMesh", wave)
  2079.  
  2080.  
  2081. 695. wm.MeshId = "rbxassetid://3270017"
  2082.  
  2083.  
  2084. 696. coroutine.wrap(function()
  2085.  
  2086.  
  2087. 697. for i = 1, 14, 1 do
  2088.  
  2089.  
  2090. 698. wm.Scale = Vector3.new(1 + i*1.1, 1 + i*1.1, 1)
  2091.  
  2092.  
  2093. 699. wave.Size = wm.Scale
  2094.  
  2095.  
  2096. 700. wave.CFrame = HandCF
  2097.  
  2098.  
  2099. 701. wave.Transparency = i/14
  2100.  
  2101.  
  2102. 702. wait()
  2103.  
  2104.  
  2105. 703. end
  2106.  
  2107.  
  2108. 704. wait()
  2109.  
  2110.  
  2111. 705. wave:Destroy()
  2112.  
  2113.  
  2114. 706.end)()
  2115.  
  2116.  
  2117. 707.hum.WalkSpeed = 16
  2118.  
  2119.  
  2120. 708.----------------------------------------------------
  2121.  
  2122.  
  2123. 709.Blast = function()
  2124.  
  2125.  
  2126. 710. local Colors = {"Really red", "Really black"}
  2127.  
  2128.  
  2129. 711. local wave = Instance.new("Part", torso)
  2130.  
  2131.  
  2132. 712. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2133.  
  2134.  
  2135. 713. wave.Anchored = true
  2136.  
  2137.  
  2138. 714. wave.CanCollide = false
  2139.  
  2140.  
  2141. 715. wave.Locked = true
  2142.  
  2143.  
  2144. 716. wave.Size = Vector3.new(1, 1, 1)
  2145.  
  2146.  
  2147. 717. wave.TopSurface = "Smooth"
  2148.  
  2149.  
  2150. 718. wave.BottomSurface = "Smooth"
  2151.  
  2152.  
  2153. 719. wave.Transparency = 0.35
  2154.  
  2155.  
  2156. 720. wave.CFrame = rarm.CFrame
  2157.  
  2158.  
  2159. 721. wm = Instance.new("SpecialMesh", wave)
  2160.  
  2161.  
  2162. 722. wm.MeshType = "Sphere"
  2163.  
  2164.  
  2165. 723. wm.Scale = Vector3.new(1,1,1)
  2166.  
  2167.  
  2168. 724. z = Instance.new("Sound",wave)
  2169.  
  2170.  
  2171. 725. z.SoundId = "rbxassetid://237035051"
  2172.  
  2173.  
  2174. 726. z.Volume = 1
  2175.  
  2176.  
  2177. 727. z.Pitch = .9
  2178.  
  2179.  
  2180. 728. z:Play()
  2181.  
  2182.  
  2183. 729. coroutine.wrap(function()
  2184.  
  2185.  
  2186. 730. for i = 1, 30, 1 do
  2187.  
  2188.  
  2189. 731. wave.Size = Vector3.new(1 + i*4, 1 + i*4, 1 + i*4)
  2190.  
  2191.  
  2192. 732. --wave.Size = wm.Scale
  2193.  
  2194.  
  2195. 733. wave.CFrame = rarm.CFrame
  2196.  
  2197.  
  2198. 734. wave.Transparency = (1/14)
  2199.  
  2200.  
  2201. 735. rs:wait()
  2202.  
  2203.  
  2204. 736. end
  2205.  
  2206.  
  2207. 737. rs:wait()
  2208.  
  2209.  
  2210. 738. wave:Destroy()
  2211.  
  2212.  
  2213. 739. z:Destroy()
  2214.  
  2215.  
  2216. 740. end)()
  2217.  
  2218.  
  2219. 741.end
  2220.  
  2221.  
  2222. 742.----------------------------------------------------
  2223.  
  2224.  
  2225. 743.rarm.Touched:connect(function(ht)
  2226.  
  2227.  
  2228. 744. hit = ht.Parent
  2229.  
  2230.  
  2231. 745. if ht and hit:IsA("Model") then
  2232.  
  2233.  
  2234. 746. if hit:FindFirstChild("Humanoid") then
  2235.  
  2236.  
  2237. 747. if hit.Name ~= p.Name then
  2238.  
  2239.  
  2240. 748. if Debounces.RPunch == true and Debounces.RPunched == false then
  2241.  
  2242.  
  2243. 749. Debounces.RPunched = true
  2244.  
  2245.  
  2246. 750. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  2247.  
  2248.  
  2249. 751. if Debounces.ks==true then
  2250.  
  2251.  
  2252. 752. z = Instance.new("Sound",hed)
  2253.  
  2254.  
  2255. 753. z.SoundId = "rbxassetid://169380525"
  2256.  
  2257.  
  2258. 754. z.Pitch = ptz[math.random(1,#ptz)]
  2259.  
  2260.  
  2261. 755. z.Volume = 1
  2262.  
  2263.  
  2264. 756. z:Play()
  2265.  
  2266.  
  2267. 757. end
  2268.  
  2269.  
  2270. 758. wait(.2)
  2271.  
  2272.  
  2273. 759. Debounces.RPunched = false
  2274.  
  2275.  
  2276. 760. end
  2277.  
  2278.  
  2279. 761. end
  2280.  
  2281.  
  2282. 762. end
  2283.  
  2284.  
  2285. 763. elseif ht and hit:IsA("Hat") then
  2286.  
  2287.  
  2288. 764. if hit.Parent.Name ~= p.Name then
  2289.  
  2290.  
  2291. 765. if hit.Parent:FindFirstChild("Humanoid") then
  2292.  
  2293.  
  2294. 766. if Debounces.RPunch == true and Debounces.RPunched == false then
  2295.  
  2296.  
  2297. 767. Debounces.RPunched = true
  2298.  
  2299.  
  2300. 768. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  2301.  
  2302.  
  2303. 769. if Debounces.ks==true then
  2304.  
  2305.  
  2306. 770. z = Instance.new("Sound",hed)
  2307.  
  2308.  
  2309. 771. z.SoundId = "rbxassetid://169380525"
  2310.  
  2311.  
  2312. 772. z.Pitch = ptz[math.random(1,#ptz)]
  2313.  
  2314.  
  2315. 773. z.Volume = 1
  2316.  
  2317.  
  2318. 774. z:Play()
  2319.  
  2320.  
  2321. 775. end
  2322.  
  2323.  
  2324. 776. wait(.2)
  2325.  
  2326.  
  2327. 777. Debounces.RPunched = false
  2328.  
  2329.  
  2330. 778. end
  2331.  
  2332.  
  2333. 779. end
  2334.  
  2335.  
  2336. 780. end
  2337.  
  2338.  
  2339. 781. end
  2340.  
  2341.  
  2342. 782.end)
  2343.  
  2344.  
  2345. 783.larm.Touched:connect(function(ht)
  2346.  
  2347.  
  2348. 784. hit = ht.Parent
  2349.  
  2350.  
  2351. 785. if ht and hit:IsA("Model") then
  2352.  
  2353.  
  2354. 786. if hit:FindFirstChild("Humanoid") then
  2355.  
  2356.  
  2357. 787. if hit.Name ~= p.Name then
  2358.  
  2359.  
  2360. 788. if Debounces.LPunch == true and Debounces.LPunched == false then
  2361.  
  2362.  
  2363. 789. Debounces.LPunched = true
  2364.  
  2365.  
  2366. 790. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  2367.  
  2368.  
  2369. 791. if Debounces.ks2==true then
  2370.  
  2371.  
  2372. 792. z = Instance.new("Sound",hed)
  2373.  
  2374.  
  2375. 793. z.SoundId = "rbxassetid://169380525"
  2376.  
  2377.  
  2378. 794. z.Pitch = ptz[math.random(1,#ptz)]
  2379.  
  2380.  
  2381. 795. z.Volume = 1
  2382.  
  2383.  
  2384. 796. z:Play()
  2385.  
  2386.  
  2387. 797. end
  2388.  
  2389.  
  2390. 798. wait(.2)
  2391.  
  2392.  
  2393. 799. Debounces.LPunched = false
  2394.  
  2395.  
  2396. 800. end
  2397.  
  2398.  
  2399. 801. end
  2400.  
  2401.  
  2402. 802. end
  2403.  
  2404.  
  2405. 803. elseif ht and hit:IsA("Hat") then
  2406.  
  2407.  
  2408. 804. if hit.Parent.Name ~= p.Name then
  2409.  
  2410.  
  2411. 805. if hit.Parent:FindFirstChild("Humanoid") then
  2412.  
  2413.  
  2414. 806. if Debounces.LPunch == true and Debounces.LPunched == false then
  2415.  
  2416.  
  2417. 807. Debounces.LPunched = true
  2418.  
  2419.  
  2420. 808. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  2421.  
  2422.  
  2423. 809. if Debounces.ks2==true then
  2424.  
  2425.  
  2426. 810. z = Instance.new("Sound",hed)
  2427.  
  2428.  
  2429. 811. z.SoundId = "rbxassetid://169380525"
  2430.  
  2431.  
  2432. 812. z.Pitch = ptz[math.random(1,#ptz)]
  2433.  
  2434.  
  2435. 813. z.Volume = 1
  2436.  
  2437.  
  2438. 814. z:Play()
  2439.  
  2440.  
  2441. 815. end
  2442.  
  2443.  
  2444. 816. wait(.2)
  2445.  
  2446.  
  2447. 817. Debounces.LPunched = false
  2448.  
  2449.  
  2450. 818. end
  2451.  
  2452.  
  2453. 819. end
  2454.  
  2455.  
  2456. 820. end
  2457.  
  2458.  
  2459. 821. end
  2460.  
  2461.  
  2462. 822.end)
  2463.  
  2464.  
  2465. 823.----------------------------------------------------
  2466.  
  2467.  
  2468. 824.mod4 = Instance.new("Model",char)
  2469.  
  2470.  
  2471. 825.
  2472.  
  2473.  
  2474. 826.ptez = {0.7, 0.8, 0.9, 1}
  2475.  
  2476.  
  2477. 827.
  2478.  
  2479.  
  2480. 828.function FindNearestTorso(Position,Distance,SinglePlayer)
  2481.  
  2482.  
  2483. 829. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2484.  
  2485.  
  2486. 830. local List = {}
  2487.  
  2488.  
  2489. 831. for i,v in pairs(workspace:GetChildren())do
  2490.  
  2491.  
  2492. 832. if v:IsA("Model")then
  2493.  
  2494.  
  2495. 833. if v:findFirstChild("Torso")then
  2496.  
  2497.  
  2498. 834. if v ~= char then
  2499.  
  2500.  
  2501. 835. if(v.Torso.Position -Position).magnitude <= Distance then
  2502.  
  2503.  
  2504. 836. table.insert(List,v)
  2505.  
  2506.  
  2507. 837. end
  2508.  
  2509.  
  2510. 838. end
  2511.  
  2512.  
  2513. 839. end
  2514.  
  2515.  
  2516. 840. end
  2517.  
  2518.  
  2519. 841. end
  2520.  
  2521.  
  2522. 842. return List
  2523.  
  2524.  
  2525. 843.end
  2526.  
  2527.  
  2528. 844.
  2529.  
  2530.  
  2531. 845.function Punch()
  2532.  
  2533.  
  2534. 846. part=Instance.new('Part',mod4)
  2535.  
  2536.  
  2537. 847. part.Anchored=true
  2538.  
  2539.  
  2540. 848. part.CanCollide=false
  2541.  
  2542.  
  2543. 849. part.FormFactor='Custom'
  2544.  
  2545.  
  2546. 850. part.Size=Vector3.new(.2,.2,.2)
  2547.  
  2548.  
  2549. 851. part.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(0),0,0)
  2550.  
  2551.  
  2552. 852. part.Transparency=.7
  2553.  
  2554.  
  2555. 853. part.BrickColor=BrickColor.new('Really red')
  2556.  
  2557.  
  2558. 854. mesh=Instance.new('SpecialMesh',part)
  2559.  
  2560.  
  2561. 855. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  2562.  
  2563.  
  2564. 856. mesh.Scale=Vector3.new(3,3,3)
  2565.  
  2566.  
  2567. 857. part2=Instance.new('Part',mod4)
  2568.  
  2569.  
  2570. 858. part2.Anchored=true
  2571.  
  2572.  
  2573. 859. part2.CanCollide=false
  2574.  
  2575.  
  2576. 860. part2.FormFactor='Custom'
  2577.  
  2578.  
  2579. 861. part2.Size=Vector3.new(.2,.2,.2)
  2580.  
  2581.  
  2582. 862. part2.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(90),0,0)
  2583.  
  2584.  
  2585. 863. part2.Transparency=.7
  2586.  
  2587.  
  2588. 864. part2.BrickColor=BrickColor.new('Really red')
  2589.  
  2590.  
  2591. 865. mesh2=Instance.new('SpecialMesh',part2)
  2592.  
  2593.  
  2594. 866. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  2595.  
  2596.  
  2597. 867. mesh2.Scale=Vector3.new(3,1.5,3)
  2598.  
  2599.  
  2600. 868. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  2601.  
  2602.  
  2603. 869. if v:FindFirstChild('Humanoid') then
  2604.  
  2605.  
  2606. 870. v.Humanoid:TakeDamage(math.random(2,6))
  2607.  
  2608.  
  2609. 871. end
  2610.  
  2611.  
  2612. 872. end
  2613.  
  2614.  
  2615. 873. coroutine.resume(coroutine.create(function()
  2616.  
  2617.  
  2618. 874. for i=0,0.62,0.4 do
  2619.  
  2620.  
  2621. 875. wait()
  2622.  
  2623.  
  2624. 876. part.CFrame=part.CFrame
  2625.  
  2626.  
  2627. 877. part.Transparency=i
  2628.  
  2629.  
  2630. 878. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  2631.  
  2632.  
  2633. 879. part2.CFrame=part2.CFrame
  2634.  
  2635.  
  2636. 880. part2.Transparency=i
  2637.  
  2638.  
  2639. 881. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  2640.  
  2641.  
  2642. 882. end
  2643.  
  2644.  
  2645. 883. part.Parent=nil
  2646.  
  2647.  
  2648. 884. part2.Parent=nil
  2649.  
  2650.  
  2651. 885. end))
  2652.  
  2653.  
  2654. 886.end
  2655.  
  2656.  
  2657. 887.----------------------------------------------------
  2658.  
  2659.  
  2660. 888.rarm.Touched:connect(function(ht)
  2661.  
  2662.  
  2663. 889. hit = ht.Parent
  2664.  
  2665.  
  2666. 890. if ht and hit:IsA("Model") then
  2667.  
  2668.  
  2669. 891. if hit:FindFirstChild("Humanoid") then
  2670.  
  2671.  
  2672. 892. if hit.Name ~= p.Name then
  2673.  
  2674.  
  2675. 893. if Debounces.RPunch == true and Debounces.RPunched == false then
  2676.  
  2677.  
  2678. 894. Debounces.RPunched = true
  2679.  
  2680.  
  2681. 895. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  2682.  
  2683.  
  2684. 896. if Debounces.ks==true then
  2685.  
  2686.  
  2687. 897. z = Instance.new("Sound",hed)
  2688.  
  2689.  
  2690. 898. z.SoundId = "rbxassetid://169380525"
  2691.  
  2692.  
  2693. 899. z.Pitch = ptz[math.random(1,#ptz)]
  2694.  
  2695.  
  2696. 900. z.Volume = 1
  2697.  
  2698.  
  2699. 901. z:Play()
  2700.  
  2701.  
  2702. 902. end
  2703.  
  2704.  
  2705. 903. wait(.2)
  2706.  
  2707.  
  2708. 904. Debounces.RPunched = false
  2709.  
  2710.  
  2711. 905. end
  2712.  
  2713.  
  2714. 906. end
  2715.  
  2716.  
  2717. 907. end
  2718.  
  2719.  
  2720. 908. elseif ht and hit:IsA("Hat") then
  2721.  
  2722.  
  2723. 909. if hit.Parent.Name ~= p.Name then
  2724.  
  2725.  
  2726. 910. if hit.Parent:FindFirstChild("Humanoid") then
  2727.  
  2728.  
  2729. 911. if Debounces.RPunch == true and Debounces.RPunched == false then
  2730.  
  2731.  
  2732. 912. Debounces.RPunched = true
  2733.  
  2734.  
  2735. 913. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  2736.  
  2737.  
  2738. 914. if Debounces.ks==true then
  2739.  
  2740.  
  2741. 915. z = Instance.new("Sound",hed)
  2742.  
  2743.  
  2744. 916. z.SoundId = "rbxassetid://169380525"
  2745.  
  2746.  
  2747. 917. z.Pitch = ptz[math.random(1,#ptz)]
  2748.  
  2749.  
  2750. 918. z.Volume = 1
  2751.  
  2752.  
  2753. 919. z:Play()
  2754.  
  2755.  
  2756. 920. end
  2757.  
  2758.  
  2759. 921. wait(.2)
  2760.  
  2761.  
  2762. 922. Debounces.RPunched = false
  2763.  
  2764.  
  2765. 923. end
  2766.  
  2767.  
  2768. 924. end
  2769.  
  2770.  
  2771. 925. end
  2772.  
  2773.  
  2774. 926. end
  2775.  
  2776.  
  2777. 927.end)
  2778.  
  2779.  
  2780. 928.larm.Touched:connect(function(ht)
  2781.  
  2782.  
  2783. 929. hit = ht.Parent
  2784.  
  2785.  
  2786. 930. if ht and hit:IsA("Model") then
  2787.  
  2788.  
  2789. 931. if hit:FindFirstChild("Humanoid") then
  2790.  
  2791.  
  2792. 932. if hit.Name ~= p.Name then
  2793.  
  2794.  
  2795. 933. if Debounces.LPunch == true and Debounces.LPunched == false then
  2796.  
  2797.  
  2798. 934. Debounces.LPunched = true
  2799.  
  2800.  
  2801. 935. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  2802.  
  2803.  
  2804. 936. if Debounces.ks2==true then
  2805.  
  2806.  
  2807. 937. z = Instance.new("Sound",hed)
  2808.  
  2809.  
  2810. 938. z.SoundId = "rbxassetid://169380525"
  2811.  
  2812.  
  2813. 939. z.Pitch = ptz[math.random(1,#ptz)]
  2814.  
  2815.  
  2816. 940. z.Volume = 1
  2817.  
  2818.  
  2819. 941. z:Play()
  2820.  
  2821.  
  2822. 942. end
  2823.  
  2824.  
  2825. 943. wait(.2)
  2826.  
  2827.  
  2828. 944. Debounces.LPunched = false
  2829.  
  2830.  
  2831. 945. end
  2832.  
  2833.  
  2834. 946. end
  2835.  
  2836.  
  2837. 947. end
  2838.  
  2839.  
  2840. 948. elseif ht and hit:IsA("Hat") then
  2841.  
  2842.  
  2843. 949. if hit.Parent.Name ~= p.Name then
  2844.  
  2845.  
  2846. 950. if hit.Parent:FindFirstChild("Humanoid") then
  2847.  
  2848.  
  2849. 951. if Debounces.LPunch == true and Debounces.LPunched == false then
  2850.  
  2851.  
  2852. 952. Debounces.LPunched = true
  2853.  
  2854.  
  2855. 953. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  2856.  
  2857.  
  2858. 954. if Debounces.ks2==true then
  2859.  
  2860.  
  2861. 955. z = Instance.new("Sound",hed)
  2862.  
  2863.  
  2864. 956. z.SoundId = "rbxassetid://169380525"
  2865.  
  2866.  
  2867. 957. z.Pitch = ptz[math.random(1,#ptz)]
  2868.  
  2869.  
  2870. 958. z.Volume = 1
  2871.  
  2872.  
  2873. 959. z:Play()
  2874.  
  2875.  
  2876. 960. end
  2877.  
  2878.  
  2879. 961. wait(.2)
  2880.  
  2881.  
  2882. 962. Debounces.LPunched = false
  2883.  
  2884.  
  2885. 963. end
  2886.  
  2887.  
  2888. 964. end
  2889.  
  2890.  
  2891. 965. end
  2892.  
  2893.  
  2894. 966. end
  2895.  
  2896.  
  2897. 967.end)
  2898.  
  2899.  
  2900. 968.----------------------------------------------------
  2901.  
  2902.  
  2903. 969.local player = game.Players.LocalPlayer
  2904.  
  2905.  
  2906. 970.local pchar = player.Character
  2907.  
  2908.  
  2909. 971.local mouse = player:GetMouse()
  2910.  
  2911.  
  2912. 972.local cam = workspace.CurrentCamera
  2913.  
  2914.  
  2915. 973.
  2916.  
  2917.  
  2918. 974.local rad = math.rad
  2919.  
  2920.  
  2921. 975.
  2922.  
  2923.  
  2924. 976.local keysDown = {}
  2925.  
  2926.  
  2927. 977.local flySpeed = 0
  2928.  
  2929.  
  2930. 978.local MAX_FLY_SPEED = 150
  2931.  
  2932.  
  2933. 979.
  2934.  
  2935.  
  2936. 980.local canFly = false
  2937.  
  2938.  
  2939. 981.local flyToggled = false
  2940.  
  2941.  
  2942. 982.
  2943.  
  2944.  
  2945. 983.local forward, side = 0, 0
  2946.  
  2947.  
  2948. 984.local lastForward, lastSide = 0, 0
  2949.  
  2950.  
  2951. 985.
  2952.  
  2953.  
  2954. 986.local floatBP = Instance.new("BodyPosition")
  2955.  
  2956.  
  2957. 987.floatBP.maxForce = Vector3.new(0, math.huge, 0)
  2958.  
  2959.  
  2960. 988.local flyBV = Instance.new("BodyVelocity")
  2961.  
  2962.  
  2963. 989.flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2964.  
  2965.  
  2966. 990.local turnBG = Instance.new("BodyGyro")
  2967.  
  2968.  
  2969. 991.turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  2970.  
  2971.  
  2972. 992.
  2973.  
  2974.  
  2975. 993.mouse.KeyDown:connect(function(key)
  2976.  
  2977.  
  2978. 994. keysDown[key] = true
  2979.  
  2980.  
  2981. 995.
  2982.  
  2983.  
  2984. 996. if key == "f" then
  2985.  
  2986.  
  2987. 997. flyToggled = not flyToggled
  2988.  
  2989.  
  2990. 998.
  2991.  
  2992.  
  2993. 999. if not flyToggled then
  2994.  
  2995.  
  2996. 1000. stanceToggle = "Normal"
  2997.  
  2998.  
  2999. 1001. floatBP.Parent = nil
  3000.  
  3001.  
  3002. 1002. flyBV.Parent = nil
  3003.  
  3004.  
  3005. 1003. turnBG.Parent = nil
  3006.  
  3007.  
  3008. 1004. root.Velocity = Vector3.new()
  3009.  
  3010.  
  3011. 1005. pchar.Humanoid.PlatformStand = false
  3012.  
  3013.  
  3014. 1006. end
  3015.  
  3016.  
  3017. 1007.end
  3018.  
  3019.  
  3020. 1008.
  3021.  
  3022.  
  3023. 1009.end)
  3024.  
  3025.  
  3026. 1010.mouse.KeyUp:connect(function(key)
  3027.  
  3028.  
  3029. 1011. keysDown[key] = nil
  3030.  
  3031.  
  3032. 1012.end)
  3033.  
  3034.  
  3035. 1013.
  3036.  
  3037.  
  3038. 1014.local function updateFly()
  3039.  
  3040.  
  3041. 1015.
  3042.  
  3043.  
  3044. 1016. if not flyToggled then return end
  3045.  
  3046.  
  3047. 1017.
  3048.  
  3049.  
  3050. 1018. lastForward = forward
  3051.  
  3052.  
  3053. 1019. lastSide = side
  3054.  
  3055.  
  3056. 1020.
  3057.  
  3058.  
  3059. 1021. forward = 0
  3060.  
  3061.  
  3062. 1022. side = 0
  3063.  
  3064.  
  3065. 1023.
  3066.  
  3067.  
  3068. 1024. if keysDown.w then
  3069.  
  3070.  
  3071. 1025. forward = forward + 1
  3072.  
  3073.  
  3074. 1026. end
  3075.  
  3076.  
  3077. 1027. if keysDown.s then
  3078.  
  3079.  
  3080. 1028. forward = forward - 1
  3081.  
  3082.  
  3083. 1029. end
  3084.  
  3085.  
  3086. 1030. if keysDown.a then
  3087.  
  3088.  
  3089. 1031. side = side - 1
  3090.  
  3091.  
  3092. 1032. end
  3093.  
  3094.  
  3095. 1033. if keysDown.d then
  3096.  
  3097.  
  3098. 1034. side = side + 1
  3099.  
  3100.  
  3101. 1035. end
  3102.  
  3103.  
  3104. 1036.
  3105.  
  3106.  
  3107. 1037. canFly = (forward ~= 0 or side ~= 0)
  3108.  
  3109.  
  3110. 1038.
  3111.  
  3112.  
  3113. 1039. if canFly then
  3114.  
  3115.  
  3116. 1040. stanceToggle = "Floating"
  3117.  
  3118.  
  3119. 1041. turnBG.Parent = root
  3120.  
  3121.  
  3122. 1042. floatBP.Parent = nil
  3123.  
  3124.  
  3125. 1043. flyBV.Parent = root
  3126.  
  3127.  
  3128. 1044.
  3129.  
  3130.  
  3131. 1045. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  3132.  
  3133.  
  3134. 1046. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  3135.  
  3136.  
  3137. 1047. else
  3138.  
  3139.  
  3140. 1048. floatBP.position = root.Position
  3141.  
  3142.  
  3143. 1049. floatBP.Parent = root
  3144.  
  3145.  
  3146. 1050.
  3147.  
  3148.  
  3149. 1051. flySpeed = flySpeed - 1
  3150.  
  3151.  
  3152. 1052. if flySpeed < 0 then flySpeed = 0 end
  3153.  
  3154.  
  3155. 1053. end
  3156.  
  3157.  
  3158. 1054.
  3159.  
  3160.  
  3161. 1055. local camCF = cam.CoordinateFrame
  3162.  
  3163.  
  3164. 1056. local in_forward = canFly and forward or lastForward
  3165.  
  3166.  
  3167. 1057. local in_side = canFly and side or lastSide
  3168.  
  3169.  
  3170. 1058.
  3171.  
  3172.  
  3173. 1059. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  3174.  
  3175.  
  3176. 1060.in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  3177.  
  3178.  
  3179. 1061.
  3180.  
  3181.  
  3182. 1062. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  3183.  
  3184.  
  3185. 1063.0)
  3186.  
  3187.  
  3188. 1064.end
  3189.  
  3190.  
  3191. 1065.
  3192.  
  3193.  
  3194. 1066.game:service'RunService'.RenderStepped:connect(function()
  3195.  
  3196.  
  3197. 1067. if flyToggled then
  3198.  
  3199.  
  3200. 1068. pchar.Humanoid.PlatformStand = true
  3201.  
  3202.  
  3203. 1069. end
  3204.  
  3205.  
  3206. 1070. updateFly()
  3207.  
  3208.  
  3209. 1071.end)
  3210.  
  3211.  
  3212. 1072.-------------------------------
  3213.  
  3214.  
  3215. 1073.mouse.KeyDown:connect(function(key)
  3216.  
  3217.  
  3218. 1074. if key == "q" then
  3219.  
  3220.  
  3221. 1075. if Debounces.CanAttack == true then
  3222.  
  3223.  
  3224. 1076. Debounces.CanAttack = false
  3225.  
  3226.  
  3227. 1077. Debounces.NoIdl = true
  3228.  
  3229.  
  3230. 1078. Debounces.on = true
  3231.  
  3232.  
  3233. 1079. function FindNearestTorso(Position,Distance,SinglePlayer)
  3234.  
  3235.  
  3236. 1080. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3237.  
  3238.  
  3239. 1081. local List = {}
  3240.  
  3241.  
  3242. 1082. for i,v in pairs(workspace:GetChildren())do
  3243.  
  3244.  
  3245. 1083. if v:IsA("Model")then
  3246.  
  3247.  
  3248. 1084. if v:findFirstChild("Torso")then
  3249.  
  3250.  
  3251. 1085. if v ~= char then
  3252.  
  3253.  
  3254. 1086. if(v.Torso.Position -Position).magnitude <= Distance then
  3255.  
  3256.  
  3257. 1087. table.insert(List,v)
  3258.  
  3259.  
  3260. 1088. end
  3261.  
  3262.  
  3263. 1089. end
  3264.  
  3265.  
  3266. 1090. end
  3267.  
  3268.  
  3269. 1091. end
  3270.  
  3271.  
  3272. 1092. end
  3273.  
  3274.  
  3275. 1093. return List
  3276.  
  3277.  
  3278. 1094. end
  3279.  
  3280.  
  3281. 1095. z = Instance.new("Sound",hed)
  3282.  
  3283.  
  3284. 1096. z.SoundId = "rbxassetid://232213955"
  3285.  
  3286.  
  3287. 1097. z.Pitch = 1
  3288.  
  3289.  
  3290. 1098. z.Volume = 1
  3291.  
  3292.  
  3293. 1099. wait(0.2)
  3294.  
  3295.  
  3296. 1100. z:Play()
  3297.  
  3298.  
  3299. 1101. sp = Instance.new("Part",rarm)
  3300.  
  3301.  
  3302. 1102. sp.Anchored = true
  3303.  
  3304.  
  3305. 1103. sp.CanCollide = false
  3306.  
  3307.  
  3308. 1104. sp.Locked = true
  3309.  
  3310.  
  3311. 1105. sp.Transparency = 0
  3312.  
  3313.  
  3314. 1106. sp.Material = "Neon"
  3315.  
  3316.  
  3317. 1107. sp.Size = Vector3.new(1,1,1)
  3318.  
  3319.  
  3320. 1108. sp.TopSurface = "SmoothNoOutlines"
  3321.  
  3322.  
  3323. 1109. sp.BottomSurface = "SmoothNoOutlines"
  3324.  
  3325.  
  3326. 1110. sp.BrickColor = BrickColor.new("Royal purple")
  3327.  
  3328.  
  3329. 1111. spm = Instance.new("SpecialMesh",sp)
  3330.  
  3331.  
  3332. 1112. spm.MeshType = "Sphere"
  3333.  
  3334.  
  3335. 1113. spm.Scale = Vector3.new(21,21,21)
  3336.  
  3337.  
  3338. 1114. sp2 = Instance.new("Part", rarm)
  3339.  
  3340.  
  3341. 1115. sp2.Name = "Energy"
  3342.  
  3343.  
  3344. 1116. sp2.BrickColor = BrickColor.new("Royal purple")
  3345.  
  3346.  
  3347. 1117. sp2.Size = Vector3.new(1, 1, 1)
  3348.  
  3349.  
  3350. 1118. sp2.Shape = "Ball"
  3351.  
  3352.  
  3353. 1119. sp2.CanCollide = false
  3354.  
  3355.  
  3356. 1120. sp2.Anchored = true
  3357.  
  3358.  
  3359. 1121. sp2.Locked = true
  3360.  
  3361.  
  3362. 1122. sp2.TopSurface = 0
  3363.  
  3364.  
  3365. 1123. sp2.BottomSurface = 0
  3366.  
  3367.  
  3368. 1124. sp2.Transparency = 1
  3369.  
  3370.  
  3371. 1125. spm2 = Instance.new("SpecialMesh",sp2)
  3372.  
  3373.  
  3374. 1126. spm2.MeshId = "rbxassetid://9982590"
  3375.  
  3376.  
  3377. 1127. spm2.Scale = Vector3.new(2,2,2)
  3378.  
  3379.  
  3380. 1128. for i = 1, 20 do
  3381.  
  3382.  
  3383. 1129. spm.Scale = spm.Scale - Vector3.new(1,1,1)
  3384.  
  3385.  
  3386. 1130. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  3387.  
  3388.  
  3389. 1131. 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)
  3390.  
  3391.  
  3392. 1132. 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)
  3393.  
  3394.  
  3395. 1133. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3396.  
  3397.  
  3398. 1134. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3399.  
  3400.  
  3401. 1135. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  3402.  
  3403.  
  3404. 1136. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  3405.  
  3406.  
  3407. 1137. if Debounces.on == false then break end
  3408.  
  3409.  
  3410. 1138. rs:wait()
  3411.  
  3412.  
  3413. 1139. end
  3414.  
  3415.  
  3416. 1140. for i = 1, 100, 20 do rs:wait()
  3417.  
  3418.  
  3419. 1141. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  3420.  
  3421.  
  3422. 1142. end
  3423.  
  3424.  
  3425. 1143. for i = 1, 20 do
  3426.  
  3427.  
  3428. 1144. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  3429.  
  3430.  
  3431. 1145. 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)
  3432.  
  3433.  
  3434. 1146. 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)
  3435.  
  3436.  
  3437. 1147. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(10),math.rad(-30),0), 0.4)
  3438.  
  3439.  
  3440. 1148. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), math.rad(0)), 0.4)
  3441.  
  3442.  
  3443. 1149. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  3444.  
  3445.  
  3446. 1150. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  3447.  
  3448.  
  3449. 1151. if Debounces.on == false then break end
  3450.  
  3451.  
  3452. 1152. rs:wait()
  3453.  
  3454.  
  3455. 1153. end
  3456.  
  3457.  
  3458. 1154. sp.Transparency = 1
  3459.  
  3460.  
  3461. 1155. for i = 1, 20 do
  3462.  
  3463.  
  3464. 1156. 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)
  3465.  
  3466.  
  3467. 1157. 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)
  3468.  
  3469.  
  3470. 1158. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.4)
  3471.  
  3472.  
  3473. 1159. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-50), math.rad(0)), 0.4)
  3474.  
  3475.  
  3476. 1160. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  3477.  
  3478.  
  3479. 1161. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  3480.  
  3481.  
  3482. 1162. if Debounces.on == false then break end
  3483.  
  3484.  
  3485. 1163. rs:wait()
  3486.  
  3487.  
  3488. 1164. end
  3489.  
  3490.  
  3491. 1165. wait(1)
  3492.  
  3493.  
  3494. 1166. sp.Transparency = 0
  3495.  
  3496.  
  3497. 1167. sp2.Transparency = 0.84
  3498.  
  3499.  
  3500. 1168. for i = 1, 20 do
  3501.  
  3502.  
  3503. 1169. --spm.Scale = spm.Scale - Vector3.new(1,1,1)
  3504.  
  3505.  
  3506. 1170. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  3507.  
  3508.  
  3509. 1171. sp2.CFrame = sp.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  3510.  
  3511.  
  3512. 1172. 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)
  3513.  
  3514.  
  3515. 1173. 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)
  3516.  
  3517.  
  3518. 1174. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  3519.  
  3520.  
  3521. 1175. 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)
  3522.  
  3523.  
  3524. 1176. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  3525.  
  3526.  
  3527. 1177. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  3528.  
  3529.  
  3530. 1178. if Debounces.on == false then break end
  3531.  
  3532.  
  3533. 1179. rs:wait()
  3534.  
  3535.  
  3536. 1180. end
  3537.  
  3538.  
  3539. 1181. for i = 1, 2880, 50 do
  3540.  
  3541.  
  3542. 1182. rs:wait()
  3543.  
  3544.  
  3545. 1183. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  3546.  
  3547.  
  3548. 1184. sp2.CFrame = rarm.CFrame * CFrame.new(0,-1,0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  3549.  
  3550.  
  3551. 1185. rs:wait()
  3552.  
  3553.  
  3554. 1186. end
  3555.  
  3556.  
  3557. 1187. sp:Destroy()
  3558.  
  3559.  
  3560. 1188. sp2:Destroy()
  3561.  
  3562.  
  3563. 1189. local X = Instance.new("Part",char)
  3564.  
  3565.  
  3566. 1190. local O = Instance.new("ObjectValue",X)
  3567.  
  3568.  
  3569. 1191. O.Name = "creator"
  3570.  
  3571.  
  3572. 1192. X.Locked = true
  3573.  
  3574.  
  3575. 1193. X.Name = "Shell"
  3576.  
  3577.  
  3578. 1194. X.Anchored = false
  3579.  
  3580.  
  3581. 1195. X.CanCollide = false
  3582.  
  3583.  
  3584. 1196. X.Transparency = 0
  3585.  
  3586.  
  3587. 1197. X.Reflectance = 0
  3588.  
  3589.  
  3590. 1198. X.BottomSurface = 0
  3591.  
  3592.  
  3593. 1199. X.TopSurface = 0
  3594.  
  3595.  
  3596. 1200. X.Shape = 0
  3597.  
  3598.  
  3599. 1201. local V = Instance.new("ObjectValue",X)
  3600.  
  3601.  
  3602. 1202. V.Value = char
  3603.  
  3604.  
  3605. 1203. V.Name = "creator"
  3606.  
  3607.  
  3608. 1204. X.BrickColor = BrickColor.new("Royal purple")
  3609.  
  3610.  
  3611. 1205. X.Size = Vector3.new(2,2,2)
  3612.  
  3613.  
  3614. 1206. X.Material = "Neon"
  3615.  
  3616.  
  3617. 1207. local Z = Instance.new("SpecialMesh",X)
  3618.  
  3619.  
  3620. 1208. Z.MeshType = "Sphere"
  3621.  
  3622.  
  3623. 1209. Z.Scale = Vector3.new(0.5,0.5,1)
  3624.  
  3625.  
  3626. 1210. X.CFrame = rarm.CFrame*CFrame.new(-3,0,0)
  3627.  
  3628.  
  3629. 1211. local bv = Instance.new("BodyVelocity",X)
  3630.  
  3631.  
  3632. 1212. bv.maxForce = Vector3.new(99999,99999,99999)
  3633.  
  3634.  
  3635. 1213. X.CFrame = CFrame.new(X.Position,mouse.Hit.p)
  3636.  
  3637.  
  3638. 1214. bv.velocity = X.CFrame.lookVector*65
  3639.  
  3640.  
  3641. 1215.
  3642.  
  3643.  
  3644. 1216. Explode = X.Touched:connect(function(hit)
  3645.  
  3646.  
  3647. 1217. if hit ~= char and hit.Name ~= "Shell" then
  3648.  
  3649.  
  3650. 1218. local cf = X.CFrame
  3651.  
  3652.  
  3653. 1219. bv:Destroy()
  3654.  
  3655.  
  3656. 1220. X.Anchored = true
  3657.  
  3658.  
  3659. 1221. Z:Remove()
  3660.  
  3661.  
  3662. 1222. Explode:disconnect()
  3663.  
  3664.  
  3665. 1223. X.Size = Vector3.new(3,3,3)
  3666.  
  3667.  
  3668. 1224. X.Touched:connect(function(hit) end)
  3669.  
  3670.  
  3671. 1225. X.CanCollide = false
  3672.  
  3673.  
  3674. 1226. local part3 = Instance.new("Part", rarm)
  3675.  
  3676.  
  3677. 1227. part3.Anchored=true
  3678.  
  3679.  
  3680. 1228. part3.CanCollide=false
  3681.  
  3682.  
  3683. 1229. part3.Locked = true
  3684.  
  3685.  
  3686. 1230. part3.TopSurface = "SmoothNoOutlines"
  3687.  
  3688.  
  3689. 1231. part3.BottomSurface = "SmoothNoOutlines"
  3690.  
  3691.  
  3692. 1232. part3.FormFactor='Custom'
  3693.  
  3694.  
  3695. 1233. part3.Size=Vector3.new(1,1, 1)
  3696.  
  3697.  
  3698. 1234. part3.CFrame=X.CFrame
  3699.  
  3700.  
  3701. 1235. part3.Transparency=0
  3702.  
  3703.  
  3704. 1236. part3.BrickColor=BrickColor.new("Royal purple")
  3705.  
  3706.  
  3707. 1237. local mesh3 = Instance.new("SpecialMesh",part3)
  3708.  
  3709.  
  3710. 1238. mesh3.MeshType = "Sphere"
  3711.  
  3712.  
  3713. 1239. mesh3.Scale = Vector3.new(1,1,1)
  3714.  
  3715.  
  3716. 1240. --debris:AddItem(X,8)
  3717.  
  3718.  
  3719. 1241. local part4 = Instance.new("Part", rarm)
  3720.  
  3721.  
  3722. 1242. part4.Material = "Neon"
  3723.  
  3724.  
  3725. 1243. part4.Anchored=true
  3726.  
  3727.  
  3728. 1244. part4.CanCollide=false
  3729.  
  3730.  
  3731. 1245. part4.Locked = true
  3732.  
  3733.  
  3734. 1246. part4.TopSurface = "SmoothNoOutlines"
  3735.  
  3736.  
  3737. 1247. part4.BottomSurface = "SmoothNoOutlines"
  3738.  
  3739.  
  3740. 1248. part4.FormFactor='Custom'
  3741.  
  3742.  
  3743. 1249. part4.Size=Vector3.new(1,1, 1)
  3744.  
  3745.  
  3746. 1250. part4.CFrame=X.CFrame
  3747.  
  3748.  
  3749. 1251. part4.Transparency=0
  3750.  
  3751.  
  3752. 1252. part4.BrickColor=BrickColor.new("Hot pink")
  3753.  
  3754.  
  3755. 1253. local mesh4 = Instance.new("SpecialMesh",part4)
  3756.  
  3757.  
  3758. 1254. mesh4.MeshType = "Sphere"
  3759.  
  3760.  
  3761. 1255. mesh4.Scale = Vector3.new(.5,.5,.5)
  3762.  
  3763.  
  3764. 1256. local part7 = Instance.new("Part", rarm)
  3765.  
  3766.  
  3767. 1257. part7.Material = "Neon"
  3768.  
  3769.  
  3770. 1258. part7.Anchored=true
  3771.  
  3772.  
  3773. 1259. part7.CanCollide=false
  3774.  
  3775.  
  3776. 1260. part7.Locked = true
  3777.  
  3778.  
  3779. 1261. part7.TopSurface = "SmoothNoOutlines"
  3780.  
  3781.  
  3782. 1262. part7.BottomSurface = "SmoothNoOutlines"
  3783.  
  3784.  
  3785. 1263. part7.FormFactor='Custom'
  3786.  
  3787.  
  3788. 1264. part7.Size=Vector3.new(1,1, 1)
  3789.  
  3790.  
  3791. 1265. part7.CFrame=X.CFrame
  3792.  
  3793.  
  3794. 1266. part7.Transparency=0
  3795.  
  3796.  
  3797. 1267. part7.BrickColor=BrickColor.new("Really black")
  3798.  
  3799.  
  3800. 1268. local mesh7 = Instance.new("SpecialMesh",part7)
  3801.  
  3802.  
  3803. 1269. mesh7.MeshType = "Sphere"
  3804.  
  3805.  
  3806. 1270. mesh7.Scale = Vector3.new(0.1, 0.1, 0.1)
  3807.  
  3808.  
  3809. 1271. --[[X.Touched:connect(function(ht)
  3810.  
  3811.  
  3812. 1272. hit = ht.Parent
  3813.  
  3814.  
  3815. 1273. if ht and hit:IsA("Model") then
  3816.  
  3817.  
  3818. 1274. if hit:FindFirstChild("Humanoid") then
  3819.  
  3820.  
  3821. 1275. if hit.Name ~= p.Name then
  3822.  
  3823.  
  3824. 1276. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  3825.  
  3826.  
  3827. 1277. wait(.3)
  3828.  
  3829.  
  3830. 1278. end
  3831.  
  3832.  
  3833. 1279. end
  3834.  
  3835.  
  3836. 1280. elseif ht and hit:IsA("Hat") then
  3837.  
  3838.  
  3839. 1281. if hit.Parent.Name ~= p.Name then
  3840.  
  3841.  
  3842. 1282. if hit.Parent:FindFirstChild("Humanoid") then
  3843.  
  3844.  
  3845. 1283. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  3846.  
  3847.  
  3848. 1284. wait(.3)
  3849.  
  3850.  
  3851. 1285. end
  3852.  
  3853.  
  3854. 1286. end
  3855.  
  3856.  
  3857. 1287. end
  3858.  
  3859.  
  3860. 1288. end)
  3861.  
  3862.  
  3863. 1289. part3.Touched:connect(function(ht)
  3864.  
  3865.  
  3866. 1290. hit = ht.Parent
  3867.  
  3868.  
  3869. 1291. if ht and hit:IsA("Model") then
  3870.  
  3871.  
  3872. 1292. if hit:FindFirstChild("Humanoid") then
  3873.  
  3874.  
  3875. 1293. if hit.Name ~= p.Name then
  3876.  
  3877.  
  3878. 1294. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  3879.  
  3880.  
  3881. 1295. wait(.3)
  3882.  
  3883.  
  3884. 1296. end
  3885.  
  3886.  
  3887. 1297. end
  3888.  
  3889.  
  3890. 1298. elseif ht and hit:IsA("Hat") then
  3891.  
  3892.  
  3893. 1299. if hit.Parent.Name ~= p.Name then
  3894.  
  3895.  
  3896. 1300. if hit.Parent:FindFirstChild("Humanoid") then
  3897.  
  3898.  
  3899. 1301. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  3900.  
  3901.  
  3902. 1302. wait(.3)
  3903.  
  3904.  
  3905. 1303. end
  3906.  
  3907.  
  3908. 1304. end
  3909.  
  3910.  
  3911. 1305. end
  3912.  
  3913.  
  3914. 1306. end)]]--
  3915.  
  3916.  
  3917. 1307. for i,v in pairs(FindNearestTorso(X.CFrame.p,140))do
  3918.  
  3919.  
  3920. 1308. if v:FindFirstChild('Humanoid') then
  3921.  
  3922.  
  3923. 1309. v.Humanoid:TakeDamage(math.random(60,90))
  3924.  
  3925.  
  3926. 1310. v.Humanoid.PlatformStand = true
  3927.  
  3928.  
  3929. 1311. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3930.  
  3931.  
  3932. 1312. end
  3933.  
  3934.  
  3935. 1313. end
  3936.  
  3937.  
  3938. 1314.
  3939.  
  3940.  
  3941. 1315. local acos = math.acos
  3942.  
  3943.  
  3944. 1316. local sqrt = math.sqrt
  3945.  
  3946.  
  3947. 1317. local Vec3 = Vector3.new
  3948.  
  3949.  
  3950. 1318. local fromAxisAngle = CFrame.fromAxisAngle
  3951.  
  3952.  
  3953. 1319.
  3954.  
  3955.  
  3956. 1320. local function toAxisAngle(CFr)
  3957.  
  3958.  
  3959. 1321. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3960.  
  3961.  
  3962. 1322. local Angle = math.acos((R00+R11+R22-1)/2)
  3963.  
  3964.  
  3965. 1323. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3966.  
  3967.  
  3968. 1324. A = A == 0 and 0.00001 or A
  3969.  
  3970.  
  3971. 1325. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3972.  
  3973.  
  3974. 1326. B = B == 0 and 0.00001 or B
  3975.  
  3976.  
  3977. 1327. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3978.  
  3979.  
  3980. 1328. C = C == 0 and 0.00001 or C
  3981.  
  3982.  
  3983. 1329. local x = (R21-R12)/sqrt(A)
  3984.  
  3985.  
  3986. 1330. local y = (R02-R20)/sqrt(B)
  3987.  
  3988.  
  3989. 1331. local z = (R10-R01)/sqrt(C)
  3990.  
  3991.  
  3992. 1332. return Vec3(x,y,z),Angle
  3993.  
  3994.  
  3995. 1333. end
  3996.  
  3997.  
  3998. 1334.
  3999.  
  4000.  
  4001. 1335. function ApplyTrig(Num,Func)
  4002.  
  4003.  
  4004. 1336. local Min,Max = Func(0),Func(1)
  4005.  
  4006.  
  4007. 1337. local i = Func(Num)
  4008.  
  4009.  
  4010. 1338. return (i-Min)/(Max-Min)
  4011.  
  4012.  
  4013. 1339. end
  4014.  
  4015.  
  4016. 1340.
  4017.  
  4018.  
  4019. 1341. function LerpCFrame(CFrame1,CFrame2,Num)
  4020.  
  4021.  
  4022. 1342. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  4023.  
  4024.  
  4025. 1343. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  4026.  
  4027.  
  4028. 1344. end
  4029.  
  4030.  
  4031. 1345.
  4032.  
  4033.  
  4034. 1346. function Crater(Torso,Radius)
  4035.  
  4036.  
  4037. 1347. Spawn(function()
  4038.  
  4039.  
  4040. 1348. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  4041.  
  4042.  
  4043. 1349. local Ignore = {}
  4044.  
  4045.  
  4046. 1350. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4047.  
  4048.  
  4049. 1351. if v.Character ~= nil then
  4050.  
  4051.  
  4052. 1352. Ignore[#Ignore+1] = v.Character
  4053.  
  4054.  
  4055. 1353. end
  4056.  
  4057.  
  4058. 1354. end
  4059.  
  4060.  
  4061. 1355. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  4062.  
  4063.  
  4064. 1356. if Hit == nil then return end
  4065.  
  4066.  
  4067. 1357. local Parts = {}
  4068.  
  4069.  
  4070. 1358. for i = 1,360,10 do
  4071.  
  4072.  
  4073. 1359. local P = Instance.new("Part",Torso.Parent)
  4074.  
  4075.  
  4076. 1360. P.Anchored = true
  4077.  
  4078.  
  4079. 1361. P.FormFactor = "Custom"
  4080.  
  4081.  
  4082. 1362. P.BrickColor = Hit.BrickColor
  4083.  
  4084.  
  4085. 1363. P.Material = Hit.Material
  4086.  
  4087.  
  4088. 1364. P.TopSurface = "Smooth"
  4089.  
  4090.  
  4091. 1365. P.BottomSurface = "Smooth"
  4092.  
  4093.  
  4094. 1366. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  4095.  
  4096.  
  4097. 1367. 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)))
  4098.  
  4099.  
  4100. 1368. 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}
  4101.  
  4102.  
  4103. 1369. if math.random(0,5) == 0 then -- rubble
  4104.  
  4105.  
  4106. 1370. local P = Instance.new("Part",Torso.Parent)
  4107.  
  4108.  
  4109. 1371. P.Anchored = true
  4110.  
  4111.  
  4112. 1372. P.FormFactor = "Custom"
  4113.  
  4114.  
  4115. 1373. P.BrickColor = Hit.BrickColor
  4116.  
  4117.  
  4118. 1374. P.Material = Hit.Material
  4119.  
  4120.  
  4121. 1375. P.TopSurface = "Smooth"
  4122.  
  4123.  
  4124. 1376. P.BottomSurface = "Smooth"
  4125.  
  4126.  
  4127. 1377. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  4128.  
  4129.  
  4130. 1378. 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)))
  4131.  
  4132.  
  4133. 1379. 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}
  4134.  
  4135.  
  4136. 1380. end
  4137.  
  4138.  
  4139. 1381. end
  4140.  
  4141.  
  4142. 1382. for i = 0,1,0.05 do
  4143.  
  4144.  
  4145. 1383. for i2,v in pairs(Parts) do
  4146.  
  4147.  
  4148. 1384. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  4149.  
  4150.  
  4151. 1385. end
  4152.  
  4153.  
  4154. 1386. wait(0.02)
  4155.  
  4156.  
  4157. 1387. end
  4158.  
  4159.  
  4160. 1388. for i,v in pairs(Parts) do
  4161.  
  4162.  
  4163. 1389. if v[1].Size.X > 2.1 then
  4164.  
  4165.  
  4166. 1390. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  4167.  
  4168.  
  4169. 1391. end
  4170.  
  4171.  
  4172. 1392. v[1].Anchored = false
  4173.  
  4174.  
  4175. 1393. end
  4176.  
  4177.  
  4178. 1394. for i = 0,1,0.05 do
  4179.  
  4180.  
  4181. 1395. for i2,v in pairs(Parts) do
  4182.  
  4183.  
  4184. 1396. v[1].Transparency = i
  4185.  
  4186.  
  4187. 1397. if i == 1 then
  4188.  
  4189.  
  4190. 1398. v[1]:Destroy()
  4191.  
  4192.  
  4193. 1399. elseif i >= 0.25 then
  4194.  
  4195.  
  4196. 1400. v[1].CanCollide = false
  4197.  
  4198.  
  4199. 1401. end
  4200.  
  4201.  
  4202. 1402. end
  4203.  
  4204.  
  4205. 1403. wait(0.02)
  4206.  
  4207.  
  4208. 1404. end
  4209.  
  4210.  
  4211. 1405. Parts = nil
  4212.  
  4213.  
  4214. 1406. end)
  4215.  
  4216.  
  4217. 1407. end
  4218.  
  4219.  
  4220. 1408.
  4221.  
  4222.  
  4223. 1409. ROW = function(out, trans, s, wt, t, ang, plus)
  4224.  
  4225.  
  4226. 1410. for i = 1, 360, 360/t do
  4227.  
  4228.  
  4229. 1411. local c = Instance.new("Part", game.Workspace)
  4230.  
  4231.  
  4232. 1412. c.FormFactor = 3
  4233.  
  4234.  
  4235. 1413. c.TopSurface = 0
  4236.  
  4237.  
  4238. 1414. c.BottomSurface = 0
  4239.  
  4240.  
  4241. 1415. c.Size = s
  4242.  
  4243.  
  4244. 1416. c.Anchored = true
  4245.  
  4246.  
  4247. 1417. c.CanCollide = wt
  4248.  
  4249.  
  4250. 1418. c.Material=workspace.Base.Material
  4251.  
  4252.  
  4253. 1419. c.Transparency = trans
  4254.  
  4255.  
  4256. 1420. c.BrickColor = workspace.Base.BrickColor
  4257.  
  4258.  
  4259. 1421. 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
  4260.  
  4261.  
  4262. 1422. c.Locked=true
  4263.  
  4264.  
  4265. 1423. game.Debris:AddItem(c,15)
  4266.  
  4267.  
  4268. 1424. end
  4269.  
  4270.  
  4271. 1425. end
  4272.  
  4273.  
  4274. 1426.
  4275.  
  4276.  
  4277. 1427. Part = function(x,y,z,color,tr,cc,an,parent)
  4278.  
  4279.  
  4280. 1428. local p = Instance.new('Part',parent or Weapon)
  4281.  
  4282.  
  4283. 1429. p.formFactor = 'Custom'
  4284.  
  4285.  
  4286. 1430. p.Size = Vector3.new(x,y,z)
  4287.  
  4288.  
  4289. 1431. p.BrickColor = BrickColor.new(color)
  4290.  
  4291.  
  4292. 1432. p.CanCollide = cc
  4293.  
  4294.  
  4295. 1433. p.Transparency = tr
  4296.  
  4297.  
  4298. 1434. p.Anchored = an
  4299.  
  4300.  
  4301. 1435. p.TopSurface,p.BottomSurface = 0,0
  4302.  
  4303.  
  4304. 1436. p.Locked=true
  4305.  
  4306.  
  4307. 1437. p:BreakJoints()
  4308.  
  4309.  
  4310. 1438. return p end
  4311.  
  4312.  
  4313. 1439.
  4314.  
  4315.  
  4316. 1440. Mesh = function(par,num,x,y,z)
  4317.  
  4318.  
  4319. 1441. local msh = _
  4320.  
  4321.  
  4322. 1442. if num == 1 then msh = Instance.new("CylinderMesh",par)
  4323.  
  4324.  
  4325. 1443. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  4326.  
  4327.  
  4328. 1444. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  4329.  
  4330.  
  4331. 1445. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  4332.  
  4333.  
  4334. 1446. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  4335.  
  4336.  
  4337. 1447. end msh.Scale = Vector3.new(x,y,z)
  4338.  
  4339.  
  4340. 1448. return msh end
  4341.  
  4342.  
  4343. 1449.
  4344.  
  4345.  
  4346. 1450. function explosion(col1,col2,cfr,sz,rng,dmg)
  4347.  
  4348.  
  4349. 1451. local a= Part(1,1,1,col1,.5,false,true,workspace)
  4350.  
  4351.  
  4352. 1452. local a2= Part(1,1,1,col2,.5,false,true,workspace)
  4353.  
  4354.  
  4355. 1453. local a3= Part(1,1,1,col2,.5,false,true,workspace)
  4356.  
  4357.  
  4358. 1454. v1,v2,v3=sz.x,sz.y,sz.z
  4359.  
  4360.  
  4361. 1455. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  4362.  
  4363.  
  4364. 1456. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  4365.  
  4366.  
  4367. 1457. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  4368.  
  4369.  
  4370. 1458. a.CFrame=cfr
  4371.  
  4372.  
  4373. 1459. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  4374.  
  4375.  
  4376. 1460. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  4377.  
  4378.  
  4379. 1461.
  4380.  
  4381.  
  4382. 1462. Spawn(function()
  4383.  
  4384.  
  4385. 1463. while wait() do
  4386.  
  4387.  
  4388. 1464. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  4389.  
  4390.  
  4391. 1465. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  4392.  
  4393.  
  4394. 1466. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  4395.  
  4396.  
  4397. 1467. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  4398.  
  4399.  
  4400. 1468. a.Transparency=a.Transparency+0.05
  4401.  
  4402.  
  4403. 1469. a2.Transparency=a2.Transparency+0.05
  4404.  
  4405.  
  4406. 1470. a3.Transparency=a3.Transparency+0.05
  4407.  
  4408.  
  4409. 1471. end
  4410.  
  4411.  
  4412. 1472. end)
  4413.  
  4414.  
  4415. 1473. end
  4416.  
  4417.  
  4418. 1474.
  4419.  
  4420.  
  4421. 1475. Crater(X,20)
  4422.  
  4423.  
  4424. 1476. 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)
  4425.  
  4426.  
  4427. 1477. z = Instance.new("Sound",X)
  4428.  
  4429.  
  4430. 1478. z.SoundId = "rbxassetid://231917744"
  4431.  
  4432.  
  4433. 1479. z.Pitch = .5
  4434.  
  4435.  
  4436. 1480. z.Volume = 10
  4437.  
  4438.  
  4439. 1481. z1 = Instance.new("Sound",X)
  4440.  
  4441.  
  4442. 1482. z1.SoundId = "rbxassetid://231917744"
  4443.  
  4444.  
  4445. 1483. z1.Pitch = .5
  4446.  
  4447.  
  4448. 1484. z1.Volume = 10
  4449.  
  4450.  
  4451. 1485. z2 = Instance.new("Sound",X)
  4452.  
  4453.  
  4454. 1486. z2.SoundId = "rbxassetid://231917744"
  4455.  
  4456.  
  4457. 1487. z2.Pitch = .5
  4458.  
  4459.  
  4460. 1488. z2.Volume = 10
  4461.  
  4462.  
  4463. 1489. z3 = Instance.new("Sound",X)
  4464.  
  4465.  
  4466. 1490. z3.SoundId = "rbxassetid://245537790"
  4467.  
  4468.  
  4469. 1491. z3.Pitch = .7
  4470.  
  4471.  
  4472. 1492. z3.Volume = 1
  4473.  
  4474.  
  4475. 1493. z4 = Instance.new("Sound",X)
  4476.  
  4477.  
  4478. 1494. z4.SoundId = "rbxassetid://245537790"
  4479.  
  4480.  
  4481. 1495. z4.Pitch = .7
  4482.  
  4483.  
  4484. 1496. z4.Volume = 1
  4485.  
  4486.  
  4487. 1497. wait(0.1)
  4488.  
  4489.  
  4490. 1498. z:Play()
  4491.  
  4492.  
  4493. 1499. z1:Play()
  4494.  
  4495.  
  4496. 1500. z2:Play()
  4497.  
  4498.  
  4499. 1501. z3:Play()
  4500.  
  4501.  
  4502. 1502. z4:Play()
  4503.  
  4504.  
  4505. 1503.
  4506.  
  4507.  
  4508. 1504. local part=Instance.new('Part',rarm)
  4509.  
  4510.  
  4511. 1505. part.Anchored=true
  4512.  
  4513.  
  4514. 1506. part.CanCollide=false
  4515.  
  4516.  
  4517. 1507. part.Locked = true
  4518.  
  4519.  
  4520. 1508. part.FormFactor='Custom'
  4521.  
  4522.  
  4523. 1509. part.Size=Vector3.new(1,1,1)
  4524.  
  4525.  
  4526. 1510. part.CFrame=X.CFrame*CFrame.new(0,0,0)
  4527.  
  4528.  
  4529. 1511. part.Transparency=0
  4530.  
  4531.  
  4532. 1512. part.BrickColor=BrickColor.new('Really black')
  4533.  
  4534.  
  4535. 1513. local mesh=Instance.new('SpecialMesh',part)
  4536.  
  4537.  
  4538. 1514. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  4539.  
  4540.  
  4541. 1515. mesh.Scale=Vector3.new(2,2,2)
  4542.  
  4543.  
  4544. 1516. local part2=part:clone()
  4545.  
  4546.  
  4547. 1517. part2.Parent = rarm
  4548.  
  4549.  
  4550. 1518. part2.BrickColor=BrickColor.new("Royal purple")
  4551.  
  4552.  
  4553. 1519. local part5=part:clone()
  4554.  
  4555.  
  4556. 1520. part5.Parent = rarm
  4557.  
  4558.  
  4559. 1521. part5.BrickColor=BrickColor.new("Magenta")
  4560.  
  4561.  
  4562. 1522. local part6=part:clone()
  4563.  
  4564.  
  4565. 1523. part6.Parent = rarm
  4566.  
  4567.  
  4568. 1524. part6.BrickColor=BrickColor.new("Black")
  4569.  
  4570.  
  4571. 1525. local mesh2=mesh:clone()
  4572.  
  4573.  
  4574. 1526. mesh2.Parent=part2
  4575.  
  4576.  
  4577. 1527. mesh2.Scale=Vector3.new(3, 3, 3)
  4578.  
  4579.  
  4580. 1528. local mesh5=mesh:clone()
  4581.  
  4582.  
  4583. 1529. mesh5.Parent=part5
  4584.  
  4585.  
  4586. 1530. mesh5.Scale=Vector3.new(3, 3, 3)
  4587.  
  4588.  
  4589. 1531. local mesh6=mesh:clone()
  4590.  
  4591.  
  4592. 1532. mesh6.Parent=part6
  4593.  
  4594.  
  4595. 1533. mesh6.Scale=Vector3.new(3, 3, 3)
  4596.  
  4597.  
  4598. 1534. local blast = Instance.new("Part", rarm)
  4599.  
  4600.  
  4601. 1535. blast.BrickColor = BrickColor.new("Really black")
  4602.  
  4603.  
  4604. 1536. blast.Anchored = true
  4605.  
  4606.  
  4607. 1537. blast.CanCollide = false
  4608.  
  4609.  
  4610. 1538. blast.Locked = true
  4611.  
  4612.  
  4613. 1539. blast.Size = Vector3.new(1, 1, 1)
  4614.  
  4615.  
  4616. 1540. blast.TopSurface = "Smooth"
  4617.  
  4618.  
  4619. 1541. blast.BottomSurface = "Smooth"
  4620.  
  4621.  
  4622. 1542. blast.Transparency = 0
  4623.  
  4624.  
  4625. 1543. blast.CFrame = HandCF
  4626.  
  4627.  
  4628. 1544. local bm = Instance.new("SpecialMesh", blast)
  4629.  
  4630.  
  4631. 1545. bm.Scale = Vector3.new(5,1,5)
  4632.  
  4633.  
  4634. 1546. bm.MeshId = "rbxassetid://3270017"
  4635.  
  4636.  
  4637. 1547. local blast2 = Instance.new("Part", rarm)
  4638.  
  4639.  
  4640. 1548. blast2.BrickColor = BrickColor.new("Really black")
  4641.  
  4642.  
  4643. 1549. blast2.Anchored = true
  4644.  
  4645.  
  4646. 1550. blast2.CanCollide = false
  4647.  
  4648.  
  4649. 1551. blast2.Locked = true
  4650.  
  4651.  
  4652. 1552. blast2.Size = Vector3.new(1, 1, 1)
  4653.  
  4654.  
  4655. 1553. blast2.TopSurface = "Smooth"
  4656.  
  4657.  
  4658. 1554. blast2.BottomSurface = "Smooth"
  4659.  
  4660.  
  4661. 1555. blast2.Transparency = 0
  4662.  
  4663.  
  4664. 1556. blast2.CFrame = HandCF
  4665.  
  4666.  
  4667. 1557. local bm2 = Instance.new("SpecialMesh", blast2)
  4668.  
  4669.  
  4670. 1558. bm2.Scale = Vector3.new(3,1,3)
  4671.  
  4672.  
  4673. 1559. bm2.MeshId = "rbxassetid://3270017"
  4674.  
  4675.  
  4676. 1560. local blast3 = Instance.new("Part", rarm)
  4677.  
  4678.  
  4679. 1561. blast3.BrickColor = BrickColor.new("Really black")
  4680.  
  4681.  
  4682. 1562. blast3.Anchored = true
  4683.  
  4684.  
  4685. 1563. blast3.CanCollide = false
  4686.  
  4687.  
  4688. 1564. blast3.Locked = true
  4689.  
  4690.  
  4691. 1565. blast3.Size = Vector3.new(1, 1, 1)
  4692.  
  4693.  
  4694. 1566. blast3.TopSurface = "Smooth"
  4695.  
  4696.  
  4697. 1567. blast3.BottomSurface = "Smooth"
  4698.  
  4699.  
  4700. 1568. blast3.Transparency = 0
  4701.  
  4702.  
  4703. 1569. blast3.CFrame = HandCF
  4704.  
  4705.  
  4706. 1570. local bm3 = Instance.new("SpecialMesh", blast3)
  4707.  
  4708.  
  4709. 1571. bm3.Scale = Vector3.new(3,1,3)
  4710.  
  4711.  
  4712. 1572. bm3.MeshId = "rbxassetid://3270017"
  4713.  
  4714.  
  4715. 1573. for i = 1,120 do rs:wait()
  4716.  
  4717.  
  4718. 1574. X.Transparency = X.Transparency + (1/120)
  4719.  
  4720.  
  4721. 1575. part.Transparency = part.Transparency + (1/120)
  4722.  
  4723.  
  4724. 1576. part2.Transparency = part2.Transparency + (1/120)
  4725.  
  4726.  
  4727. 1577. part3.Transparency = part3.Transparency + (1/120)
  4728.  
  4729.  
  4730. 1578. part4.Transparency = part4.Transparency + (1/120)
  4731.  
  4732.  
  4733. 1579. part5.Transparency = part5.Transparency + (1/120)
  4734.  
  4735.  
  4736. 1580. part6.Transparency = part6.Transparency + (1/120)
  4737.  
  4738.  
  4739. 1581. part7.Transparency = part7.Transparency + (1/120)
  4740.  
  4741.  
  4742. 1582. blast.Transparency = blast.Transparency + (1/120)
  4743.  
  4744.  
  4745. 1583. blast2.Transparency = blast2.Transparency + (1/120)
  4746.  
  4747.  
  4748. 1584. blast3.Transparency = blast3.Transparency + (1/120)
  4749.  
  4750.  
  4751. 1585. X.Size = X.Size + Vector3.new(.8,.8,.8)
  4752.  
  4753.  
  4754. 1586. --part3.Size = part3.Size + Vector3.new(3,3,3)
  4755.  
  4756.  
  4757. 1587. mesh.Scale = mesh.Scale + Vector3.new(1,.2,1)
  4758.  
  4759.  
  4760. 1588. mesh2.Scale = mesh2.Scale + Vector3.new(1.1,.2,1.1)
  4761.  
  4762.  
  4763. 1589. mesh3.Scale = mesh3.Scale + Vector3.new(3,3,3)
  4764.  
  4765.  
  4766. 1590. mesh4.Scale = mesh4.Scale + Vector3.new(1.7,1.7,1.7)
  4767.  
  4768.  
  4769. 1591. mesh5.Scale = mesh5.Scale + Vector3.new(1.6,.2,1.6)
  4770.  
  4771.  
  4772. 1592. mesh6.Scale = mesh6.Scale + Vector3.new(2,.2,2)
  4773.  
  4774.  
  4775. 1593. mesh7.Scale = mesh7.Scale + Vector3.new(4,4,4)
  4776.  
  4777.  
  4778. 1594. bm.Scale = bm.Scale + Vector3.new(6,6,.2)
  4779.  
  4780.  
  4781. 1595. bm2.Scale = bm2.Scale + Vector3.new(4,4,.2)
  4782.  
  4783.  
  4784. 1596. bm3.Scale = bm3.Scale + Vector3.new(4,4,.2)
  4785.  
  4786.  
  4787. 1597. X.CFrame = cf
  4788.  
  4789.  
  4790. 1598. part.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2),0)
  4791.  
  4792.  
  4793. 1599. part2.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2),0)
  4794.  
  4795.  
  4796. 1600. part3.CFrame=X.CFrame
  4797.  
  4798.  
  4799. 1601. part4.CFrame=X.CFrame
  4800.  
  4801.  
  4802. 1602. part7.CFrame=X.CFrame
  4803.  
  4804.  
  4805. 1603. part5.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2.6),0)
  4806.  
  4807.  
  4808. 1604. part6.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2.4),0)
  4809.  
  4810.  
  4811. 1605. blast.CFrame=X.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  4812.  
  4813.  
  4814. 1606. blast2.CFrame=X.CFrame * CFrame.Angles(math.rad(-i*4), math.rad(i*4), math.rad(0))
  4815.  
  4816.  
  4817. 1607. blast3.CFrame=X.CFrame * CFrame.Angles(math.rad(180+i*4), math.rad(90-i*4), math.rad(0))
  4818.  
  4819.  
  4820. 1608. rs:wait()
  4821.  
  4822.  
  4823. 1609. end
  4824.  
  4825.  
  4826. 1610. X:Destroy()
  4827.  
  4828.  
  4829. 1611. part:Destroy()
  4830.  
  4831.  
  4832. 1612. part2:Destroy()
  4833.  
  4834.  
  4835. 1613. part3:Destroy()
  4836.  
  4837.  
  4838. 1614. part4:Destroy()
  4839.  
  4840.  
  4841. 1615. part5:Destroy()
  4842.  
  4843.  
  4844. 1616. part6:Destroy()
  4845.  
  4846.  
  4847. 1617. blast:Destroy()
  4848.  
  4849.  
  4850. 1618. blast2:Destroy()
  4851.  
  4852.  
  4853. 1619. blast3:Destroy()
  4854.  
  4855.  
  4856. 1620. z:Destroy()
  4857.  
  4858.  
  4859. 1621. z1:Destroy()
  4860.  
  4861.  
  4862. 1622. z2:Destroy()
  4863.  
  4864.  
  4865. 1623. z3:Destroy()
  4866.  
  4867.  
  4868. 1624. z4:Destroy()
  4869.  
  4870.  
  4871. 1625. end
  4872.  
  4873.  
  4874. 1626. end)
  4875.  
  4876.  
  4877. 1627. for i = 1, 20 do
  4878.  
  4879.  
  4880. 1628. 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)
  4881.  
  4882.  
  4883. 1629. 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)
  4884.  
  4885.  
  4886. 1630. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  4887.  
  4888.  
  4889. 1631. 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)
  4890.  
  4891.  
  4892. 1632. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  4893.  
  4894.  
  4895. 1633. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  4896.  
  4897.  
  4898. 1634. if Debounces.on == false then break end
  4899.  
  4900.  
  4901. 1635. rs:wait()
  4902.  
  4903.  
  4904. 1636. end
  4905.  
  4906.  
  4907. 1637. if Debounces.CanAttack == false then
  4908.  
  4909.  
  4910. 1638. Debounces.CanAttack = true
  4911.  
  4912.  
  4913. 1639. Debounces.NoIdl = false
  4914.  
  4915.  
  4916. 1640. Debounces.on = false
  4917.  
  4918.  
  4919. 1641. end
  4920.  
  4921.  
  4922. 1642. end
  4923.  
  4924.  
  4925. 1643. end
  4926.  
  4927.  
  4928. 1644.end)
  4929.  
  4930.  
  4931. 1645.----------------------------------------------------
  4932.  
  4933.  
  4934. 1646.mouse.KeyDown:connect(function(key)
  4935.  
  4936.  
  4937. 1647. if key == "e" then
  4938.  
  4939.  
  4940. 1648. if Debounces.CanAttack == true then
  4941.  
  4942.  
  4943. 1649. Debounces.CanAttack = false
  4944.  
  4945.  
  4946. 1650. Debounces.on = true
  4947.  
  4948.  
  4949. 1651. Debounces.NoIdl = true
  4950.  
  4951.  
  4952. 1652.pt = {1, 1.1, 1.2, 1.3, 1.4, 1.5}
  4953.  
  4954.  
  4955. 1653.z = Instance.new("Sound", rarm)
  4956.  
  4957.  
  4958. 1654.z.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  4959.  
  4960.  
  4961. 1655.z.Volume = .6
  4962.  
  4963.  
  4964. 1656.z.Pitch = pt[math.random(1,#pt)]
  4965.  
  4966.  
  4967. 1657.z.Looped = false
  4968.  
  4969.  
  4970. 1658.z:Play()
  4971.  
  4972.  
  4973. 1659.Debounces.RPunch = true
  4974.  
  4975.  
  4976. 1660.Debounces.LPunch = true
  4977.  
  4978.  
  4979. 1661.Debounces.ks = true
  4980.  
  4981.  
  4982. 1662.Debounces.ks2 = true
  4983.  
  4984.  
  4985. 1663.for i = 1, 3 do
  4986.  
  4987.  
  4988. 1664.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)
  4989.  
  4990.  
  4991. 1665.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)
  4992.  
  4993.  
  4994. 1666.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  4995.  
  4996.  
  4997. 1667.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  4998.  
  4999.  
  5000. 1668.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)
  5001.  
  5002.  
  5003. 1669.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)
  5004.  
  5005.  
  5006. 1670.if Debounces.on == false then break end
  5007.  
  5008.  
  5009. 1671.wait()
  5010.  
  5011.  
  5012. 1672.end
  5013.  
  5014.  
  5015. 1673.z2 = Instance.new("Sound", larm)
  5016.  
  5017.  
  5018. 1674.z2.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5019.  
  5020.  
  5021. 1675.z2.Volume = .6
  5022.  
  5023.  
  5024. 1676.z2.Pitch = pt[math.random(1,#pt)]
  5025.  
  5026.  
  5027. 1677.z2.Looped = false
  5028.  
  5029.  
  5030. 1678.z2:Play()
  5031.  
  5032.  
  5033. 1679.for i = 1, 3 do
  5034.  
  5035.  
  5036. 1680.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)
  5037.  
  5038.  
  5039. 1681.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)
  5040.  
  5041.  
  5042. 1682.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5043.  
  5044.  
  5045. 1683.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5046.  
  5047.  
  5048. 1684.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)
  5049.  
  5050.  
  5051. 1685.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)
  5052.  
  5053.  
  5054. 1686.if Debounces.on == false then break end
  5055.  
  5056.  
  5057. 1687.wait()
  5058.  
  5059.  
  5060. 1688.end
  5061.  
  5062.  
  5063. 1689.z3 = Instance.new("Sound", rarm)
  5064.  
  5065.  
  5066. 1690.z3.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5067.  
  5068.  
  5069. 1691.z3.Volume = 0.6
  5070.  
  5071.  
  5072. 1692.z3.Pitch = pt[math.random(1,#pt)]
  5073.  
  5074.  
  5075. 1693.z3.Looped = false
  5076.  
  5077.  
  5078. 1694.z3:Play()
  5079.  
  5080.  
  5081. 1695.for i = 1, 3 do
  5082.  
  5083.  
  5084. 1696.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)
  5085.  
  5086.  
  5087. 1697.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)
  5088.  
  5089.  
  5090. 1698.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5091.  
  5092.  
  5093. 1699.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5094.  
  5095.  
  5096. 1700.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)
  5097.  
  5098.  
  5099. 1701.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)
  5100.  
  5101.  
  5102. 1702.if Debounces.on == false then break end
  5103.  
  5104.  
  5105. 1703.wait()
  5106.  
  5107.  
  5108. 1704.end
  5109.  
  5110.  
  5111. 1705.z4 = Instance.new("Sound", larm)
  5112.  
  5113.  
  5114. 1706.z4.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5115.  
  5116.  
  5117. 1707.z4.Volume = .6
  5118.  
  5119.  
  5120. 1708.z4.Pitch = pt[math.random(1,#pt)]
  5121.  
  5122.  
  5123. 1709.z4.Looped = false
  5124.  
  5125.  
  5126. 1710.z4:Play()
  5127.  
  5128.  
  5129. 1711.for i = 1, 3 do
  5130.  
  5131.  
  5132. 1712.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)
  5133.  
  5134.  
  5135. 1713.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)
  5136.  
  5137.  
  5138. 1714.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5139.  
  5140.  
  5141. 1715.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5142.  
  5143.  
  5144. 1716.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)
  5145.  
  5146.  
  5147. 1717.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)
  5148.  
  5149.  
  5150. 1718.if Debounces.on == false then break end
  5151.  
  5152.  
  5153. 1719.wait()
  5154.  
  5155.  
  5156. 1720.end
  5157.  
  5158.  
  5159. 1721.z5 = Instance.new("Sound", rarm)
  5160.  
  5161.  
  5162. 1722.z5.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5163.  
  5164.  
  5165. 1723.z5.Volume = .6
  5166.  
  5167.  
  5168. 1724.z5.Pitch = pt[math.random(1,#pt)]
  5169.  
  5170.  
  5171. 1725.z5.Looped = false
  5172.  
  5173.  
  5174. 1726.z5:Play()
  5175.  
  5176.  
  5177. 1727.for i = 1, 3 do
  5178.  
  5179.  
  5180. 1728.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)
  5181.  
  5182.  
  5183. 1729.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)
  5184.  
  5185.  
  5186. 1730.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  5187.  
  5188.  
  5189. 1731.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  5190.  
  5191.  
  5192. 1732.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)
  5193.  
  5194.  
  5195. 1733.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)
  5196.  
  5197.  
  5198. 1734.if Debounces.on == false then break end
  5199.  
  5200.  
  5201. 1735.wait()
  5202.  
  5203.  
  5204. 1736.end
  5205.  
  5206.  
  5207. 1737.z6 = Instance.new("Sound", larm)
  5208.  
  5209.  
  5210. 1738.z6.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5211.  
  5212.  
  5213. 1739.z6.Volume = .6
  5214.  
  5215.  
  5216. 1740.z6.Pitch = pt[math.random(1,#pt)]
  5217.  
  5218.  
  5219. 1741.z6.Looped = false
  5220.  
  5221.  
  5222. 1742.z6:Play()
  5223.  
  5224.  
  5225. 1743.for i = 1, 3 do
  5226.  
  5227.  
  5228. 1744.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)
  5229.  
  5230.  
  5231. 1745.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)
  5232.  
  5233.  
  5234. 1746.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5235.  
  5236.  
  5237. 1747.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5238.  
  5239.  
  5240. 1748.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)
  5241.  
  5242.  
  5243. 1749.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)
  5244.  
  5245.  
  5246. 1750.if Debounces.on == false then break end
  5247.  
  5248.  
  5249. 1751.wait()
  5250.  
  5251.  
  5252. 1752.end
  5253.  
  5254.  
  5255. 1753.z7 = Instance.new("Sound", rarm)
  5256.  
  5257.  
  5258. 1754.z7.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  5259.  
  5260.  
  5261. 1755.z7.Volume = .6
  5262.  
  5263.  
  5264. 1756.z7.Pitch = pt[math.random(1,#pt)]
  5265.  
  5266.  
  5267. 1757.z7.Looped = false
  5268.  
  5269.  
  5270. 1758.z7:Play()
  5271.  
  5272.  
  5273. 1759.for i = 1, 3 do
  5274.  
  5275.  
  5276. 1760.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)
  5277.  
  5278.  
  5279. 1761.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)
  5280.  
  5281.  
  5282. 1762.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5283.  
  5284.  
  5285. 1763.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5286.  
  5287.  
  5288. 1764.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)
  5289.  
  5290.  
  5291. 1765.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)
  5292.  
  5293.  
  5294. 1766.if Debounces.on == false then break end
  5295.  
  5296.  
  5297. 1767.wait()
  5298.  
  5299.  
  5300. 1768.end
  5301.  
  5302.  
  5303. 1769.z8 = Instance.new("Sound", larm)
  5304.  
  5305.  
  5306. 1770.z8.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5307.  
  5308.  
  5309. 1771.z8.Volume = .6
  5310.  
  5311.  
  5312. 1772.z8.Pitch = pt[math.random(1,#pt)]
  5313.  
  5314.  
  5315. 1773.z8.Looped = false
  5316.  
  5317.  
  5318. 1774.z8:Play()
  5319.  
  5320.  
  5321. 1775.for i = 1, 3 do
  5322.  
  5323.  
  5324. 1776.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)
  5325.  
  5326.  
  5327. 1777.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)
  5328.  
  5329.  
  5330. 1778.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5331.  
  5332.  
  5333. 1779.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5334.  
  5335.  
  5336. 1780.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)
  5337.  
  5338.  
  5339. 1781.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)
  5340.  
  5341.  
  5342. 1782.if Debounces.on == false then break end
  5343.  
  5344.  
  5345. 1783.wait()
  5346.  
  5347.  
  5348. 1784.end
  5349.  
  5350.  
  5351. 1785.z9 = Instance.new("Sound", rarm)
  5352.  
  5353.  
  5354. 1786.z9.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5355.  
  5356.  
  5357. 1787.z9.Volume = 0.6
  5358.  
  5359.  
  5360. 1788.z9.Pitch = pt[math.random(1,#pt)]
  5361.  
  5362.  
  5363. 1789.z9.Looped = false
  5364.  
  5365.  
  5366. 1790.z9:Play()
  5367.  
  5368.  
  5369. 1791.for i = 1, 3 do
  5370.  
  5371.  
  5372. 1792.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)
  5373.  
  5374.  
  5375. 1793.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)
  5376.  
  5377.  
  5378. 1794.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5379.  
  5380.  
  5381. 1795.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5382.  
  5383.  
  5384. 1796.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)
  5385.  
  5386.  
  5387. 1797.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)
  5388.  
  5389.  
  5390. 1798.if Debounces.on == false then break end
  5391.  
  5392.  
  5393. 1799.wait()
  5394.  
  5395.  
  5396. 1800.end
  5397.  
  5398.  
  5399. 1801.z10 = Instance.new("Sound", larm)
  5400.  
  5401.  
  5402. 1802.z10.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5403.  
  5404.  
  5405. 1803.z10.Volume = .6
  5406.  
  5407.  
  5408. 1804.z10.Pitch = pt[math.random(1,#pt)]
  5409.  
  5410.  
  5411. 1805.z10.Looped = false
  5412.  
  5413.  
  5414. 1806.z10:Play()
  5415.  
  5416.  
  5417. 1807.for i = 1, 3 do
  5418.  
  5419.  
  5420. 1808.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)
  5421.  
  5422.  
  5423. 1809.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)
  5424.  
  5425.  
  5426. 1810.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5427.  
  5428.  
  5429. 1811.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5430.  
  5431.  
  5432. 1812.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)
  5433.  
  5434.  
  5435. 1813.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)
  5436.  
  5437.  
  5438. 1814.if Debounces.on == false then break end
  5439.  
  5440.  
  5441. 1815.wait()
  5442.  
  5443.  
  5444. 1816.end
  5445.  
  5446.  
  5447. 1817.z11 = Instance.new("Sound", rarm)
  5448.  
  5449.  
  5450. 1818.z11.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5451.  
  5452.  
  5453. 1819.z11.Volume = .6
  5454.  
  5455.  
  5456. 1820.z11.Pitch = pt[math.random(1,#pt)]
  5457.  
  5458.  
  5459. 1821.z11.Looped = false
  5460.  
  5461.  
  5462. 1822.z11:Play()
  5463.  
  5464.  
  5465. 1823.for i = 1, 3 do
  5466.  
  5467.  
  5468. 1824.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)
  5469.  
  5470.  
  5471. 1825.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)
  5472.  
  5473.  
  5474. 1826.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  5475.  
  5476.  
  5477. 1827.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  5478.  
  5479.  
  5480. 1828.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)
  5481.  
  5482.  
  5483. 1829.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)
  5484.  
  5485.  
  5486. 1830.if Debounces.on == false then break end
  5487.  
  5488.  
  5489. 1831.wait()
  5490.  
  5491.  
  5492. 1832.end
  5493.  
  5494.  
  5495. 1833.z12 = Instance.new("Sound", larm)
  5496.  
  5497.  
  5498. 1834.z12.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5499.  
  5500.  
  5501. 1835.z12.Volume = .6
  5502.  
  5503.  
  5504. 1836.z12.Pitch = pt[math.random(1,#pt)]
  5505.  
  5506.  
  5507. 1837.z12.Looped = false
  5508.  
  5509.  
  5510. 1838.z12:Play()
  5511.  
  5512.  
  5513. 1839.for i = 1, 3 do
  5514.  
  5515.  
  5516. 1840.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)
  5517.  
  5518.  
  5519. 1841.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)
  5520.  
  5521.  
  5522. 1842.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5523.  
  5524.  
  5525. 1843.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5526.  
  5527.  
  5528. 1844.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)
  5529.  
  5530.  
  5531. 1845.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)
  5532.  
  5533.  
  5534. 1846.if Debounces.on == false then break end
  5535.  
  5536.  
  5537. 1847.wait()
  5538.  
  5539.  
  5540. 1848.end
  5541.  
  5542.  
  5543. 1849.z13 = Instance.new("Sound", rarm)
  5544.  
  5545.  
  5546. 1850.z13.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5547.  
  5548.  
  5549. 1851.z13.Volume = 0.6
  5550.  
  5551.  
  5552. 1852.z13.Pitch = pt[math.random(1,#pt)]
  5553.  
  5554.  
  5555. 1853.z13.Looped = false
  5556.  
  5557.  
  5558. 1854.z13:Play()
  5559.  
  5560.  
  5561. 1855.for i = 1, 3 do
  5562.  
  5563.  
  5564. 1856.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)
  5565.  
  5566.  
  5567. 1857.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)
  5568.  
  5569.  
  5570. 1858.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5571.  
  5572.  
  5573. 1859.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5574.  
  5575.  
  5576. 1860.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)
  5577.  
  5578.  
  5579. 1861.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)
  5580.  
  5581.  
  5582. 1862.if Debounces.on == false then break end
  5583.  
  5584.  
  5585. 1863.wait()
  5586.  
  5587.  
  5588. 1864.end
  5589.  
  5590.  
  5591. 1865.z14 = Instance.new("Sound", larm)
  5592.  
  5593.  
  5594. 1866.z14.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5595.  
  5596.  
  5597. 1867.z14.Volume = .6
  5598.  
  5599.  
  5600. 1868.z14.Pitch = pt[math.random(1,#pt)]
  5601.  
  5602.  
  5603. 1869.z14.Looped = false
  5604.  
  5605.  
  5606. 1870.z14:Play()
  5607.  
  5608.  
  5609. 1871.for i = 1, 3 do
  5610.  
  5611.  
  5612. 1872.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)
  5613.  
  5614.  
  5615. 1873.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)
  5616.  
  5617.  
  5618. 1874.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5619.  
  5620.  
  5621. 1875.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5622.  
  5623.  
  5624. 1876.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)
  5625.  
  5626.  
  5627. 1877.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)
  5628.  
  5629.  
  5630. 1878.if Debounces.on == false then break end
  5631.  
  5632.  
  5633. 1879.wait()
  5634.  
  5635.  
  5636. 1880.end
  5637.  
  5638.  
  5639. 1881.z15 = Instance.new("Sound", rarm)
  5640.  
  5641.  
  5642. 1882.z15.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5643.  
  5644.  
  5645. 1883.z15.Volume = .6
  5646.  
  5647.  
  5648. 1884.z15.Pitch = pt[math.random(1,#pt)]
  5649.  
  5650.  
  5651. 1885.z15.Looped = false
  5652.  
  5653.  
  5654. 1886.z15:Play()
  5655.  
  5656.  
  5657. 1887.for i = 1, 3 do
  5658.  
  5659.  
  5660. 1888.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)
  5661.  
  5662.  
  5663. 1889.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)
  5664.  
  5665.  
  5666. 1890.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  5667.  
  5668.  
  5669. 1891.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  5670.  
  5671.  
  5672. 1892.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)
  5673.  
  5674.  
  5675. 1893.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)
  5676.  
  5677.  
  5678. 1894.if Debounces.on == false then break end
  5679.  
  5680.  
  5681. 1895.wait()
  5682.  
  5683.  
  5684. 1896.end
  5685.  
  5686.  
  5687. 1897.z16 = Instance.new("Sound", larm)
  5688.  
  5689.  
  5690. 1898.z16.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5691.  
  5692.  
  5693. 1899.z16.Volume = .6
  5694.  
  5695.  
  5696. 1900.z16.Pitch = pt[math.random(1,#pt)]
  5697.  
  5698.  
  5699. 1901.z16.Looped = false
  5700.  
  5701.  
  5702. 1902.z16:Play()
  5703.  
  5704.  
  5705. 1903.for i = 1, 3 do
  5706.  
  5707.  
  5708. 1904.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)
  5709.  
  5710.  
  5711. 1905.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)
  5712.  
  5713.  
  5714. 1906.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5715.  
  5716.  
  5717. 1907.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5718.  
  5719.  
  5720. 1908.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)
  5721.  
  5722.  
  5723. 1909.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)
  5724.  
  5725.  
  5726. 1910.if Debounces.on == false then break end
  5727.  
  5728.  
  5729. 1911.wait()
  5730.  
  5731.  
  5732. 1912.end
  5733.  
  5734.  
  5735. 1913.z17 = Instance.new("Sound", rarm)
  5736.  
  5737.  
  5738. 1914.z17.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  5739.  
  5740.  
  5741. 1915.z17.Volume = .6
  5742.  
  5743.  
  5744. 1916.z17.Pitch = pt[math.random(1,#pt)]
  5745.  
  5746.  
  5747. 1917.z17.Looped = false
  5748.  
  5749.  
  5750. 1918.z17:Play()
  5751.  
  5752.  
  5753. 1919.for i = 1, 3 do
  5754.  
  5755.  
  5756. 1920.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)
  5757.  
  5758.  
  5759. 1921.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)
  5760.  
  5761.  
  5762. 1922.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5763.  
  5764.  
  5765. 1923.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5766.  
  5767.  
  5768. 1924.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)
  5769.  
  5770.  
  5771. 1925.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)
  5772.  
  5773.  
  5774. 1926.if Debounces.on == false then break end
  5775.  
  5776.  
  5777. 1927.wait()
  5778.  
  5779.  
  5780. 1928.end
  5781.  
  5782.  
  5783. 1929.z18 = Instance.new("Sound", larm)
  5784.  
  5785.  
  5786. 1930.z18.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5787.  
  5788.  
  5789. 1931.z18.Volume = .6
  5790.  
  5791.  
  5792. 1932.z18.Pitch = pt[math.random(1,#pt)]
  5793.  
  5794.  
  5795. 1933.z18.Looped = false
  5796.  
  5797.  
  5798. 1934.z18:Play()
  5799.  
  5800.  
  5801. 1935.for i = 1, 3 do
  5802.  
  5803.  
  5804. 1936.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)
  5805.  
  5806.  
  5807. 1937.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)
  5808.  
  5809.  
  5810. 1938.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5811.  
  5812.  
  5813. 1939.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5814.  
  5815.  
  5816. 1940.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)
  5817.  
  5818.  
  5819. 1941.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)
  5820.  
  5821.  
  5822. 1942.if Debounces.on == false then break end
  5823.  
  5824.  
  5825. 1943.wait()
  5826.  
  5827.  
  5828. 1944.end
  5829.  
  5830.  
  5831. 1945.z19 = Instance.new("Sound", rarm)
  5832.  
  5833.  
  5834. 1946.z19.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5835.  
  5836.  
  5837. 1947.z19.Volume = 0.6
  5838.  
  5839.  
  5840. 1948.z19.Pitch = pt[math.random(1,#pt)]
  5841.  
  5842.  
  5843. 1949.z19.Looped = false
  5844.  
  5845.  
  5846. 1950.z19:Play()
  5847.  
  5848.  
  5849. 1951.for i = 1, 3 do
  5850.  
  5851.  
  5852. 1952.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)
  5853.  
  5854.  
  5855. 1953.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)
  5856.  
  5857.  
  5858. 1954.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5859.  
  5860.  
  5861. 1955.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5862.  
  5863.  
  5864. 1956.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)
  5865.  
  5866.  
  5867. 1957.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)
  5868.  
  5869.  
  5870. 1958.if Debounces.on == false then break end
  5871.  
  5872.  
  5873. 1959.wait()
  5874.  
  5875.  
  5876. 1960.end
  5877.  
  5878.  
  5879. 1961.z20 = Instance.new("Sound", larm)
  5880.  
  5881.  
  5882. 1962.z20.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5883.  
  5884.  
  5885. 1963.z20.Volume = .6
  5886.  
  5887.  
  5888. 1964.z20.Pitch = pt[math.random(1,#pt)]
  5889.  
  5890.  
  5891. 1965.z20.Looped = false
  5892.  
  5893.  
  5894. 1966.z20:Play()
  5895.  
  5896.  
  5897. 1967.for i = 1, 3 do
  5898.  
  5899.  
  5900. 1968.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)
  5901.  
  5902.  
  5903. 1969.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)
  5904.  
  5905.  
  5906. 1970.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5907.  
  5908.  
  5909. 1971.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5910.  
  5911.  
  5912. 1972.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)
  5913.  
  5914.  
  5915. 1973.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)
  5916.  
  5917.  
  5918. 1974.if Debounces.on == false then break end
  5919.  
  5920.  
  5921. 1975.wait()
  5922.  
  5923.  
  5924. 1976.end
  5925.  
  5926.  
  5927. 1977.z:Destroy()
  5928.  
  5929.  
  5930. 1978.z2:Destroy()
  5931.  
  5932.  
  5933. 1979.z3:Destroy()
  5934.  
  5935.  
  5936. 1980.z4:Destroy()
  5937.  
  5938.  
  5939. 1981.z5:Destroy()
  5940.  
  5941.  
  5942. 1982.z6:Destroy()
  5943.  
  5944.  
  5945. 1983.z7:Destroy()
  5946.  
  5947.  
  5948. 1984.z8:Destroy()
  5949.  
  5950.  
  5951. 1985.z9:Destroy()
  5952.  
  5953.  
  5954. 1986.z10:Destroy()
  5955.  
  5956.  
  5957. 1987.z11:Destroy()
  5958.  
  5959.  
  5960. 1988.z12:Destroy()
  5961.  
  5962.  
  5963. 1989.z13:Destroy()
  5964.  
  5965.  
  5966. 1990.z14:Destroy()
  5967.  
  5968.  
  5969. 1991.z15:Destroy()
  5970.  
  5971.  
  5972. 1992.z16:Destroy()
  5973.  
  5974.  
  5975. 1993.z17:Destroy()
  5976.  
  5977.  
  5978. 1994.z18:Destroy()
  5979.  
  5980.  
  5981. 1995.z19:Destroy()
  5982.  
  5983.  
  5984. 1996.z20:Destroy()
  5985.  
  5986.  
  5987. 1997.Debounces.LPunch = false
  5988.  
  5989.  
  5990. 1998.Debounces.RPunch = false
  5991.  
  5992.  
  5993. 1999.Debounces.ks = false
  5994.  
  5995.  
  5996. 2000.Debounces.ks2 = false
  5997.  
  5998.  
  5999. 2001.if Debounces.CanAttack == false then
  6000.  
  6001.  
  6002. 2002.Debounces.CanAttack = true
  6003.  
  6004.  
  6005. 2003.Debounces.on = false
  6006.  
  6007.  
  6008. 2004.Debounces.NoIdl = false
  6009.  
  6010.  
  6011. 2005.end
  6012.  
  6013.  
  6014. 2006.end
  6015.  
  6016.  
  6017. 2007.end
  6018.  
  6019.  
  6020. 2008.end)
  6021.  
  6022.  
  6023. 2009.-------------------------------
  6024.  
  6025.  
  6026. 2010.mouse.KeyDown:connect(function(key)
  6027.  
  6028.  
  6029. 2011. if key == "t" then
  6030.  
  6031.  
  6032. 2012. if Debounces.CanAttack == true then
  6033.  
  6034.  
  6035. 2013. Debounces.CanAttack = false
  6036.  
  6037.  
  6038. 2014. Debounces.NoIdl = true
  6039.  
  6040.  
  6041. 2015. Debounces.on = true
  6042.  
  6043.  
  6044. 2016. Debounces.ks = true
  6045.  
  6046.  
  6047. 2017. kik = rleg.Touched:connect(function(ht)
  6048.  
  6049.  
  6050. 2018. hit = ht.Parent
  6051.  
  6052.  
  6053. 2019. if ht and hit:IsA("Model") then
  6054.  
  6055.  
  6056. 2020. if hit:FindFirstChild("Humanoid") then
  6057.  
  6058.  
  6059. 2021. if hit.Name ~= p.Name then
  6060.  
  6061.  
  6062. 2022. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  6063.  
  6064.  
  6065. 2023. Debounces.Slashed = true]]--
  6066.  
  6067.  
  6068. 2024. if Debounces.ks==true then
  6069.  
  6070.  
  6071. 2025. z = Instance.new("Sound",hed)
  6072.  
  6073.  
  6074. 2026. z.SoundId = "rbxassetid://169380525"
  6075.  
  6076.  
  6077. 2027. z.Volume = 1
  6078.  
  6079.  
  6080. 2028. z:Play()
  6081.  
  6082.  
  6083. 2029. Debounces.ks=false
  6084.  
  6085.  
  6086. 2030. end
  6087.  
  6088.  
  6089. 2031. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  6090.  
  6091.  
  6092. 2032. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  6093.  
  6094.  
  6095. 2033. --Debounces.Slashed = false
  6096.  
  6097.  
  6098. 2034. --end
  6099.  
  6100.  
  6101. 2035. end
  6102.  
  6103.  
  6104. 2036. end
  6105.  
  6106.  
  6107. 2037. elseif ht and hit:IsA("Hat") then
  6108.  
  6109.  
  6110. 2038. if hit.Parent.Name ~= p.Name then
  6111.  
  6112.  
  6113. 2039. if hit.Parent:FindFirstChild("Humanoid") then
  6114.  
  6115.  
  6116. 2040. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  6117.  
  6118.  
  6119. 2041. Debounces.Slashed = true]]--
  6120.  
  6121.  
  6122. 2042. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  6123.  
  6124.  
  6125. 2043. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  6126.  
  6127.  
  6128. 2044. --Debounces.Slashed = false
  6129.  
  6130.  
  6131. 2045. --end
  6132.  
  6133.  
  6134. 2046. end
  6135.  
  6136.  
  6137. 2047. end
  6138.  
  6139.  
  6140. 2048. end
  6141.  
  6142.  
  6143. 2049. end)
  6144.  
  6145.  
  6146. 2050. for i = 1,20 do
  6147.  
  6148.  
  6149. 2051. 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)
  6150.  
  6151.  
  6152. 2052. 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)
  6153.  
  6154.  
  6155. 2053. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6156.  
  6157.  
  6158. 2054. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(90), math.rad(90)), 0.4)
  6159.  
  6160.  
  6161. 2055. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-90)), 0.4)
  6162.  
  6163.  
  6164. 2056. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  6165.  
  6166.  
  6167. 2057. if Debounces.on == false then break end
  6168.  
  6169.  
  6170. 2058. rs:wait()
  6171.  
  6172.  
  6173. 2059. end
  6174.  
  6175.  
  6176. 2060. kik:disconnect()
  6177.  
  6178.  
  6179. 2061. if Debounces.CanAttack == false then
  6180.  
  6181.  
  6182. 2062. Debounces.CanAttack = true
  6183.  
  6184.  
  6185. 2063. Debounces.NoIdl = false
  6186.  
  6187.  
  6188. 2064. Debounces.on = false
  6189.  
  6190.  
  6191. 2065. end
  6192.  
  6193.  
  6194. 2066. end
  6195.  
  6196.  
  6197. 2067. end
  6198.  
  6199.  
  6200. 2068.end)
  6201.  
  6202.  
  6203. 2069.----------------------------------------------------
  6204.  
  6205.  
  6206. 2070.mouse.KeyDown:connect(function(key)
  6207.  
  6208.  
  6209. 2071. if key == "y" then
  6210.  
  6211.  
  6212. 2072. if Debounces.CanAttack == true then
  6213.  
  6214.  
  6215. 2073. Debounces.CanAttack = false
  6216.  
  6217.  
  6218. 2074. Debounces.on = true
  6219.  
  6220.  
  6221. 2075. Debounces.NoIdl = true
  6222.  
  6223.  
  6224. 2076. for i = 1, 15 do
  6225.  
  6226.  
  6227. 2077. 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)
  6228.  
  6229.  
  6230. 2078. 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)
  6231.  
  6232.  
  6233. 2079. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  6234.  
  6235.  
  6236. 2080. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.4)
  6237.  
  6238.  
  6239. 2081. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  6240.  
  6241.  
  6242. 2082. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  6243.  
  6244.  
  6245. 2083. if Debounces.on == false then break end
  6246.  
  6247.  
  6248. 2084. rs:wait(2.7)
  6249.  
  6250.  
  6251. 2085. end
  6252.  
  6253.  
  6254. 2086. x = Instance.new("Sound",char)
  6255.  
  6256.  
  6257. 2087. x.SoundId = "rbxassetid://228343271"
  6258.  
  6259.  
  6260. 2088. x.Pitch = 1
  6261.  
  6262.  
  6263. 2089. x.Volume = .8
  6264.  
  6265.  
  6266. 2090. wait(.1)
  6267.  
  6268.  
  6269. 2091. x:Play()
  6270.  
  6271.  
  6272. 2092. Debounces.on = false
  6273.  
  6274.  
  6275. 2093. Debounces.Here = false
  6276.  
  6277.  
  6278. 2094. shot = shot + 1
  6279.  
  6280.  
  6281. 2095.local rng = Instance.new("Part", larm)
  6282.  
  6283.  
  6284. 2096.rng.Anchored = true
  6285.  
  6286.  
  6287. 2097.rng.BrickColor = BrickColor.new("Royal purple")
  6288.  
  6289.  
  6290. 2098.rng.CanCollide = false
  6291.  
  6292.  
  6293. 2099.rng.FormFactor = 3
  6294.  
  6295.  
  6296. 2100.rng.Name = "Ring"
  6297.  
  6298.  
  6299. 2101.rng.Size = Vector3.new(1, 1, 1)
  6300.  
  6301.  
  6302. 2102.rng.Transparency = 0.35
  6303.  
  6304.  
  6305. 2103.rng.TopSurface = 0
  6306.  
  6307.  
  6308. 2104.rng.BottomSurface = 0
  6309.  
  6310.  
  6311. 2105.rng2 = rng:clone()
  6312.  
  6313.  
  6314. 2106.rng3 = rng2:clone()
  6315.  
  6316.  
  6317. 2107.rng4 = rng2:clone()
  6318.  
  6319.  
  6320. 2108.local rngm = Instance.new("SpecialMesh", rng)
  6321.  
  6322.  
  6323. 2109.rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6324.  
  6325.  
  6326. 2110.rngm.Scale = Vector3.new(10, 10, 1)
  6327.  
  6328.  
  6329. 2111.rngm2 = rngm:clone()
  6330.  
  6331.  
  6332. 2112.rngm2.Scale = Vector3.new(5, 5, 3)
  6333.  
  6334.  
  6335. 2113.rngm3=rngm2:clone()
  6336.  
  6337.  
  6338. 2114.rngm3.Parent = rng3
  6339.  
  6340.  
  6341. 2115.rngm3.Scale = Vector3.new(8, 8, 1)
  6342.  
  6343.  
  6344. 2116.rngm4 = rngm2:clone()
  6345.  
  6346.  
  6347. 2117.rngm4.Parent = rng4
  6348.  
  6349.  
  6350. 2118.rngm4.Scale = Vector3.new(6, 6, 1)
  6351.  
  6352.  
  6353. 2119.local bem = Instance.new("Part", larm)
  6354.  
  6355.  
  6356. 2120.bem.Anchored = true
  6357.  
  6358.  
  6359. 2121.bem.BrickColor = BrickColor.new("Really black")
  6360.  
  6361.  
  6362. 2122.bem.CanCollide = false
  6363.  
  6364.  
  6365. 2123.bem.FormFactor = 3
  6366.  
  6367.  
  6368. 2124.bem.Name = "Beam" .. shot
  6369.  
  6370.  
  6371. 2125.bem.Size = Vector3.new(1, 1, 1)
  6372.  
  6373.  
  6374. 2126.bem.Transparency = 0.35
  6375.  
  6376.  
  6377. 2127.bem.TopSurface = 0
  6378.  
  6379.  
  6380. 2128.bem.BottomSurface = 0
  6381.  
  6382.  
  6383. 2129.local bemm = Instance.new("SpecialMesh", bem)
  6384.  
  6385.  
  6386. 2130.bemm.MeshType = 4
  6387.  
  6388.  
  6389. 2131.bemm.Scale = Vector3.new(1, 4, 4)
  6390.  
  6391.  
  6392. 2132.local out = Instance.new("Part", larm)
  6393.  
  6394.  
  6395. 2133.out.Anchored = true
  6396.  
  6397.  
  6398. 2134.out.BrickColor = BrickColor.new("Really black")
  6399.  
  6400.  
  6401. 2135.out.CanCollide = false
  6402.  
  6403.  
  6404. 2136.out.FormFactor = 3
  6405.  
  6406.  
  6407. 2137.out.Name = "Out"
  6408.  
  6409.  
  6410. 2138.out.Size = Vector3.new(4, 4, 4)
  6411.  
  6412.  
  6413. 2139.out.Transparency = 0.35
  6414.  
  6415.  
  6416. 2140.out.TopSurface = 0
  6417.  
  6418.  
  6419. 2141.out.BottomSurface = 0
  6420.  
  6421.  
  6422. 2142.local outm = Instance.new("SpecialMesh", out)
  6423.  
  6424.  
  6425. 2143.outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  6426.  
  6427.  
  6428. 2144.outm.Scale = Vector3.new(6, 4, 6)
  6429.  
  6430.  
  6431. 2145.local bnd = Instance.new("Part", larm)
  6432.  
  6433.  
  6434. 2146.bnd.Anchored = true
  6435.  
  6436.  
  6437. 2147.bnd.BrickColor = BrickColor.new("Really red")
  6438.  
  6439.  
  6440. 2148.bnd.CanCollide = false
  6441.  
  6442.  
  6443. 2149.bnd.FormFactor = 3
  6444.  
  6445.  
  6446. 2150.bnd.Name = "Bend"
  6447.  
  6448.  
  6449. 2151.bnd.Size = Vector3.new(1, 1, 1)
  6450.  
  6451.  
  6452. 2152.bnd.Transparency = 1
  6453.  
  6454.  
  6455. 2153.bnd.TopSurface = 0
  6456.  
  6457.  
  6458. 2154.bnd.BottomSurface = 0
  6459.  
  6460.  
  6461. 2155.local bndm = Instance.new("SpecialMesh", bnd)
  6462.  
  6463.  
  6464. 2156.bndm.MeshType = 3
  6465.  
  6466.  
  6467. 2157.bndm.Scale = Vector3.new(8, 8, 8)
  6468.  
  6469.  
  6470. 2158.out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  6471.  
  6472.  
  6473. 2159.bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  6474.  
  6475.  
  6476. 2160.bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  6477.  
  6478.  
  6479. 2161.rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  6480.  
  6481.  
  6482. 2162.rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  6483.  
  6484.  
  6485. 2163.rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  6486.  
  6487.  
  6488. 2164.Debounces.Shewt = true
  6489.  
  6490.  
  6491. 2165.coroutine.wrap(function()
  6492.  
  6493.  
  6494. 2166.for i = 1, 20, 0.2 do
  6495.  
  6496.  
  6497. 2167.rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  6498.  
  6499.  
  6500. 2168.rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  6501.  
  6502.  
  6503. 2169.rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  6504.  
  6505.  
  6506. 2170.rng.Transparency = i/20
  6507.  
  6508.  
  6509. 2171.rng3.Transparency = 1/24
  6510.  
  6511.  
  6512. 2172.rng4.Transparency = i/26
  6513.  
  6514.  
  6515. 2173.wait()
  6516.  
  6517.  
  6518. 2174.end
  6519.  
  6520.  
  6521. 2175.wait()
  6522.  
  6523.  
  6524. 2176.rng:Destroy()
  6525.  
  6526.  
  6527. 2177.end)()
  6528.  
  6529.  
  6530. 2178.if Debounces.Shewt == true then
  6531.  
  6532.  
  6533. 2179.larm:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  6534.  
  6535.  
  6536. 2180.hit = ht.Parent
  6537.  
  6538.  
  6539. 2181.if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  6540.  
  6541.  
  6542. 2182.if HasntTouched(hit.Name) == true and deb == false then
  6543.  
  6544.  
  6545. 2183.deb = true
  6546.  
  6547.  
  6548. 2184.coroutine.wrap(function()
  6549.  
  6550.  
  6551. 2185.hit:FindFirstChild("Humanoid").PlatformStand = true
  6552.  
  6553.  
  6554. 2186.hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  6555.  
  6556.  
  6557. 2187.hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  6558.  
  6559.  
  6560. 2188.end)()
  6561.  
  6562.  
  6563. 2189.table.insert(Touche, hit.Name)
  6564.  
  6565.  
  6566. 2190.deb = false
  6567.  
  6568.  
  6569. 2191.end
  6570.  
  6571.  
  6572. 2192.elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  6573.  
  6574.  
  6575. 2193.if HasntTouched(hit.Parent.Name) == true and deb == false then
  6576.  
  6577.  
  6578. 2194.deb = true
  6579.  
  6580.  
  6581. 2195.coroutine.wrap(function()
  6582.  
  6583.  
  6584. 2196.hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  6585.  
  6586.  
  6587. 2197.hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  6588.  
  6589.  
  6590. 2198.wait(1)
  6591.  
  6592.  
  6593. 2199.hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  6594.  
  6595.  
  6596. 2200.end)()
  6597.  
  6598.  
  6599. 2201.table.insert(Touche, hit.Parent.Name)
  6600.  
  6601.  
  6602. 2202.deb = false
  6603.  
  6604.  
  6605. 2203.for i, v in pairs(Touche) do
  6606.  
  6607.  
  6608. 2204.print(v)
  6609.  
  6610.  
  6611. 2205.end
  6612.  
  6613.  
  6614. 2206.end
  6615.  
  6616.  
  6617. 2207.end
  6618.  
  6619.  
  6620. 2208.end)
  6621.  
  6622.  
  6623. 2209.end
  6624.  
  6625.  
  6626. 2210.for i = 0, 260, 8 do
  6627.  
  6628.  
  6629. 2211.bem.Size = Vector3.new(i, 3, 3)
  6630.  
  6631.  
  6632. 2212.out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  6633.  
  6634.  
  6635. 2213.bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  6636.  
  6637.  
  6638. 2214.bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  6639.  
  6640.  
  6641. 2215.bnd.Size = Vector3.new(1,1,1)
  6642.  
  6643.  
  6644. 2216.bndm.Scale = Vector3.new(8,8,8)
  6645.  
  6646.  
  6647. 2217.if i % 10 == 0 then
  6648.  
  6649.  
  6650. 2218.local newRng = rng2:Clone()
  6651.  
  6652.  
  6653. 2219.newRng.Parent = larm
  6654.  
  6655.  
  6656. 2220.newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  6657.  
  6658.  
  6659. 2221.local newRngm = rngm2:clone()
  6660.  
  6661.  
  6662. 2222.newRngm.Parent=newRng
  6663.  
  6664.  
  6665. 2223.coroutine.wrap(function()
  6666.  
  6667.  
  6668. 2224.for i = 1, 10, 0.2 do
  6669.  
  6670.  
  6671. 2225.newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  6672.  
  6673.  
  6674. 2226.newRng.Transparency = i/10
  6675.  
  6676.  
  6677. 2227.wait()
  6678.  
  6679.  
  6680. 2228.end
  6681.  
  6682.  
  6683. 2229.wait()
  6684.  
  6685.  
  6686. 2230.newRng:Destroy()
  6687.  
  6688.  
  6689. 2231.end)()
  6690.  
  6691.  
  6692. 2232.end
  6693.  
  6694.  
  6695. 2233.wait()
  6696.  
  6697.  
  6698. 2234.end
  6699.  
  6700.  
  6701. 2235.wait()
  6702.  
  6703.  
  6704. 2236.Debounces.Shewt = false
  6705.  
  6706.  
  6707. 2237.bem:Destroy()
  6708.  
  6709.  
  6710. 2238.out:Destroy()
  6711.  
  6712.  
  6713. 2239.bnd:Destroy()
  6714.  
  6715.  
  6716. 2240.Debounces.Ready = false
  6717.  
  6718.  
  6719. 2241.for i, v in pairs(Touche) do
  6720.  
  6721.  
  6722. 2242.table.remove(Touche, i)
  6723.  
  6724.  
  6725. 2243.end
  6726.  
  6727.  
  6728. 2244.wait()
  6729.  
  6730.  
  6731. 2245.table.insert(Touche, char.Name)
  6732.  
  6733.  
  6734. 2246.Debounces.NoIdl = false
  6735.  
  6736.  
  6737. 2247.if Debounces.CanAttack == false then
  6738.  
  6739.  
  6740. 2248.Debounces.CanAttack = true
  6741.  
  6742.  
  6743. 2249.end
  6744.  
  6745.  
  6746. 2250.end
  6747.  
  6748.  
  6749. 2251.end
  6750.  
  6751.  
  6752. 2252.end)
  6753.  
  6754.  
  6755. 2253.----------------------------------------------------
  6756.  
  6757.  
  6758. 2254.--[[mouse.KeyDown:connect(function(key)
  6759.  
  6760.  
  6761. 2255. if key == "y" then
  6762.  
  6763.  
  6764. 2256. if Debounces.CanAttack == true then
  6765.  
  6766.  
  6767. 2257. Debounces.CanAttack = false
  6768.  
  6769.  
  6770. 2258. Debounces.NoIdl = true
  6771.  
  6772.  
  6773. 2259. Debounces.on = true
  6774.  
  6775.  
  6776. 2260. local shell = Instance.new("Part",torso)
  6777.  
  6778.  
  6779. 2261. shell.BrickColor = BrickColor.new("Royal purple")
  6780.  
  6781.  
  6782. 2262. shell.Anchored = false
  6783.  
  6784.  
  6785. 2263. shell.CanCollide = false
  6786.  
  6787.  
  6788. 2264. shell.Locked = true
  6789.  
  6790.  
  6791. 2265. shell.TopSurface = "SmoothNoOutlines"
  6792.  
  6793.  
  6794. 2266. shell.BottomSurface = "SmoothNoOutlines"
  6795.  
  6796.  
  6797. 2267. shell.Size = Vector3.new(1.2,1.2,1.2)
  6798.  
  6799.  
  6800. 2268. shell.FormFactor = 3
  6801.  
  6802.  
  6803. 2269. local shellm = Instance.new("SpecialMesh",shell)
  6804.  
  6805.  
  6806. 2270. shellm.MeshType = "Sphere"
  6807.  
  6808.  
  6809. 2271. shellm.Scale = Vector3.new(1.2,1.2,1.2)
  6810.  
  6811.  
  6812. 2272. Omega = function()
  6813.  
  6814.  
  6815. 2273. local X = Instance.new("Part",char)
  6816.  
  6817.  
  6818. 2274. local O = Instance.new("ObjectValue",X)
  6819.  
  6820.  
  6821. 2275. O.Name = "creator"
  6822.  
  6823.  
  6824. 2276. X.Locked = true
  6825.  
  6826.  
  6827. 2277. X.Name = "Shell"
  6828.  
  6829.  
  6830. 2278. X.Anchored = false
  6831.  
  6832.  
  6833. 2279. X.CanCollide = false
  6834.  
  6835.  
  6836. 2280. X.Transparency = 0.5
  6837.  
  6838.  
  6839. 2281. X.Reflectance = 0
  6840.  
  6841.  
  6842. 2282. X.BottomSurface = 0
  6843.  
  6844.  
  6845. 2283. X.TopSurface = 0
  6846.  
  6847.  
  6848. 2284. X.Shape = 0
  6849.  
  6850.  
  6851. 2285. local V = Instance.new("ObjectValue",X)
  6852.  
  6853.  
  6854. 2286. V.Value = char
  6855.  
  6856.  
  6857. 2287. V.Name = "creator"
  6858.  
  6859.  
  6860. 2288. X.BrickColor = BrickColor.new("Royal purple")
  6861.  
  6862.  
  6863. 2289. X.Size = Vector3.new(40,40,40)
  6864.  
  6865.  
  6866. 2290. --X.Material = "Neon"
  6867.  
  6868.  
  6869. 2291. local Z = Instance.new("SpecialMesh",X)
  6870.  
  6871.  
  6872. 2292. Z.MeshType = "Sphere"
  6873.  
  6874.  
  6875. 2293. Z.Scale = Vector3.new(0.2,0.2,0.2)
  6876.  
  6877.  
  6878. 2294. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  6879.  
  6880.  
  6881. 2295. local bv = Instance.new("BodyVelocity",X)
  6882.  
  6883.  
  6884. 2296. bv.maxForce = Vector3.new(99999,99999,99999)
  6885.  
  6886.  
  6887. 2297. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  6888.  
  6889.  
  6890. 2298. bv.velocity = root.CFrame.lookVector*10
  6891.  
  6892.  
  6893. 2299. Explode = X.Touched:connect(function(hit)
  6894.  
  6895.  
  6896. 2300. if hit ~= char and hit.Name ~= "Shell" and hit ~= X and hit:IsA("Part") or hit:IsA("BasePart}") then
  6897.  
  6898.  
  6899. 2301. local cf = X.CFrame
  6900.  
  6901.  
  6902. 2302. bv:Destroy()
  6903.  
  6904.  
  6905. 2303. X.Anchored = true
  6906.  
  6907.  
  6908. 2304. Z:Remove()
  6909.  
  6910.  
  6911. 2305. Explode:disconnect()
  6912.  
  6913.  
  6914. 2306. X.Size = Vector3.new(3,3,3)
  6915.  
  6916.  
  6917. 2307. X.Touched:connect(function(hit) end)
  6918.  
  6919.  
  6920. 2308. X.CanCollide = false
  6921.  
  6922.  
  6923. 2309. for i,v in pairs(FindNearestTorso(X.CFrame.p,200))do
  6924.  
  6925.  
  6926. 2310. if v:FindFirstChild('Humanoid') then
  6927.  
  6928.  
  6929. 2311. v.Humanoid:TakeDamage(math.random(80,120))
  6930.  
  6931.  
  6932. 2312. end
  6933.  
  6934.  
  6935. 2313. end
  6936.  
  6937.  
  6938. 2314. for i = 1, (40) do rs:wait()
  6939.  
  6940.  
  6941. 2315. X.Transparency = X.Transparency + (1/40)
  6942.  
  6943.  
  6944. 2316. X.Size = X.Size + Vector3.new(1,1,1)
  6945.  
  6946.  
  6947. 2317. X.CFrame = root.CFrame * CFrame.new(0,0,-10)
  6948.  
  6949.  
  6950. 2318. end
  6951.  
  6952.  
  6953. 2319. X:Destroy()
  6954.  
  6955.  
  6956. 2320. end
  6957.  
  6958.  
  6959. 2321. end)
  6960.  
  6961.  
  6962. 2322. end
  6963.  
  6964.  
  6965. 2323. for i = 1,200 do
  6966.  
  6967.  
  6968. 2324. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6969.  
  6970.  
  6971. 2325. 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)
  6972.  
  6973.  
  6974. 2326. 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)
  6975.  
  6976.  
  6977. 2327. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6978.  
  6979.  
  6980. 2328. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6981.  
  6982.  
  6983. 2329. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6984.  
  6985.  
  6986. 2330. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6987.  
  6988.  
  6989. 2331. if Debounces.on == false then break end
  6990.  
  6991.  
  6992. 2332. rs:wait()
  6993.  
  6994.  
  6995. 2333. end
  6996.  
  6997.  
  6998. 2334. for i = 1,30 do
  6999.  
  7000.  
  7001. 2335. shell.CFrame = torso.CFrame * CFrame.new(0,8,0)
  7002.  
  7003.  
  7004. 2336. 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)
  7005.  
  7006.  
  7007. 2337. 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)
  7008.  
  7009.  
  7010. 2338. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  7011.  
  7012.  
  7013. 2339. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  7014.  
  7015.  
  7016. 2340. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  7017.  
  7018.  
  7019. 2341. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  7020.  
  7021.  
  7022. 2342. if Debounces.on == false then break end
  7023.  
  7024.  
  7025. 2343. rs:wait()
  7026.  
  7027.  
  7028. 2344. end
  7029.  
  7030.  
  7031. 2345. for i = 1,40 do
  7032.  
  7033.  
  7034. 2346. shell.CFrame = torso.CFrame * CFrame.new(0,20,0)
  7035.  
  7036.  
  7037. 2347. shell.Size = shell.Size + Vector3.new(1,1,1)
  7038.  
  7039.  
  7040. 2348. 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)
  7041.  
  7042.  
  7043. 2349. 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)
  7044.  
  7045.  
  7046. 2350. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  7047.  
  7048.  
  7049. 2351. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  7050.  
  7051.  
  7052. 2352. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  7053.  
  7054.  
  7055. 2353. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  7056.  
  7057.  
  7058. 2354. if Debounces.on == false then break end
  7059.  
  7060.  
  7061. 2355. rs:wait()
  7062.  
  7063.  
  7064. 2356. end
  7065.  
  7066.  
  7067. 2357. for i = 1,40 do
  7068.  
  7069.  
  7070. 2358. shell.CFrame = torso.CFrame * CFrame.new(0,0,-30)
  7071.  
  7072.  
  7073. 2359. 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)
  7074.  
  7075.  
  7076. 2360. 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)
  7077.  
  7078.  
  7079. 2361. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  7080.  
  7081.  
  7082. 2362. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  7083.  
  7084.  
  7085. 2363. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  7086.  
  7087.  
  7088. 2364. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  7089.  
  7090.  
  7091. 2365. if Debounces.on == false then break end
  7092.  
  7093.  
  7094. 2366. rs:wait()
  7095.  
  7096.  
  7097. 2367. end
  7098.  
  7099.  
  7100. 2368. for i = 1,60 do
  7101.  
  7102.  
  7103. 2369. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  7104.  
  7105.  
  7106. 2370. 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)
  7107.  
  7108.  
  7109. 2371. 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)
  7110.  
  7111.  
  7112. 2372. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  7113.  
  7114.  
  7115. 2373. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  7116.  
  7117.  
  7118. 2374. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  7119.  
  7120.  
  7121. 2375. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  7122.  
  7123.  
  7124. 2376. if Debounces.on == false then break end
  7125.  
  7126.  
  7127. 2377. rs:wait()
  7128.  
  7129.  
  7130. 2378. end
  7131.  
  7132.  
  7133. 2379. for i = 1,60 do
  7134.  
  7135.  
  7136. 2380. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  7137.  
  7138.  
  7139. 2381. shell.Size = shell.Size + Vector3.new(1,1,1)
  7140.  
  7141.  
  7142. 2382. 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)
  7143.  
  7144.  
  7145. 2383. 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)
  7146.  
  7147.  
  7148. 2384. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  7149.  
  7150.  
  7151. 2385. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  7152.  
  7153.  
  7154. 2386. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  7155.  
  7156.  
  7157. 2387. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  7158.  
  7159.  
  7160. 2388. if Debounces.on == false then break end
  7161.  
  7162.  
  7163. 2389. rs:wait()
  7164.  
  7165.  
  7166. 2390. end
  7167.  
  7168.  
  7169. 2391. if Debounces.CanAttack == false then
  7170.  
  7171.  
  7172. 2392. Debounces.CanAttack = true
  7173.  
  7174.  
  7175. 2393. Debounces.NoIdl = false
  7176.  
  7177.  
  7178. 2394. Debounces.on = false
  7179.  
  7180.  
  7181. 2395. end
  7182.  
  7183.  
  7184. 2396. end
  7185.  
  7186.  
  7187. 2397. end
  7188.  
  7189.  
  7190. 2398.end)]]--
  7191.  
  7192.  
  7193. 2399.----------------------------------------------------
  7194.  
  7195.  
  7196. 2400.Charging = false
  7197.  
  7198.  
  7199. 2401.mouse.KeyDown:connect(function(key)
  7200.  
  7201.  
  7202. 2402. if key == "r" then
  7203.  
  7204.  
  7205. 2403. if Charging == false then
  7206.  
  7207.  
  7208. 2404. Charging = true
  7209.  
  7210.  
  7211. 2405. if Debounces.CanAttack == true then
  7212.  
  7213.  
  7214. 2406. Debounces.CanAttack = false
  7215.  
  7216.  
  7217. 2407. Debounces.NoIdl = true
  7218.  
  7219.  
  7220. 2408. Debounces.on = true
  7221.  
  7222.  
  7223. 2409. for i = 1,20 do
  7224.  
  7225.  
  7226. 2410. 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)
  7227.  
  7228.  
  7229. 2411. 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)
  7230.  
  7231.  
  7232. 2412. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  7233.  
  7234.  
  7235. 2413. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  7236.  
  7237.  
  7238. 2414. 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)
  7239.  
  7240.  
  7241. 2415. 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)
  7242.  
  7243.  
  7244. 2416. if Debounces.on == false then break end
  7245.  
  7246.  
  7247. 2417. rs:wait()
  7248.  
  7249.  
  7250. 2418. end
  7251.  
  7252.  
  7253. 2419. --[[for i = 1,20 do
  7254.  
  7255.  
  7256. 2420. 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)
  7257.  
  7258.  
  7259. 2421. 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)
  7260.  
  7261.  
  7262. 2422. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(34),math.rad(0),0), 0.4)
  7263.  
  7264.  
  7265. 2423. 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)
  7266.  
  7267.  
  7268. 2424. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.4)
  7269.  
  7270.  
  7271. 2425. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.4)
  7272.  
  7273.  
  7274. 2426. if Debounces.on == false then break end
  7275.  
  7276.  
  7277. 2427. rs:wait()
  7278.  
  7279.  
  7280. 2428. end]]--
  7281.  
  7282.  
  7283. 2429.pt=Instance.new('Part',torso)
  7284.  
  7285.  
  7286. 2430.pt.Anchored=true
  7287.  
  7288.  
  7289. 2431.pt.CanCollide=false
  7290.  
  7291.  
  7292. 2432.pt.Locked = true
  7293.  
  7294.  
  7295. 2433.pt.FormFactor='Custom'
  7296.  
  7297.  
  7298. 2434.pt.Size=Vector3.new(1,1,1)
  7299.  
  7300.  
  7301. 2435.pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  7302.  
  7303.  
  7304. 2436.pt.Transparency=.6
  7305.  
  7306.  
  7307. 2437.pt.BrickColor=BrickColor.new('Really black')
  7308.  
  7309.  
  7310. 2438.msh=Instance.new('SpecialMesh',pt)
  7311.  
  7312.  
  7313. 2439.msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  7314.  
  7315.  
  7316. 2440.msh.Scale=Vector3.new(8,4,8)
  7317.  
  7318.  
  7319. 2441.pt2=pt:clone()
  7320.  
  7321.  
  7322. 2442.pt2.Parent = torso
  7323.  
  7324.  
  7325. 2443.pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  7326.  
  7327.  
  7328. 2444.pt2.BrickColor=BrickColor.new("Royal purple")
  7329.  
  7330.  
  7331. 2445.msh2=msh:clone()
  7332.  
  7333.  
  7334. 2446.msh2.Parent=pt2
  7335.  
  7336.  
  7337. 2447.msh2.Scale=Vector3.new(10,5,10)
  7338.  
  7339.  
  7340. 2448.
  7341.  
  7342.  
  7343. 2449.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}
  7344.  
  7345.  
  7346. 2450.
  7347.  
  7348.  
  7349. 2451.bl = Instance.new("Part", char)
  7350.  
  7351.  
  7352. 2452.bl.Locked = true
  7353.  
  7354.  
  7355. 2453.bl.Name = "Shell"
  7356.  
  7357.  
  7358. 2454.bl.BrickColor = BrickColor.new("Really black")
  7359.  
  7360.  
  7361. 2455.bl.Anchored = true
  7362.  
  7363.  
  7364. 2456.bl.CanCollide = false
  7365.  
  7366.  
  7367. 2457.bl.Transparency = 0
  7368.  
  7369.  
  7370. 2458.bl.Reflectance = 0
  7371.  
  7372.  
  7373. 2459.bl.BottomSurface = 0
  7374.  
  7375.  
  7376. 2460.bl.TopSurface = 0
  7377.  
  7378.  
  7379. 2461.bl.Shape = 0
  7380.  
  7381.  
  7382. 2462.blm = Instance.new("SpecialMesh",bl)
  7383.  
  7384.  
  7385. 2463.blm.MeshType = "Sphere"
  7386.  
  7387.  
  7388. 2464.blm.Scale = Vector3.new(1,1,1)
  7389.  
  7390.  
  7391. 2465.blm.MeshId = "rbxassetid://9982590"
  7392.  
  7393.  
  7394. 2466.
  7395.  
  7396.  
  7397. 2467. coroutine.resume(coroutine.create(function()
  7398.  
  7399.  
  7400. 2468. for i=1, math.huge, 4 do
  7401.  
  7402.  
  7403. 2469. if Charging == true then
  7404.  
  7405.  
  7406. 2470. rs:wait()
  7407.  
  7408.  
  7409. 2471. bl.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  7410.  
  7411.  
  7412. 2472. blm.Scale = blm.Scale + Vector3.new(0.1, 0.1, 0.1)
  7413.  
  7414.  
  7415. 2473. bl.Transparency = bl.Transparency + 0.005
  7416.  
  7417.  
  7418. 2474. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2),0)
  7419.  
  7420.  
  7421. 2475. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2),0)
  7422.  
  7423.  
  7424. 2476. msh.Scale = msh.Scale + Vector3.new(0.05,0,0.05)
  7425.  
  7426.  
  7427. 2477. msh2.Scale = msh2.Scale + Vector3.new(0.05,0,0.05)
  7428.  
  7429.  
  7430. 2478. elseif Charging == false then break
  7431.  
  7432.  
  7433. 2479. end
  7434.  
  7435.  
  7436. 2480. end
  7437.  
  7438.  
  7439. 2481. end))
  7440.  
  7441.  
  7442. 2482.
  7443.  
  7444.  
  7445. 2483.repeat
  7446.  
  7447.  
  7448. 2484. local p = Instance.new('Part',torso)
  7449.  
  7450.  
  7451. 2485. p.formFactor = 'Custom'
  7452.  
  7453.  
  7454. 2486. p.Size = Vector3.new(1,1,1)
  7455.  
  7456.  
  7457. 2487. p.BrickColor = workspace.Base.BrickColor
  7458.  
  7459.  
  7460. 2488. p.CanCollide = false
  7461.  
  7462.  
  7463. 2489. p.Transparency = 0
  7464.  
  7465.  
  7466. 2490. p.Anchored = true
  7467.  
  7468.  
  7469. 2491. p.Locked=true
  7470.  
  7471.  
  7472. 2492. p.Material = workspace.Base.Material
  7473.  
  7474.  
  7475. 2493. s = math.random(1,40)/10
  7476.  
  7477.  
  7478. 2494. local m = Instance.new("BlockMesh",p)
  7479.  
  7480.  
  7481. 2495. m.Scale = Vector3.new(s,s,s)
  7482.  
  7483.  
  7484. 2496. 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())
  7485.  
  7486.  
  7487. 2497. --[[coroutine.wrap(function()
  7488.  
  7489.  
  7490. 2498. wait(2)
  7491.  
  7492.  
  7493. 2499. while Charging == true do
  7494.  
  7495.  
  7496. 2500. wait(2)
  7497.  
  7498.  
  7499. 2501. GroundWave1()
  7500.  
  7501.  
  7502. 2502. wait(2)
  7503.  
  7504.  
  7505. 2503. end
  7506.  
  7507.  
  7508. 2504. end)()]]--
  7509.  
  7510.  
  7511. 2505. Spawn(function()
  7512.  
  7513.  
  7514. 2506. while rs:wait() do
  7515.  
  7516.  
  7517. 2507. if Charging == true then
  7518.  
  7519.  
  7520. 2508. 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)))
  7521.  
  7522.  
  7523. 2509. 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)))
  7524.  
  7525.  
  7526. 2510. 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))
  7527.  
  7528.  
  7529. 2511. torso.Weld.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(10), math.rad(math.random(-4,4)), math.rad(0))
  7530.  
  7531.  
  7532. 2512. 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)))
  7533.  
  7534.  
  7535. 2513. 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)))
  7536.  
  7537.  
  7538. 2514. elseif Charging == false then break
  7539.  
  7540.  
  7541. 2515. end
  7542.  
  7543.  
  7544. 2516. end
  7545.  
  7546.  
  7547. 2517. end)
  7548.  
  7549.  
  7550. 2518. Spawn(function()
  7551.  
  7552.  
  7553. 2519. while rs:wait() do
  7554.  
  7555.  
  7556. 2520. if p.Transparency >= 1 then p:Destroy() break end
  7557.  
  7558.  
  7559. 2521. p.CFrame = p.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.2,0)
  7560.  
  7561.  
  7562. 2522. p.Transparency = p.Transparency+0.01
  7563.  
  7564.  
  7565. 2523. end
  7566.  
  7567.  
  7568. 2524. end)
  7569.  
  7570.  
  7571. 2525. wait(.3)
  7572.  
  7573.  
  7574. 2526.until Charging == false
  7575.  
  7576.  
  7577. 2527. end
  7578.  
  7579.  
  7580. 2528. end
  7581.  
  7582.  
  7583. 2529. end
  7584.  
  7585.  
  7586. 2530.end)
  7587.  
  7588.  
  7589. 2531.----------------------------------------------------
  7590.  
  7591.  
  7592. 2532.mouse.KeyUp:connect(function(key)
  7593.  
  7594.  
  7595. 2533. if key == "r" then
  7596.  
  7597.  
  7598. 2534. if Charging == true then
  7599.  
  7600.  
  7601. 2535. Charging = false
  7602.  
  7603.  
  7604. 2536. pt:Destroy()
  7605.  
  7606.  
  7607. 2537. pt2:Destroy()
  7608.  
  7609.  
  7610. 2538. bl:Destroy()
  7611.  
  7612.  
  7613. 2539. if Debounces.CanAttack == false then
  7614.  
  7615.  
  7616. 2540. Debounces.CanAttack = true
  7617.  
  7618.  
  7619. 2541. Debounces.NoIdl = false
  7620.  
  7621.  
  7622. 2542. Debounces.on = false
  7623.  
  7624.  
  7625. 2543. end
  7626.  
  7627.  
  7628. 2544. end
  7629.  
  7630.  
  7631. 2545. end
  7632.  
  7633.  
  7634. 2546.end)
  7635.  
  7636.  
  7637. 2547.----------------------------------------------------
  7638.  
  7639.  
  7640. 2548.mouse.KeyDown:connect(function(key)
  7641.  
  7642.  
  7643. 2549. if key == "g" then
  7644.  
  7645.  
  7646. 2550. if Debounces.CanAttack == true then
  7647.  
  7648.  
  7649. 2551. Debounces.CanAttack = false
  7650.  
  7651.  
  7652. 2552. Debounces.NoIdl = true
  7653.  
  7654.  
  7655. 2553. Debounces.on = true
  7656.  
  7657.  
  7658. 2554. local shell = Instance.new("Part",torso)
  7659.  
  7660.  
  7661. 2555. shell.BrickColor = BrickColor.new("Royal purple")
  7662.  
  7663.  
  7664. 2556. shell.Anchored = true
  7665.  
  7666.  
  7667. 2557. shell.CanCollide = false
  7668.  
  7669.  
  7670. 2558. shell.Locked = true
  7671.  
  7672.  
  7673. 2559. shell.TopSurface = "SmoothNoOutlines"
  7674.  
  7675.  
  7676. 2560. shell.BottomSurface = "SmoothNoOutlines"
  7677.  
  7678.  
  7679. 2561. shell.Size = Vector3.new(1,1,1)
  7680.  
  7681.  
  7682. 2562. shellm = Instance.new("SpecialMesh",shell)
  7683.  
  7684.  
  7685. 2563. shellm.MeshType = "Sphere"
  7686.  
  7687.  
  7688. 2564. shellm.Scale = Vector3.new(1,1,1)
  7689.  
  7690.  
  7691. 2565. local shell2 = Instance.new("Part",torso)
  7692.  
  7693.  
  7694. 2566. shell2.BrickColor = BrickColor.new("Royal purple")
  7695.  
  7696.  
  7697. 2567. shell2.Anchored = true
  7698.  
  7699.  
  7700. 2568. shell2.CanCollide = false
  7701.  
  7702.  
  7703. 2569. shell2.Locked = true
  7704.  
  7705.  
  7706. 2570. shell2.TopSurface = "SmoothNoOutlines"
  7707.  
  7708.  
  7709. 2571. shell2.BottomSurface = "SmoothNoOutlines"
  7710.  
  7711.  
  7712. 2572. shell2.Size = Vector3.new(1,1,1)
  7713.  
  7714.  
  7715. 2573. shellm2 = Instance.new("SpecialMesh",shell2)
  7716.  
  7717.  
  7718. 2574. shellm2.MeshType = "Sphere"
  7719.  
  7720.  
  7721. 2575. shellm2.Scale = Vector3.new(1,1,1)
  7722.  
  7723.  
  7724. 2576.
  7725.  
  7726.  
  7727. 2577.function FindNearestTorso(Position,Distance,SinglePlayer)
  7728.  
  7729.  
  7730. 2578. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  7731.  
  7732.  
  7733. 2579. local List = {}
  7734.  
  7735.  
  7736. 2580. for i,v in pairs(workspace:GetChildren())do
  7737.  
  7738.  
  7739. 2581. if v:IsA("Model")then
  7740.  
  7741.  
  7742. 2582. if v:findFirstChild("Torso")then
  7743.  
  7744.  
  7745. 2583. if v ~= char then
  7746.  
  7747.  
  7748. 2584. if(v.Torso.Position -Position).magnitude <= Distance then
  7749.  
  7750.  
  7751. 2585. table.insert(List,v)
  7752.  
  7753.  
  7754. 2586. end
  7755.  
  7756.  
  7757. 2587. end
  7758.  
  7759.  
  7760. 2588. end
  7761.  
  7762.  
  7763. 2589. end
  7764.  
  7765.  
  7766. 2590. end
  7767.  
  7768.  
  7769. 2591. return List
  7770.  
  7771.  
  7772. 2592.end
  7773.  
  7774.  
  7775. 2593.
  7776.  
  7777.  
  7778. 2594.Shell = function()
  7779.  
  7780.  
  7781. 2595.local X = Instance.new("Part",char)
  7782.  
  7783.  
  7784. 2596.local O = Instance.new("ObjectValue",X)
  7785.  
  7786.  
  7787. 2597. O.Name = "creator"
  7788.  
  7789.  
  7790. 2598. X.Locked = true
  7791.  
  7792.  
  7793. 2599. X.Name = "Shell"
  7794.  
  7795.  
  7796. 2600. X.Anchored = false
  7797.  
  7798.  
  7799. 2601. X.CanCollide = false
  7800.  
  7801.  
  7802. 2602. X.Transparency = 0
  7803.  
  7804.  
  7805. 2603. X.Reflectance = 0
  7806.  
  7807.  
  7808. 2604. X.BottomSurface = 0
  7809.  
  7810.  
  7811. 2605. X.TopSurface = 0
  7812.  
  7813.  
  7814. 2606. X.Shape = 0
  7815.  
  7816.  
  7817. 2607. local V = Instance.new("ObjectValue",X)
  7818.  
  7819.  
  7820. 2608. V.Value = char
  7821.  
  7822.  
  7823. 2609. V.Name = "creator"
  7824.  
  7825.  
  7826. 2610. X.BrickColor = BrickColor.new("Royal purple")
  7827.  
  7828.  
  7829. 2611. X.Size = Vector3.new(1,1,1)
  7830.  
  7831.  
  7832. 2612. --X.Material = "Neon"
  7833.  
  7834.  
  7835. 2613. local Z = Instance.new("SpecialMesh",X)
  7836.  
  7837.  
  7838. 2614. Z.MeshType = "Sphere"
  7839.  
  7840.  
  7841. 2615. Z.Scale = Vector3.new(1,1,1)
  7842.  
  7843.  
  7844. 2616. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  7845.  
  7846.  
  7847. 2617. local bv = Instance.new("BodyVelocity",X)
  7848.  
  7849.  
  7850. 2618. bv.maxForce = Vector3.new(99999,99999,99999)
  7851.  
  7852.  
  7853. 2619. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  7854.  
  7855.  
  7856. 2620. bv.velocity = root.CFrame.lookVector*65
  7857.  
  7858.  
  7859. 2621.Explode = X.Touched:connect(function(hit)
  7860.  
  7861.  
  7862. 2622. if hit ~= char and hit.Name ~= "Shell" and hit:IsA("Part") or hit:IsA("BasePart}") then
  7863.  
  7864.  
  7865. 2623. local cf = X.CFrame
  7866.  
  7867.  
  7868. 2624. bv:Destroy()
  7869.  
  7870.  
  7871. 2625. X.Anchored = true
  7872.  
  7873.  
  7874. 2626. Z:Remove()
  7875.  
  7876.  
  7877. 2627. Explode:disconnect()
  7878.  
  7879.  
  7880. 2628. X.Size = Vector3.new(3,3,3)
  7881.  
  7882.  
  7883. 2629. X.Touched:connect(function(hit) end)
  7884.  
  7885.  
  7886. 2630. X.CanCollide = false
  7887.  
  7888.  
  7889. 2631. for i,v in pairs(FindNearestTorso(X.CFrame.p,40))do
  7890.  
  7891.  
  7892. 2632. if v:FindFirstChild('Humanoid') then
  7893.  
  7894.  
  7895. 2633. v.Humanoid:TakeDamage(math.random(6,12))
  7896.  
  7897.  
  7898. 2634. end
  7899.  
  7900.  
  7901. 2635. end
  7902.  
  7903.  
  7904. 2636. for i = 1, (40) do rs:wait()
  7905.  
  7906.  
  7907. 2637. X.Transparency = X.Transparency + (1/40)
  7908.  
  7909.  
  7910. 2638. X.Size = X.Size + Vector3.new(1,1,1)
  7911.  
  7912.  
  7913. 2639. X.CFrame = cf
  7914.  
  7915.  
  7916. 2640. end
  7917.  
  7918.  
  7919. 2641. X:Destroy()
  7920.  
  7921.  
  7922. 2642. end
  7923.  
  7924.  
  7925. 2643. end)
  7926.  
  7927.  
  7928. 2644.end
  7929.  
  7930.  
  7931. 2645. Shell()
  7932.  
  7933.  
  7934. 2646. for i = 1, 10 do
  7935.  
  7936.  
  7937. 2647. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  7938.  
  7939.  
  7940. 2648. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  7941.  
  7942.  
  7943. 2649. 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)
  7944.  
  7945.  
  7946. 2650. 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)
  7947.  
  7948.  
  7949. 2651. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.7)
  7950.  
  7951.  
  7952. 2652. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.7)
  7953.  
  7954.  
  7955. 2653. 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)
  7956.  
  7957.  
  7958. 2654. 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)
  7959.  
  7960.  
  7961. 2655. if Debounces.on == false then break end
  7962.  
  7963.  
  7964. 2656. rs:wait()
  7965.  
  7966.  
  7967. 2657. end
  7968.  
  7969.  
  7970. 2658. Shell()
  7971.  
  7972.  
  7973. 2659. shell.Transparency = 1
  7974.  
  7975.  
  7976. 2660. for i = 1, 10 do
  7977.  
  7978.  
  7979. 2661. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  7980.  
  7981.  
  7982. 2662. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  7983.  
  7984.  
  7985. 2663. 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)
  7986.  
  7987.  
  7988. 2664. 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)
  7989.  
  7990.  
  7991. 2665. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  7992.  
  7993.  
  7994. 2666. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  7995.  
  7996.  
  7997. 2667. 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)
  7998.  
  7999.  
  8000. 2668. 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)
  8001.  
  8002.  
  8003. 2669. if Debounces.on == false then break end
  8004.  
  8005.  
  8006. 2670. rs:wait()
  8007.  
  8008.  
  8009. 2671. end
  8010.  
  8011.  
  8012. 2672. Shell()
  8013.  
  8014.  
  8015. 2673. shell.Transparency = 0
  8016.  
  8017.  
  8018. 2674. shell2.Transparency = 1
  8019.  
  8020.  
  8021. 2675. for i = 1, 10 do
  8022.  
  8023.  
  8024. 2676. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8025.  
  8026.  
  8027. 2677. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8028.  
  8029.  
  8030. 2678. 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)
  8031.  
  8032.  
  8033. 2679. 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)
  8034.  
  8035.  
  8036. 2680. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  8037.  
  8038.  
  8039. 2681. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  8040.  
  8041.  
  8042. 2682. 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)
  8043.  
  8044.  
  8045. 2683. 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)
  8046.  
  8047.  
  8048. 2684. if Debounces.on == false then break end
  8049.  
  8050.  
  8051. 2685. rs:wait()
  8052.  
  8053.  
  8054. 2686. end
  8055.  
  8056.  
  8057. 2687. Shell()
  8058.  
  8059.  
  8060. 2688. shell2.Transparency = 0
  8061.  
  8062.  
  8063. 2689. shell.Transparency = 1
  8064.  
  8065.  
  8066. 2690. for i = 1, 10 do
  8067.  
  8068.  
  8069. 2691. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8070.  
  8071.  
  8072. 2692. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8073.  
  8074.  
  8075. 2693. 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)
  8076.  
  8077.  
  8078. 2694. 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)
  8079.  
  8080.  
  8081. 2695. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  8082.  
  8083.  
  8084. 2696. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  8085.  
  8086.  
  8087. 2697. 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)
  8088.  
  8089.  
  8090. 2698. 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)
  8091.  
  8092.  
  8093. 2699. if Debounces.on == false then break end
  8094.  
  8095.  
  8096. 2700. rs:wait()
  8097.  
  8098.  
  8099. 2701. end
  8100.  
  8101.  
  8102. 2702. Shell()
  8103.  
  8104.  
  8105. 2703. shell.Transparency = 0
  8106.  
  8107.  
  8108. 2704. shell2.Transparency = 1
  8109.  
  8110.  
  8111. 2705. for i = 1, 10 do
  8112.  
  8113.  
  8114. 2706. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8115.  
  8116.  
  8117. 2707. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8118.  
  8119.  
  8120. 2708. 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)
  8121.  
  8122.  
  8123. 2709. 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)
  8124.  
  8125.  
  8126. 2710. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  8127.  
  8128.  
  8129. 2711. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  8130.  
  8131.  
  8132. 2712. 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)
  8133.  
  8134.  
  8135. 2713. 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)
  8136.  
  8137.  
  8138. 2714. if Debounces.on == false then break end
  8139.  
  8140.  
  8141. 2715. rs:wait()
  8142.  
  8143.  
  8144. 2716. end
  8145.  
  8146.  
  8147. 2717. Shell()
  8148.  
  8149.  
  8150. 2718. shell2.Transparency = 0
  8151.  
  8152.  
  8153. 2719. shell.Transparency = 1
  8154.  
  8155.  
  8156. 2720. for i = 1, 10 do
  8157.  
  8158.  
  8159. 2721. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8160.  
  8161.  
  8162. 2722. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8163.  
  8164.  
  8165. 2723. 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)
  8166.  
  8167.  
  8168. 2724. 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)
  8169.  
  8170.  
  8171. 2725. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  8172.  
  8173.  
  8174. 2726. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  8175.  
  8176.  
  8177. 2727. 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)
  8178.  
  8179.  
  8180. 2728. 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)
  8181.  
  8182.  
  8183. 2729. if Debounces.on == false then break end
  8184.  
  8185.  
  8186. 2730. rs:wait()
  8187.  
  8188.  
  8189. 2731. end
  8190.  
  8191.  
  8192. 2732. Shell()
  8193.  
  8194.  
  8195. 2733. shell.Transparency = 0
  8196.  
  8197.  
  8198. 2734. shell2.Transparency = 1
  8199.  
  8200.  
  8201. 2735. for i = 1, 10 do
  8202.  
  8203.  
  8204. 2736. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8205.  
  8206.  
  8207. 2737. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8208.  
  8209.  
  8210. 2738. 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)
  8211.  
  8212.  
  8213. 2739. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.5)
  8214.  
  8215.  
  8216. 2740. 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)
  8217.  
  8218.  
  8219. 2741. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  8220.  
  8221.  
  8222. 2742. 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)
  8223.  
  8224.  
  8225. 2743. 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)
  8226.  
  8227.  
  8228. 2744. if Debounces.on == false then break end
  8229.  
  8230.  
  8231. 2745. rs:wait()
  8232.  
  8233.  
  8234. 2746. end
  8235.  
  8236.  
  8237. 2747. Shell()
  8238.  
  8239.  
  8240. 2748. shell2.Transparency = 0
  8241.  
  8242.  
  8243. 2749. shell.Transparency = 1
  8244.  
  8245.  
  8246. 2750. for i = 1, 10 do
  8247.  
  8248.  
  8249. 2751. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8250.  
  8251.  
  8252. 2752. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8253.  
  8254.  
  8255. 2753. 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)
  8256.  
  8257.  
  8258. 2754. 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)
  8259.  
  8260.  
  8261. 2755. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  8262.  
  8263.  
  8264. 2756. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  8265.  
  8266.  
  8267. 2757. 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)
  8268.  
  8269.  
  8270. 2758. 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)
  8271.  
  8272.  
  8273. 2759. if Debounces.on == false then break end
  8274.  
  8275.  
  8276. 2760. rs:wait()
  8277.  
  8278.  
  8279. 2761. end
  8280.  
  8281.  
  8282. 2762. Shell()
  8283.  
  8284.  
  8285. 2763. shell.Transparency = 0
  8286.  
  8287.  
  8288. 2764. shell2.Transparency = 1
  8289.  
  8290.  
  8291. 2765. for i = 1, 10 do
  8292.  
  8293.  
  8294. 2766. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8295.  
  8296.  
  8297. 2767. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8298.  
  8299.  
  8300. 2768. 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)
  8301.  
  8302.  
  8303. 2769. 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)
  8304.  
  8305.  
  8306. 2770. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  8307.  
  8308.  
  8309. 2771. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  8310.  
  8311.  
  8312. 2772. 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)
  8313.  
  8314.  
  8315. 2773. 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)
  8316.  
  8317.  
  8318. 2774. if Debounces.on == false then break end
  8319.  
  8320.  
  8321. 2775. rs:wait()
  8322.  
  8323.  
  8324. 2776. end
  8325.  
  8326.  
  8327. 2777. Shell()
  8328.  
  8329.  
  8330. 2778. shell2.Transparency = 0
  8331.  
  8332.  
  8333. 2779. shell.Transparency = 1
  8334.  
  8335.  
  8336. 2780. for i = 1, 10 do
  8337.  
  8338.  
  8339. 2781. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8340.  
  8341.  
  8342. 2782. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8343.  
  8344.  
  8345. 2783. 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)
  8346.  
  8347.  
  8348. 2784. 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)
  8349.  
  8350.  
  8351. 2785. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  8352.  
  8353.  
  8354. 2786. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  8355.  
  8356.  
  8357. 2787. 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)
  8358.  
  8359.  
  8360. 2788. 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)
  8361.  
  8362.  
  8363. 2789. if Debounces.on == false then break end
  8364.  
  8365.  
  8366. 2790. rs:wait()
  8367.  
  8368.  
  8369. 2791. end
  8370.  
  8371.  
  8372. 2792. Shell()
  8373.  
  8374.  
  8375. 2793. shell.Transparency = 0
  8376.  
  8377.  
  8378. 2794. shell2.Transparency = 1
  8379.  
  8380.  
  8381. 2795. for i = 1, 10 do
  8382.  
  8383.  
  8384. 2796. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8385.  
  8386.  
  8387. 2797. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8388.  
  8389.  
  8390. 2798. 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)
  8391.  
  8392.  
  8393. 2799. 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)
  8394.  
  8395.  
  8396. 2800. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  8397.  
  8398.  
  8399. 2801. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  8400.  
  8401.  
  8402. 2802. 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)
  8403.  
  8404.  
  8405. 2803. 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)
  8406.  
  8407.  
  8408. 2804. if Debounces.on == false then break end
  8409.  
  8410.  
  8411. 2805. rs:wait()
  8412.  
  8413.  
  8414. 2806. end
  8415.  
  8416.  
  8417. 2807. Shell()
  8418.  
  8419.  
  8420. 2808. shell2.Transparency = 0
  8421.  
  8422.  
  8423. 2809. shell.Transparency = 1
  8424.  
  8425.  
  8426. 2810. for i = 1, 10 do
  8427.  
  8428.  
  8429. 2811. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8430.  
  8431.  
  8432. 2812. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8433.  
  8434.  
  8435. 2813. 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)
  8436.  
  8437.  
  8438. 2814. 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)
  8439.  
  8440.  
  8441. 2815. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  8442.  
  8443.  
  8444. 2816. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  8445.  
  8446.  
  8447. 2817. 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)
  8448.  
  8449.  
  8450. 2818. 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)
  8451.  
  8452.  
  8453. 2819. if Debounces.on == false then break end
  8454.  
  8455.  
  8456. 2820. rs:wait()
  8457.  
  8458.  
  8459. 2821. end
  8460.  
  8461.  
  8462. 2822. Shell()
  8463.  
  8464.  
  8465. 2823. shell.Transparency = 0
  8466.  
  8467.  
  8468. 2824. shell2.Transparency = 1
  8469.  
  8470.  
  8471. 2825. for i = 1, 10 do
  8472.  
  8473.  
  8474. 2826. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8475.  
  8476.  
  8477. 2827. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8478.  
  8479.  
  8480. 2828. 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)
  8481.  
  8482.  
  8483. 2829. 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)
  8484.  
  8485.  
  8486. 2830. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  8487.  
  8488.  
  8489. 2831. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  8490.  
  8491.  
  8492. 2832. 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)
  8493.  
  8494.  
  8495. 2833. 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)
  8496.  
  8497.  
  8498. 2834. if Debounces.on == false then break end
  8499.  
  8500.  
  8501. 2835. rs:wait()
  8502.  
  8503.  
  8504. 2836. end
  8505.  
  8506.  
  8507. 2837. shell.Transparency = 1
  8508.  
  8509.  
  8510. 2838. if Debounces.CanAttack == false then
  8511.  
  8512.  
  8513. 2839. Debounces.CanAttack = true
  8514.  
  8515.  
  8516. 2840. Debounces.NoIdl = false
  8517.  
  8518.  
  8519. 2841. Debounces.on = false
  8520.  
  8521.  
  8522. 2842. end
  8523.  
  8524.  
  8525. 2843. end
  8526.  
  8527.  
  8528. 2844. end
  8529.  
  8530.  
  8531. 2845.end)
  8532.  
  8533.  
  8534. 2846.----------------------------------------------------
  8535.  
  8536.  
  8537. 2847.Search = false
  8538.  
  8539.  
  8540. 2848.mouse.KeyDown:connect(function(key)
  8541.  
  8542.  
  8543. 2849. if key == "n" then
  8544.  
  8545.  
  8546. 2850. if Search == false then
  8547.  
  8548.  
  8549. 2851. Search = true
  8550.  
  8551.  
  8552. 2852. for i,v in pairs(game.Players:getPlayers()) do
  8553.  
  8554.  
  8555. 2853. if v.Name~=char.Name then
  8556.  
  8557.  
  8558. 2854. for j,k in pairs(v.Character:GetChildren()) do
  8559.  
  8560.  
  8561. 2855. if k:IsA("BasePart") and k.Transparency >= 1 then
  8562.  
  8563.  
  8564. 2856. bawx=Instance.new("SelectionBox",cam)
  8565.  
  8566.  
  8567. 2857. bawx.Color = BrickColor.new("Bright red")
  8568.  
  8569.  
  8570. 2858. bawx.Transparency = .5
  8571.  
  8572.  
  8573. 2859. bawx.Adornee = k
  8574.  
  8575.  
  8576. 2860. end
  8577.  
  8578.  
  8579. 2861. end
  8580.  
  8581.  
  8582. 2862. end
  8583.  
  8584.  
  8585. 2863. end
  8586.  
  8587.  
  8588. 2864. elseif Search == true then
  8589.  
  8590.  
  8591. 2865. Search = false
  8592.  
  8593.  
  8594. 2866. for i, v in pairs(cam:GetChildren()) do
  8595.  
  8596.  
  8597. 2867. if v:IsA("SelectionBox") then
  8598.  
  8599.  
  8600. 2868. v:Destroy()
  8601.  
  8602.  
  8603. 2869. end
  8604.  
  8605.  
  8606. 2870. end
  8607.  
  8608.  
  8609. 2871. end
  8610.  
  8611.  
  8612. 2872. end
  8613.  
  8614.  
  8615. 2873.end)
  8616.  
  8617.  
  8618. 2874.----------------------------------------------------
  8619.  
  8620.  
  8621. 2875.Grab = false
  8622.  
  8623.  
  8624. 2876.mouse.KeyDown:connect(function(key)
  8625.  
  8626.  
  8627. 2877. if key == "z" then
  8628.  
  8629.  
  8630. 2878. Debounces.on = true
  8631.  
  8632.  
  8633. 2879. Debounces.NoIdl = true
  8634.  
  8635.  
  8636. 2880. Debounces.ks = true
  8637.  
  8638.  
  8639. 2881. if Grab == false then
  8640.  
  8641.  
  8642. 2882. gp = nil
  8643.  
  8644.  
  8645. 2883. for i = 1, 20 do
  8646.  
  8647.  
  8648. 2884. 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)
  8649.  
  8650.  
  8651. 2885. 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)
  8652.  
  8653.  
  8654. 2886. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  8655.  
  8656.  
  8657. 2887. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  8658.  
  8659.  
  8660. 2888. 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)
  8661.  
  8662.  
  8663. 2889. 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)
  8664.  
  8665.  
  8666. 2890. if Debounces.on == false then break end
  8667.  
  8668.  
  8669. 2891. rs:wait()
  8670.  
  8671.  
  8672. 2892. end
  8673.  
  8674.  
  8675. 2893. con1=larm.Touched:connect(function(hit) -- this is grab
  8676.  
  8677.  
  8678. 2894. ht = hit.Parent
  8679.  
  8680.  
  8681. 2895. hum1=ht:FindFirstChild('Humanoid')
  8682.  
  8683.  
  8684. 2896. if hum1 ~= nil then
  8685.  
  8686.  
  8687. 2897. if Debounces.ks==true then
  8688.  
  8689.  
  8690. 2898. z = Instance.new("Sound",hed)
  8691.  
  8692.  
  8693. 2899. z.SoundId = "rbxassetid://169380525"
  8694.  
  8695.  
  8696. 2900. z.Volume = 1
  8697.  
  8698.  
  8699. 2901. z:Play()
  8700.  
  8701.  
  8702. 2902. Debounces.ks=false
  8703.  
  8704.  
  8705. 2903. end
  8706.  
  8707.  
  8708. 2904. hum1.PlatformStand=true
  8709.  
  8710.  
  8711. 2905. gp = ht
  8712.  
  8713.  
  8714. 2906. Grab = true
  8715.  
  8716.  
  8717. 2907. asd=weld5(root,ht:FindFirstChild("Torso"),CFrame.new(0,0,-2.4),CFrame.new(0,0,0))
  8718.  
  8719.  
  8720. 2908. asd.Parent = larm
  8721.  
  8722.  
  8723. 2909. asd.Name = "asd"
  8724.  
  8725.  
  8726. 2910. asd.C0=asd.C0*CFrame.Angles(math.rad(0),math.rad(180),0)
  8727.  
  8728.  
  8729. 2911. --[[elseif hum1 == nil then
  8730.  
  8731.  
  8732. 2912. con1:disconnect()
  8733.  
  8734.  
  8735. 2913. wait() return]]--
  8736.  
  8737.  
  8738. 2914. end
  8739.  
  8740.  
  8741. 2915. end)
  8742.  
  8743.  
  8744. 2916. for i = 1, 20 do
  8745.  
  8746.  
  8747. 2917. 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)
  8748.  
  8749.  
  8750. 2918. 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)
  8751.  
  8752.  
  8753. 2919. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  8754.  
  8755.  
  8756. 2920. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  8757.  
  8758.  
  8759. 2921. 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)
  8760.  
  8761.  
  8762. 2922. 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)
  8763.  
  8764.  
  8765. 2923. if Debounces.on == false then break end
  8766.  
  8767.  
  8768. 2924. rs:wait()
  8769.  
  8770.  
  8771. 2925. end
  8772.  
  8773.  
  8774. 2926. if hum1 == nil then
  8775.  
  8776.  
  8777. 2927. Debounces.on = false
  8778.  
  8779.  
  8780. 2928. Debounces.NoIdl = false
  8781.  
  8782.  
  8783. 2929. end
  8784.  
  8785.  
  8786. 2930. con1:disconnect()
  8787.  
  8788.  
  8789. 2931. elseif Grab == true then
  8790.  
  8791.  
  8792. 2932. Grab = false
  8793.  
  8794.  
  8795. 2933. Punch()
  8796.  
  8797.  
  8798. 2934. z = Instance.new("Sound",hed)
  8799.  
  8800.  
  8801. 2935. z.SoundId = "rbxassetid://169380525"
  8802.  
  8803.  
  8804. 2936. z.Pitch = ptz[math.random(1,#ptz)]
  8805.  
  8806.  
  8807. 2937. z.Volume = 1
  8808.  
  8809.  
  8810. 2938. z:Play()
  8811.  
  8812.  
  8813. 2939. for i = 1, 10 do
  8814.  
  8815.  
  8816. 2940. 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)
  8817.  
  8818.  
  8819. 2941. 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)
  8820.  
  8821.  
  8822. 2942. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  8823.  
  8824.  
  8825. 2943. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  8826.  
  8827.  
  8828. 2944. 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)
  8829.  
  8830.  
  8831. 2945. 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)
  8832.  
  8833.  
  8834. 2946. if Debounces.on == false then break end
  8835.  
  8836.  
  8837. 2947. rs:wait()
  8838.  
  8839.  
  8840. 2948. end
  8841.  
  8842.  
  8843. 2949. Punch()
  8844.  
  8845.  
  8846. 2950. z = Instance.new("Sound",hed)
  8847.  
  8848.  
  8849. 2951. z.SoundId = "rbxassetid://169380525"
  8850.  
  8851.  
  8852. 2952. z.Pitch = ptz[math.random(1,#ptz)]
  8853.  
  8854.  
  8855. 2953. z.Volume = 1
  8856.  
  8857.  
  8858. 2954. z:Play()
  8859.  
  8860.  
  8861. 2955. for i = 1, 10 do
  8862.  
  8863.  
  8864. 2956. 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)
  8865.  
  8866.  
  8867. 2957. 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)
  8868.  
  8869.  
  8870. 2958. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  8871.  
  8872.  
  8873. 2959. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  8874.  
  8875.  
  8876. 2960. 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)
  8877.  
  8878.  
  8879. 2961. 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)
  8880.  
  8881.  
  8882. 2962. if Debounces.on == false then break end
  8883.  
  8884.  
  8885. 2963. rs:wait()
  8886.  
  8887.  
  8888. 2964. end
  8889.  
  8890.  
  8891. 2965. Punch()
  8892.  
  8893.  
  8894. 2966. z = Instance.new("Sound",hed)
  8895.  
  8896.  
  8897. 2967. z.SoundId = "rbxassetid://169380525"
  8898.  
  8899.  
  8900. 2968. z.Pitch = ptz[math.random(1,#ptz)]
  8901.  
  8902.  
  8903. 2969. z.Volume = 1
  8904.  
  8905.  
  8906. 2970. z:Play()
  8907.  
  8908.  
  8909. 2971. for i = 1, 10 do
  8910.  
  8911.  
  8912. 2972. 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)
  8913.  
  8914.  
  8915. 2973. 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)
  8916.  
  8917.  
  8918. 2974. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  8919.  
  8920.  
  8921. 2975. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  8922.  
  8923.  
  8924. 2976. 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)
  8925.  
  8926.  
  8927. 2977. 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)
  8928.  
  8929.  
  8930. 2978. if Debounces.on == false then break end
  8931.  
  8932.  
  8933. 2979. rs:wait()
  8934.  
  8935.  
  8936. 2980. end
  8937.  
  8938.  
  8939. 2981. Punch()
  8940.  
  8941.  
  8942. 2982. z = Instance.new("Sound",hed)
  8943.  
  8944.  
  8945. 2983. z.SoundId = "rbxassetid://169380525"
  8946.  
  8947.  
  8948. 2984. z.Pitch = ptz[math.random(1,#ptz)]
  8949.  
  8950.  
  8951. 2985. z.Volume = 1
  8952.  
  8953.  
  8954. 2986. z:Play()
  8955.  
  8956.  
  8957. 2987. for i = 1, 10 do
  8958.  
  8959.  
  8960. 2988. 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)
  8961.  
  8962.  
  8963. 2989. 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)
  8964.  
  8965.  
  8966. 2990. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  8967.  
  8968.  
  8969. 2991. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  8970.  
  8971.  
  8972. 2992. 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)
  8973.  
  8974.  
  8975. 2993. 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)
  8976.  
  8977.  
  8978. 2994. if Debounces.on == false then break end
  8979.  
  8980.  
  8981. 2995. rs:wait()
  8982.  
  8983.  
  8984. 2996. end
  8985.  
  8986.  
  8987. 2997. Punch()
  8988.  
  8989.  
  8990. 2998. z = Instance.new("Sound",hed)
  8991.  
  8992.  
  8993. 2999. z.SoundId = "rbxassetid://169380525"
  8994.  
  8995.  
  8996. 3000. z.Pitch = ptz[math.random(1,#ptz)]
  8997.  
  8998.  
  8999. 3001. z.Volume = 1
  9000.  
  9001.  
  9002. 3002. z:Play()
  9003.  
  9004.  
  9005. 3003. for i = 1, 10 do
  9006.  
  9007.  
  9008. 3004. 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)
  9009.  
  9010.  
  9011. 3005. 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)
  9012.  
  9013.  
  9014. 3006. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  9015.  
  9016.  
  9017. 3007. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  9018.  
  9019.  
  9020. 3008. 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)
  9021.  
  9022.  
  9023. 3009. 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)
  9024.  
  9025.  
  9026. 3010. if Debounces.on == false then break end
  9027.  
  9028.  
  9029. 3011. rs:wait()
  9030.  
  9031.  
  9032. 3012. end
  9033.  
  9034.  
  9035. 3013. Punch()
  9036.  
  9037.  
  9038. 3014. z = Instance.new("Sound",hed)
  9039.  
  9040.  
  9041. 3015. z.SoundId = "rbxassetid://169380525"
  9042.  
  9043.  
  9044. 3016. z.Pitch = ptz[math.random(1,#ptz)]
  9045.  
  9046.  
  9047. 3017. z.Volume = 1
  9048.  
  9049.  
  9050. 3018. z:Play()
  9051.  
  9052.  
  9053. 3019. for i = 1, 10 do
  9054.  
  9055.  
  9056. 3020. 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)
  9057.  
  9058.  
  9059. 3021. 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)
  9060.  
  9061.  
  9062. 3022. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  9063.  
  9064.  
  9065. 3023. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  9066.  
  9067.  
  9068. 3024. 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)
  9069.  
  9070.  
  9071. 3025. 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)
  9072.  
  9073.  
  9074. 3026. if Debounces.on == false then break end
  9075.  
  9076.  
  9077. 3027. rs:wait()
  9078.  
  9079.  
  9080. 3028. end
  9081.  
  9082.  
  9083. 3029. Punch()
  9084.  
  9085.  
  9086. 3030. z = Instance.new("Sound",hed)
  9087.  
  9088.  
  9089. 3031. z.SoundId = "rbxassetid://169380525"
  9090.  
  9091.  
  9092. 3032. z.Pitch = ptz[math.random(1,#ptz)]
  9093.  
  9094.  
  9095. 3033. z.Volume = 1
  9096.  
  9097.  
  9098. 3034. z:Play()
  9099.  
  9100.  
  9101. 3035. for i = 1, 10 do
  9102.  
  9103.  
  9104. 3036. 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)
  9105.  
  9106.  
  9107. 3037. 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)
  9108.  
  9109.  
  9110. 3038. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  9111.  
  9112.  
  9113. 3039. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  9114.  
  9115.  
  9116. 3040. 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)
  9117.  
  9118.  
  9119. 3041. 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)
  9120.  
  9121.  
  9122. 3042. if Debounces.on == false then break end
  9123.  
  9124.  
  9125. 3043. rs:wait()
  9126.  
  9127.  
  9128. 3044. end
  9129.  
  9130.  
  9131. 3045. Punch()
  9132.  
  9133.  
  9134. 3046. z = Instance.new("Sound",hed)
  9135.  
  9136.  
  9137. 3047. z.SoundId = "rbxassetid://169380525"
  9138.  
  9139.  
  9140. 3048. z.Pitch = ptz[math.random(1,#ptz)]
  9141.  
  9142.  
  9143. 3049. z.Volume = 1
  9144.  
  9145.  
  9146. 3050. z:Play()
  9147.  
  9148.  
  9149. 3051. for i = 1, 10 do
  9150.  
  9151.  
  9152. 3052. 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)
  9153.  
  9154.  
  9155. 3053. 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)
  9156.  
  9157.  
  9158. 3054. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  9159.  
  9160.  
  9161. 3055. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  9162.  
  9163.  
  9164. 3056. 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)
  9165.  
  9166.  
  9167. 3057. 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)
  9168.  
  9169.  
  9170. 3058. if Debounces.on == false then break end
  9171.  
  9172.  
  9173. 3059. rs:wait()
  9174.  
  9175.  
  9176. 3060. end
  9177.  
  9178.  
  9179. 3061. Punch()
  9180.  
  9181.  
  9182. 3062. z = Instance.new("Sound",hed)
  9183.  
  9184.  
  9185. 3063. z.SoundId = "rbxassetid://169380525"
  9186.  
  9187.  
  9188. 3064. z.Pitch = ptz[math.random(1,#ptz)]
  9189.  
  9190.  
  9191. 3065. z.Volume = 1
  9192.  
  9193.  
  9194. 3066. z:Play()
  9195.  
  9196.  
  9197. 3067. for i = 1, 10 do
  9198.  
  9199.  
  9200. 3068. 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)
  9201.  
  9202.  
  9203. 3069. 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)
  9204.  
  9205.  
  9206. 3070. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  9207.  
  9208.  
  9209. 3071. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  9210.  
  9211.  
  9212. 3072. 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)
  9213.  
  9214.  
  9215. 3073. 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)
  9216.  
  9217.  
  9218. 3074. if Debounces.on == false then break end
  9219.  
  9220.  
  9221. 3075. rs:wait()
  9222.  
  9223.  
  9224. 3076. end
  9225.  
  9226.  
  9227. 3077. Punch()
  9228.  
  9229.  
  9230. 3078. z = Instance.new("Sound",hed)
  9231.  
  9232.  
  9233. 3079. z.SoundId = "rbxassetid://169380525"
  9234.  
  9235.  
  9236. 3080. z.Pitch = ptz[math.random(1,#ptz)]
  9237.  
  9238.  
  9239. 3081. z.Volume = 1
  9240.  
  9241.  
  9242. 3082. z:Play()
  9243.  
  9244.  
  9245. 3083. for i = 1, 10 do
  9246.  
  9247.  
  9248. 3084. 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)
  9249.  
  9250.  
  9251. 3085. 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)
  9252.  
  9253.  
  9254. 3086. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  9255.  
  9256.  
  9257. 3087. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  9258.  
  9259.  
  9260. 3088. 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)
  9261.  
  9262.  
  9263. 3089. 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)
  9264.  
  9265.  
  9266. 3090. if Debounces.on == false then break end
  9267.  
  9268.  
  9269. 3091. rs:wait()
  9270.  
  9271.  
  9272. 3092. end
  9273.  
  9274.  
  9275. 3093. Punch()
  9276.  
  9277.  
  9278. 3094. z = Instance.new("Sound",hed)
  9279.  
  9280.  
  9281. 3095. z.SoundId = "rbxassetid://169380525"
  9282.  
  9283.  
  9284. 3096. z.Pitch = ptz[math.random(1,#ptz)]
  9285.  
  9286.  
  9287. 3097. z.Volume = 1
  9288.  
  9289.  
  9290. 3098. z:Play()
  9291.  
  9292.  
  9293. 3099. for i = 1, 10 do
  9294.  
  9295.  
  9296. 3100. 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)
  9297.  
  9298.  
  9299. 3101. 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)
  9300.  
  9301.  
  9302. 3102. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  9303.  
  9304.  
  9305. 3103. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  9306.  
  9307.  
  9308. 3104. 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)
  9309.  
  9310.  
  9311. 3105. 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)
  9312.  
  9313.  
  9314. 3106. if Debounces.on == false then break end
  9315.  
  9316.  
  9317. 3107. rs:wait()
  9318.  
  9319.  
  9320. 3108. end
  9321.  
  9322.  
  9323. 3109. Punch()
  9324.  
  9325.  
  9326. 3110. z = Instance.new("Sound",hed)
  9327.  
  9328.  
  9329. 3111. z.SoundId = "rbxassetid://169380525"
  9330.  
  9331.  
  9332. 3112. z.Pitch = ptz[math.random(1,#ptz)]
  9333.  
  9334.  
  9335. 3113. z.Volume = 1
  9336.  
  9337.  
  9338. 3114. z:Play()
  9339.  
  9340.  
  9341. 3115. for i = 1, 10 do
  9342.  
  9343.  
  9344. 3116. 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)
  9345.  
  9346.  
  9347. 3117. 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)
  9348.  
  9349.  
  9350. 3118. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  9351.  
  9352.  
  9353. 3119. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  9354.  
  9355.  
  9356. 3120. 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)
  9357.  
  9358.  
  9359. 3121. 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)
  9360.  
  9361.  
  9362. 3122. if Debounces.on == false then break end
  9363.  
  9364.  
  9365. 3123. rs:wait()
  9366.  
  9367.  
  9368. 3124. end
  9369.  
  9370.  
  9371. 3125. con1:disconnect()
  9372.  
  9373.  
  9374. 3126. Debounces.on = false
  9375.  
  9376.  
  9377. 3127. Debounces.NoIdl = false
  9378.  
  9379.  
  9380. 3128. if gp ~= nil then
  9381.  
  9382.  
  9383. 3129. gp:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 140
  9384.  
  9385.  
  9386. 3130. for i,v in pairs(larm:GetChildren()) do
  9387.  
  9388.  
  9389. 3131. if v.Name == "asd" and v:IsA("Weld") then
  9390.  
  9391.  
  9392. 3132. v:Remove()
  9393.  
  9394.  
  9395. 3133. end
  9396.  
  9397.  
  9398. 3134. end
  9399.  
  9400.  
  9401. 3135. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  9402.  
  9403.  
  9404. 3136. bv.maxForce = Vector3.new(400000, 400000, 400000)
  9405.  
  9406.  
  9407. 3137. bv.P = 125000
  9408.  
  9409.  
  9410. 3138. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  9411.  
  9412.  
  9413. 3139. hum1=nil
  9414.  
  9415.  
  9416. 3140. ht=nil
  9417.  
  9418.  
  9419. 3141. Debounces.on = false
  9420.  
  9421.  
  9422. 3142. Debounces.NoIdl = false
  9423.  
  9424.  
  9425. 3143. elseif ht == nil then wait()
  9426.  
  9427.  
  9428. 3144. Grab = false
  9429.  
  9430.  
  9431. 3145. Debounces.on = false
  9432.  
  9433.  
  9434. 3146. Debounces.NoIdl = false
  9435.  
  9436.  
  9437. 3147. end
  9438.  
  9439.  
  9440. 3148. end
  9441.  
  9442.  
  9443. 3149. end
  9444.  
  9445.  
  9446. 3150.end)
  9447.  
  9448.  
  9449. 3151.----------------------------------------------------
  9450.  
  9451.  
  9452. 3152.mouse.KeyDown:connect(function(key)
  9453.  
  9454.  
  9455. 3153. if string.byte(key) == 52 then
  9456.  
  9457.  
  9458. 3154. char.Humanoid.WalkSpeed = 60
  9459.  
  9460.  
  9461. 3155. end
  9462.  
  9463.  
  9464. 3156.end)
  9465.  
  9466.  
  9467. 3157.mouse.KeyUp:connect(function(key)
  9468.  
  9469.  
  9470. 3158. if string.byte(key) == 52 then
  9471.  
  9472.  
  9473. 3159. char.Humanoid.WalkSpeed = 8
  9474.  
  9475.  
  9476. 3160. end
  9477.  
  9478.  
  9479. 3161.end)
  9480.  
  9481.  
  9482. 3162.-------------------------------
  9483.  
  9484.  
  9485. 3163.local animpose = "Idle"
  9486.  
  9487.  
  9488. 3164.local lastanimpose = "Idle"
  9489.  
  9490.  
  9491. 3165.local sine = 0
  9492.  
  9493.  
  9494. 3166.local change = 1
  9495.  
  9496.  
  9497. 3167.local val = 0
  9498.  
  9499.  
  9500. 3168.local ffing = false
  9501.  
  9502.  
  9503. 3169.-------------------------------
  9504.  
  9505.  
  9506. 3170.game:GetService("RunService").RenderStepped:connect(function()
  9507.  
  9508.  
  9509. 3171.--[[if char.Humanoid.Jump == true then
  9510.  
  9511.  
  9512. 3172.jump = true
  9513.  
  9514.  
  9515. 3173.else
  9516.  
  9517.  
  9518. 3174.jump = false
  9519.  
  9520.  
  9521. 3175.end]]
  9522.  
  9523.  
  9524. 3176.char.Humanoid.FreeFalling:connect(function(f)
  9525.  
  9526.  
  9527. 3177.if f then
  9528.  
  9529.  
  9530. 3178.ffing = true
  9531.  
  9532.  
  9533. 3179.else
  9534.  
  9535.  
  9536. 3180.ffing = false
  9537.  
  9538.  
  9539. 3181.end
  9540.  
  9541.  
  9542. 3182.end)
  9543.  
  9544.  
  9545. 3183.sine = sine + change
  9546.  
  9547.  
  9548. 3184.if jumpn == true then
  9549.  
  9550.  
  9551. 3185.animpose = "Jumping"
  9552.  
  9553.  
  9554. 3186.elseif ffing == true then
  9555.  
  9556.  
  9557. 3187.animpose = "Freefalling"
  9558.  
  9559.  
  9560. 3188.elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  9561.  
  9562.  
  9563. 3189.animpose = "Idle"
  9564.  
  9565.  
  9566. 3190.elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  9567.  
  9568.  
  9569. 3191.animpose = "Walking"
  9570.  
  9571.  
  9572. 3192.elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  9573.  
  9574.  
  9575. 3193.animpose = "Running"
  9576.  
  9577.  
  9578. 3194.end
  9579.  
  9580.  
  9581. 3195.if animpose ~= lastanimpose then
  9582.  
  9583.  
  9584. 3196.sine = 0
  9585.  
  9586.  
  9587. 3197.if Debounces.NoIdl == false then
  9588.  
  9589.  
  9590. 3198.if animpose == "Idle" then
  9591.  
  9592.  
  9593. 3199.for i = 1, 2 do
  9594.  
  9595.  
  9596. 3200.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)
  9597.  
  9598.  
  9599. 3201.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)
  9600.  
  9601.  
  9602. 3202.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  9603.  
  9604.  
  9605. 3203.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  9606.  
  9607.  
  9608. 3204.lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  9609.  
  9610.  
  9611. 3205.rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  9612.  
  9613.  
  9614. 3206.end
  9615.  
  9616.  
  9617. 3207.elseif animpose == "Walking" then
  9618.  
  9619.  
  9620. 3208.for i = 1, 2 do
  9621.  
  9622.  
  9623. 3209.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)
  9624.  
  9625.  
  9626. 3210.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)
  9627.  
  9628.  
  9629. 3211.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  9630.  
  9631.  
  9632. 3212.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  9633.  
  9634.  
  9635. 3213.lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  9636.  
  9637.  
  9638. 3214.rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  9639.  
  9640.  
  9641. 3215.end
  9642.  
  9643.  
  9644. 3216.elseif animpose == "Running" then
  9645.  
  9646.  
  9647. 3217.for i = 1, 2 do
  9648.  
  9649.  
  9650. 3218.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)
  9651.  
  9652.  
  9653. 3219.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)
  9654.  
  9655.  
  9656. 3220.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10),0,0), 0.4)
  9657.  
  9658.  
  9659. 3221.torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20),0, math.rad(0)), 0.4)
  9660.  
  9661.  
  9662. 3222.lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-7)), 0.4)
  9663.  
  9664.  
  9665. 3223.rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(7)), 0.4)
  9666.  
  9667.  
  9668. 3224.wait()
  9669.  
  9670.  
  9671. 3225.end
  9672.  
  9673.  
  9674. 3226.end
  9675.  
  9676.  
  9677. 3227.else
  9678.  
  9679.  
  9680. 3228.end
  9681.  
  9682.  
  9683. 3229.end
  9684.  
  9685.  
  9686. 3230.lastanimpose = animpose
  9687.  
  9688.  
  9689. 3231.if Debounces.NoIdl == false then
  9690.  
  9691.  
  9692. 3232.if animpose == "Idle" then
  9693.  
  9694.  
  9695. 3233.change = 0.5
  9696.  
  9697.  
  9698. 3234.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)
  9699.  
  9700.  
  9701. 3235.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)
  9702.  
  9703.  
  9704. 3236.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)
  9705.  
  9706.  
  9707. 3237.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)
  9708.  
  9709.  
  9710. 3238.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)
  9711.  
  9712.  
  9713. 3239.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)
  9714.  
  9715.  
  9716. 3240.elseif animpose == "Walking" then
  9717.  
  9718.  
  9719. 3241.change = 1
  9720.  
  9721.  
  9722. 3242.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)
  9723.  
  9724.  
  9725. 3243.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)
  9726.  
  9727.  
  9728. 3244.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  9729.  
  9730.  
  9731. 3245.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)
  9732.  
  9733.  
  9734. 3246.lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  9735.  
  9736.  
  9737. 3247.rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  9738.  
  9739.  
  9740. 3248.elseif animpose == "Running" then
  9741.  
  9742.  
  9743. 3249.change = 1
  9744.  
  9745.  
  9746. 3250.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)
  9747.  
  9748.  
  9749. 3251.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)
  9750.  
  9751.  
  9752. 3252.hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  9753.  
  9754.  
  9755. 3253.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)
  9756.  
  9757.  
  9758. 3254.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)
  9759.  
  9760.  
  9761. 3255.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)
  9762.  
  9763.  
  9764. 3256.end
  9765.  
  9766.  
  9767. 3257.end
  9768.  
  9769.  
  9770. 3258.end)
  9771.  
  9772.  
  9773. 3259.
  9774.  
  9775.  
  9776. 3260.hum.MaxHealth = 9001
  9777.  
  9778.  
  9779. 3261.wait(3)
  9780.  
  9781.  
  9782. 3262.hum.Health = 9001
  9783.  
  9784.  
  9785. 3263.
  9786.  
  9787.  
  9788. 3264.function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module
  9789.  
  9790.  
  9791. 3265. --[[Part0 = Vector3 (Start pos)
  9792.  
  9793.  
  9794. 3266. Part1 = Vector3 (End pos)
  9795.  
  9796.  
  9797. 3267. Times = number (Amount of lightning parts)
  9798.  
  9799.  
  9800. 3268. Offset = number (Offset)
  9801.  
  9802.  
  9803. 3269. Color = color (brickcolor value)
  9804.  
  9805.  
  9806. 3270. Thickness = number (thickness)
  9807.  
  9808.  
  9809. 3271. Trans = number (transparency)
  9810.  
  9811.  
  9812. 3272. ]]--
  9813.  
  9814.  
  9815. 3273. local magz = (Part0 - Part1).magnitude
  9816.  
  9817.  
  9818. 3274. local curpos = Part0
  9819.  
  9820.  
  9821. 3275. local trz = {-Offset,Offset}
  9822.  
  9823.  
  9824. 3276. for i=1,Times do
  9825.  
  9826.  
  9827. 3277. local li = Instance.new("Part", torso)
  9828.  
  9829.  
  9830. 3278. li.Name = "Lightning"
  9831.  
  9832.  
  9833. 3279. li.TopSurface =0
  9834.  
  9835.  
  9836. 3280. li.Material = "Neon"
  9837.  
  9838.  
  9839. 3281. li.BottomSurface = 0
  9840.  
  9841.  
  9842. 3282. li.Anchored = true
  9843.  
  9844.  
  9845. 3283. li.Locked = true
  9846.  
  9847.  
  9848. 3284. li.Transparency = Trans or 0.4
  9849.  
  9850.  
  9851. 3285. li.BrickColor = BrickColor.new(Color)
  9852.  
  9853.  
  9854. 3286. li.formFactor = "Custom"
  9855.  
  9856.  
  9857. 3287. li.CanCollide = false
  9858.  
  9859.  
  9860. 3288. li.Size = Vector3.new(Thickness,Thickness,magz/Times)
  9861.  
  9862.  
  9863. 3289. local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  9864.  
  9865.  
  9866. 3290. local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
  9867.  
  9868.  
  9869. 3291. if Times == i then
  9870.  
  9871.  
  9872. 3292. local magz2 = (curpos - Part1).magnitude
  9873.  
  9874.  
  9875. 3293. li.Size = Vector3.new(Thickness,Thickness,magz2)
  9876.  
  9877.  
  9878. 3294. li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
  9879.  
  9880.  
  9881. 3295. else
  9882.  
  9883.  
  9884. 3296. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  9885.  
  9886.  
  9887. 3297. end
  9888.  
  9889.  
  9890. 3298. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
  9891.  
  9892.  
  9893. 3299. game.Debris:AddItem(li,.1)
  9894.  
  9895.  
  9896. 3300. end
  9897.  
  9898.  
  9899. 3301.end
  9900.  
  9901.  
  9902. 3302.
  9903.  
  9904.  
  9905. 3303.BodyParts = {} -- Parts to emit lightning effects from
  9906.  
  9907.  
  9908. 3304.for _, v in pairs(char:GetChildren()) do
  9909.  
  9910.  
  9911. 3305. if v:IsA("Part") then
  9912.  
  9913.  
  9914. 3306. table.insert(BodyParts, v)
  9915.  
  9916.  
  9917. 3307. end
  9918.  
  9919.  
  9920. 3308.end
  9921.  
  9922.  
  9923. 3309.
  9924.  
  9925.  
  9926. 3310.Bounding = {} -- Calculate the bounding boxes
  9927.  
  9928.  
  9929. 3311.for _, v in pairs(BodyParts) do
  9930.  
  9931.  
  9932. 3312. local temp = {X=nil, Y=nil, Z=nil}
  9933.  
  9934.  
  9935. 3313. temp.X = v.Size.X/2 * 10
  9936.  
  9937.  
  9938. 3314. temp.Y = v.Size.Y/2 * 10
  9939.  
  9940.  
  9941. 3315. temp.Z = v.Size.Z/2 * 10
  9942.  
  9943.  
  9944. 3316. Bounding[v.Name] = temp
  9945.  
  9946.  
  9947. 3317. --table.insert(Bounding, v.Name, temp)
  9948.  
  9949.  
  9950. 3318.end
  9951.  
  9952.  
  9953. 3319.
  9954.  
  9955.  
  9956. 3320.while wait(math.random(1,10)/10) do -- Emit the Lightning effects randomly
  9957.  
  9958.  
  9959. 3321. local Body1 = BodyParts[math.random(#BodyParts)]
  9960.  
  9961.  
  9962. 3322. local Body2 = BodyParts[math.random(#BodyParts)]
  9963.  
  9964.  
  9965. 3323. local Pos1 = Vector3.new(
  9966.  
  9967.  
  9968. 3324. math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/10,
  9969.  
  9970.  
  9971. 3325. math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/10,
  9972.  
  9973.  
  9974. 3326. math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/10
  9975.  
  9976.  
  9977. 3327.)
  9978.  
  9979.  
  9980. 3328. local Pos2 = Vector3.new(
  9981.  
  9982.  
  9983. 3329. math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/10,
  9984.  
  9985.  
  9986. 3330. math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/10,
  9987.  
  9988.  
  9989. 3331. math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/10
  9990.  
  9991.  
  9992. 3332.)
  9993.  
  9994.  
  9995. 3333. local SPos1 = Body1.Position + Pos1
  9996.  
  9997.  
  9998. 3334. local SPos2 = Body2.Position + Pos2
  9999.  
  10000.  
  10001. 3335. Lightning(SPos1, SPos2, 4, 3, "Bright blue", .3, .56)
  10002.  
  10003.  
  10004. 3336.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement