Advertisement
Ninja_Camper

infinite laser

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