Advertisement
Disko

Untitled

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