Advertisement
skrttlz

Serak

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