Advertisement
afasfa

Untitled

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