Advertisement
Guest User

Untitled

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