Advertisement
Ban43_GodOfEdits

test hulk

Aug 25th, 2018
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 100.46 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,Mouse,mouse,UserInputService,ContextActionService = owner
  4. local RealPlayer = Player
  5. do print("FE Compatibility code by Mokiros")local a=RealPlayer;script.Parent=a.Character;local b=Instance.new("RemoteEvent")b.Name="UserInput_Event"local function c()local d={_fakeEvent=true,Functions={},Connect=function(self,e)table.insert(self.Functions,e)end}d.connect=d.Connect;return d end;local f={Target=nil,Hit=CFrame.new(),KeyUp=c(),KeyDown=c(),Button1Up=c(),Button1Down=c(),Button2Up=c(),Button2Down=c()}local g={InputBegan=c(),InputEnded=c()}local CAS={Actions={},BindAction=function(self,h,i,j,...)CAS.Actions[h]=i and{Name=h,Function=i,Keys={...}}or nil end}CAS.UnbindAction=CAS.BindAction;local function k(self,l,...)local d=f[l]if d and d._fakeEvent then for m,e in pairs(d.Functions)do e(...)end end end;f.TrigEvent=k;g.TrigEvent=k;b.OnServerEvent:Connect(function(n,o)if n~=a then return end;f.Target=o.Target;f.Hit=o.Hit;if not o.isMouse then local p=o.UserInputState==Enum.UserInputState.Begin;if o.UserInputType==Enum.UserInputType.MouseButton1 then return f:TrigEvent(p and"Button1Down"or"Button1Up")end;if o.UserInputType==Enum.UserInputType.MouseButton2 then return f:TrigEvent(p and"Button2Down"or"Button2Up")end;for m,d in pairs(CAS.Actions)do for m,q in pairs(d.Keys)do if q==o.KeyCode then d.Function(d.Name,o.UserInputState,o)end end end;f:TrigEvent(p and"KeyDown"or"KeyUp",o.KeyCode.Name:lower())g:TrigEvent(p and"InputBegan"or"InputEnded",o,false)end end)b.Parent=NLS([==[local a=game:GetService("Players").LocalPlayer;local b=script:WaitForChild("UserInput_Event")local c=a:GetMouse()local d=game:GetService("UserInputService")local e=function(f,g)if g then return end;b:FireServer({KeyCode=f.KeyCode,UserInputType=f.UserInputType,UserInputState=f.UserInputState,Hit=c.Hit,Target=c.Target})end;d.InputBegan:Connect(e)d.InputEnded:Connect(e)local h,i;while wait(1/30)do if h~=c.Hit or i~=c.Target then h,i=c.Hit,c.Target;b:FireServer({isMouse=true,Target=i,Hit=h})end end]==],Player.Character)local r=game;local s={__index=function(self,q)local t=rawget(self,"_RealService")if t then return typeof(t[q])=="function"and function(m,...)return t[q](t,...)end or t[q]end end,__newindex=function(self,q,u)local t=rawget(self,"_RealService")if t then t[q]=u end end}local function v(d,w)d._RealService=typeof(w)=="string"and r:GetService(w)or w;return setmetatable(d,s)end;local x={GetService=function(self,t)return rawget(self,t)or r:GetService(t)end,Players=v({LocalPlayer=v({GetMouse=function(self)return f end},Player)},"Players"),UserInputService=v(g,"UserInputService"),ContextActionService=v(CAS,"ContextActionService"),RunService=v({_btrs={},RenderStepped=r:GetService("RunService").Heartbeat,BindToRenderStep=function(self,h,m,i)self._btrs[h]=self.Heartbeat:Connect(i)end,UnbindFromRenderStep=function(self,h)self._btrs[h]:Disconnect()end},"RunService")}rawset(x.Players,"localPlayer",x.Players.LocalPlayer)x.service=x.GetService;v(x,game)game,owner=x,x.Players.LocalPlayer end
  6.  
  7. -------Radioactive party boi by goodguyaiden-------
  8. local p = game.Players.LocalPlayer
  9. local char = p.Character
  10. local mouse = p:GetMouse()
  11. local larm = char["Left Arm"]
  12. local rarm = char["Right Arm"]
  13. local lleg = char["Left Leg"]
  14. local rleg = char["Right Leg"]
  15. local hed = char.Head
  16. local torso = char.Torso
  17. local hum = char.Humanoid
  18. local cam = game.Workspace.CurrentCamera
  19. local root = char.HumanoidRootPart
  20. local deb = false
  21. local shot = 0
  22. local l = game:GetService("Lighting")
  23. local rs = game:GetService("RunService").RenderStepped
  24. local stanceToggle = "Normal"
  25. local rad = math.rad
  26. local GroundShake = false
  27. local GroundShake2 = false
  28. math.randomseed(os.time())
  29. hum.WalkSpeed = 5
  30. char.Health:Destroy()
  31. hum.MaxHealth = math.huge
  32. wait(0.1)
  33. hum.Health = math.huge
  34. ----------------------------------------------------
  35. Debounces = {
  36. on = false;
  37. ks = false;
  38. CanAttack = true;
  39. CanJoke = true;
  40. NoIdl = false;
  41. Slashing = false;
  42. Slashed = false;
  43. Grabbing = false;
  44. Grabbed = false;
  45. }
  46. local Touche = {char.Name, }
  47. ----------------------------------------------------
  48. function lerp(a, b, t) -- Linear interpolation
  49. return a + (b - a)*t
  50. end
  51.  
  52. function slerp(a, b, t) --Spherical interpolation
  53. dot = a:Dot(b)
  54. if dot > 0.99999 or dot < -0.99999 then
  55. return t <= 0.5 and a or b
  56. else
  57. r = math.acos(dot)
  58. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  59. end
  60. end
  61.  
  62. function matrixInterpolate(a, b, t)
  63. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  64. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  65. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  66. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  67. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  68. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  69. local t = v1:Dot(v2)
  70. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  71. return CFrame.new()
  72. end
  73. return CFrame.new(
  74. v0.x, v0.y, v0.z,
  75. v1.x, v1.y, v1.z,
  76. v2.x, v2.y, v2.z,
  77. v3.x, v3.y, v3.z)
  78. end
  79. ----------------------------------------------------
  80. function genWeld(a,b)
  81. local w = Instance.new("Weld",a)
  82. w.Part0 = a
  83. w.Part1 = b
  84. return w
  85. end
  86. function weld(a, b)
  87. local weld = Instance.new("Weld")
  88. weld.Name = "W"
  89. weld.Part0 = a
  90. weld.Part1 = b
  91. weld.C0 = a.CFrame:inverse() * b.CFrame
  92. weld.Parent = a
  93. return weld;
  94. end
  95. ----------------------------------------------------
  96. function Lerp(c1,c2,al)
  97. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  98. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  99. for i,v in pairs(com1) do
  100. com1[i] = v+(com2[i]-v)*al
  101. end
  102. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  103. end
  104. ----------------------------------------------------
  105. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  106. local wld = Instance.new("Weld", wp1)
  107. wld.Part0 = wp0
  108. wld.Part1 = wp1
  109. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  110. end
  111. ----------------------------------------------------
  112. for i,v in pairs(char:children()) do
  113. if v:IsA("Hat") then
  114. v:Destroy()
  115. end
  116. end
  117. for i,v in pairs(hed:children()) do
  118. if v:IsA("Sound") then
  119. v:Destroy()
  120. end
  121. end
  122. ----------------------------------------------------
  123. function HasntTouched(plrname)
  124. local ret = true
  125. for _, v in pairs(Touche) do
  126. if v == plrname then
  127. ret = false
  128. end
  129. end
  130. return ret
  131. end
  132. ----------------------------------------------------
  133. larm.Size = larm.Size * 2
  134. rarm.Size = rarm.Size * 2
  135. lleg.Size = lleg.Size * 2
  136. rleg.Size = rleg.Size * 2
  137. torso.Size = torso.Size * 2
  138. hed.Size = hed.Size * 2
  139. root.Size = root.Size * 2
  140. ----------------------------------------------------
  141. newWeld(torso, larm, -1.5, 0.5, 0)
  142. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  143. newWeld(torso, rarm, 1.5, 0.5, 0)
  144. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  145. newWeld(torso, hed, 0, 1.5, 0)
  146. newWeld(torso, lleg, -0.5, -1, 0)
  147. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  148. newWeld(torso, rleg, 0.5, -1, 0)
  149. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  150. newWeld(root, torso, 0, -1, 0)
  151. torso.Weld.C1 = CFrame.new(0, -1, 0)
  152. ----------------------------------------------------
  153. z = Instance.new("Sound", char)
  154. z.SoundId = "rbxassetid://457248503"--511077154
  155. z.Looped = true
  156. z.Pitch = 1
  157. z.Volume = 5
  158. wait(.01)
  159. z:Play()
  160. ----------------------------------------------------
  161.  
  162.  
  163. p:ClearCharacterAppearance()
  164. wait(0.1)
  165. p.Character.Head.BrickColor = BrickColor.new("Slime green")
  166. p.Character.Torso.BrickColor = BrickColor.new("Slime green")
  167. p.Character["Right Arm"].BrickColor = BrickColor.new("Slime green")
  168. p.Character["Right Leg"].BrickColor = BrickColor.new("Slime green")
  169. p.Character["Left Leg"].BrickColor = BrickColor.new("Slime green")
  170. p.Character["Left Arm"].BrickColor = BrickColor.new("Slime green")
  171.  
  172.  
  173. p.Character.Head.Material = "Ice"
  174. p.Character.Torso.Material = "Ice"
  175. p.Character["Right Arm"].Material = "Ice"
  176. p.Character["Right Leg"].Material = "Ice"
  177. p.Character["Left Leg"].Material = "Ice"
  178. p.Character["Left Arm"].Material = "Ice"
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185. larm1 = Instance.new("Part",char)
  186. larm1.Transparency = 0.8
  187. larm1.BrickColor = BrickColor.new("Slime green")
  188. larm1.Size = Vector3.new(2.1,4.1,2.1)
  189. larm1.Position = Vector3.new(999,999,999)
  190. larm1.Material = "SmoothPlastic"
  191. larmhold = Instance.new("Weld",char)
  192. larmhold.Part0 = larm
  193. larmhold.Part1 = larm1
  194. larmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  195. rarm1 = Instance.new("Part",char)
  196. rarm1.Transparency = 0.8
  197. rarm1.BrickColor = BrickColor.new("Slime green")
  198. rarm1.Size = Vector3.new(2.1,4.1,2.1)
  199. rarm1.Position = Vector3.new(999,999,999)
  200. rarm1.Material = "SmoothPlastic"
  201. rarmhold = Instance.new("Weld",char)
  202. rarmhold.Part0 = rarm
  203. rarmhold.Part1 = rarm1
  204. rarmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  205. torso1 = Instance.new("Part",char)
  206. torso1.Transparency = 0.8
  207. torso1.BrickColor = BrickColor.new("Slime green")
  208. torso1.Size = Vector3.new(4.1,4.1,2.1)
  209. torso1.Position = Vector3.new(999,999,999)
  210. torso1.Material = "SmoothPlastic"
  211. torsohold = Instance.new("Weld",char)
  212. torsohold.Part0 = torso
  213. torsohold.Part1 = torso1
  214. torsohold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  215. lleg1 = Instance.new("Part",char)
  216. lleg1.Transparency = 0.8
  217. lleg1.BrickColor = BrickColor.new("Slime green")
  218. lleg1.Size = Vector3.new(2.1,4.1,2.1)
  219. lleg1.Position = Vector3.new(999,999,999)
  220. lleg1.Material = "SmoothPlastic"
  221. lleghold = Instance.new("Weld",char)
  222. lleghold.Part0 = lleg
  223. lleghold.Part1 = lleg1
  224. lleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  225. rleg1 = Instance.new("Part",char)
  226. rleg1.Transparency = 0.8
  227. rleg1.BrickColor = BrickColor.new("Slime green")
  228. rleg1.Size = Vector3.new(2.1,4.1,2.1)
  229. rleg1.Position = Vector3.new(999,999,999)
  230. rleg1.Material = "SmoothPlastic"
  231. rleghold = Instance.new("Weld",char)
  232. rleghold.Part0 = rleg
  233. rleghold.Part1 = rleg1
  234. rleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  235. rhed1 = Instance.new("Part",char)
  236. rhed1.Transparency = 0.8
  237. rhed1.BrickColor = BrickColor.new("Slime green")
  238. rhed1.Size = Vector3.new(4.3,2.6,2.6)
  239. rhed1.Position = Vector3.new(999,999,999)
  240. rhed1.Material = "SmoothPlastic"
  241. rhedhold = Instance.new("Weld",char)
  242. rhedhold.Part0 = hed
  243. rhedhold.Part1 = rhed1
  244. rhedhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  245. rhedmesh1 = Instance.new("SpecialMesh",rhed1)
  246. rhedmesh1.MeshType = "Head"
  247. rhedmesh1.Scale = Vector3.new(1,1,1)
  248.  
  249.  
  250.  
  251.  
  252. function BurningEff(part)
  253. local eff1 = Instance.new("ParticleEmitter",part)
  254. eff1.Size = NumberSequence.new(.1)
  255. eff1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  256. eff1.LightEmission = 1
  257. eff1.Lifetime = NumberRange.new(1)
  258. eff1.Speed = NumberRange.new(0)
  259. eff1.Rate = 100
  260. eff1.Texture = "rbxassetid://284205403"
  261. eff1.Acceleration = Vector3.new(0,10,0)
  262. eff1.Color = ColorSequence.new(Color3.new(0,255,0))
  263. local eff2 = Instance.new("ParticleEmitter",part)
  264. eff2.Size = NumberSequence.new(.1)
  265. eff2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  266. eff2.LightEmission = 1
  267. eff2.Lifetime = NumberRange.new(1)
  268. eff2.Speed = NumberRange.new(0)
  269. eff2.Rate = 100
  270. eff2.Texture = "rbxassetid://347504259"
  271. eff2.Acceleration = Vector3.new(0,10,0)
  272. eff2.Color = ColorSequence.new(Color3.new(0,255,0))
  273. local eff3 = Instance.new("ParticleEmitter",part)
  274. eff3.Size = NumberSequence.new(1)
  275. eff3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(1,1)})
  276. eff3.LightEmission = 1
  277. eff3.Lifetime = NumberRange.new(1)
  278. eff3.Speed = NumberRange.new(0)
  279. eff3.Rate = 100
  280. eff3.Texture = "rbxassetid://284205403"
  281. eff3.Acceleration = Vector3.new(0,10,0)
  282. eff3.Color = ColorSequence.new(Color3.new(0,255,0))
  283. end
  284.  
  285. Face = 'rbxassetid://513836869'
  286. local face=hed:FindFirstChild'face'
  287. face.Texture = Face
  288.  
  289. face=Instance.new("Decal",hed)
  290. face.Face="Front"
  291. face.Texture="rbxassetid://513836869"
  292.  
  293. BurningEff(hed)
  294. BurningEff(rarm)
  295. BurningEff(larm)
  296. BurningEff(torso)
  297.  
  298. LightOnBody = Instance.new("PointLight", hed)
  299. LightOnBody.Brightness = 0.8
  300. LightOnBody.Range = 20
  301. LightOnBody.Color = Color3.new(0, 255, 0)
  302.  
  303.  
  304. CV="Pastel blue"
  305.  
  306. local txt = Instance.new("BillboardGui", char)
  307. txt.Adornee = hed
  308. txt.Name = "_status"
  309. txt.Size = UDim2.new(2, 0, 1.2, 0)
  310. txt.StudsOffset = Vector3.new(-9, 8, 0)
  311. local text = Instance.new("TextLabel", txt)
  312. text.Size = UDim2.new(10, 0, 7, 0)
  313. text.FontSize = "Size24"
  314. text.TextScaled = true
  315. text.TextTransparency = 0
  316. text.BackgroundTransparency = 1
  317. text.TextTransparency = 0
  318. text.TextStrokeTransparency = 0
  319. text.Font = "Antique"
  320. text.TextStrokeColor3 = Color3.new(0,255,0)
  321.  
  322. v=Instance.new("Part")
  323. v.Name = "ColorBrick"
  324. v.Parent=p.Character
  325. v.FormFactor="Symmetric"
  326. v.Anchored=true
  327. v.CanCollide=false
  328. v.BottomSurface="Smooth"
  329. v.TopSurface="Smooth"
  330. v.Size=Vector3.new(10,5,3)
  331. v.Transparency=1
  332. v.CFrame=char.Torso.CFrame
  333. v.BrickColor=BrickColor.new(CV)
  334. v.Transparency=1
  335. text.TextColor3 = Color3.new(0,0,0)
  336. v.Shape="Block"
  337. text.Text = "The Hulk"
  338.  
  339.  
  340.  
  341.  
  342. if GroundShake == true then
  343. for i,v in pairs(workspace:GetChildren()) do
  344. if v:IsA("Part") then
  345. if v.Size.x > 150 then
  346. v.CFrame = CFrame.new(v.Position) * CFrame.Angles(rad(math.random(-1,1)),rad(math.random(-1,1)),rad(math.random(-1,1)))
  347. end
  348. end
  349. end
  350.  
  351.  
  352.  
  353.  
  354. end
  355. if GroundShake2 == true then
  356.  
  357. for i,v in pairs(workspace:GetChildren()) do
  358. if v:IsA("Part") then
  359. if v.Size.x > 150 then
  360. v.CFrame = CFrame.new(v.Position) * CFrame.Angles(rad(math.random(-2,2)),rad(math.random(-2,2)),rad(math.random(-2,2)))
  361. end
  362. end
  363. end
  364.  
  365. end
  366.  
  367.  
  368.  
  369. local num = 0
  370.  
  371.  
  372.  
  373. GroundWave2 = function()
  374. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  375. Colors = {"White", "White"}
  376. local wave3 = Instance.new("Part", char)
  377. wave3.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  378. wave3.Anchored = true
  379. wave3.Name = "Wave"
  380. wave3.CanCollide = false
  381. wave3.Locked = true
  382. wave3.Size = Vector3.new(1, 1, 1)
  383. wave3.TopSurface = "Smooth"
  384. wave3.BottomSurface = "Smooth"
  385. wave3.Transparency = 0.35
  386. wave3.CFrame = HandCF
  387. wm1 = Instance.new("SpecialMesh", wave3)
  388. wm1.MeshId = "rbxassetid://3270017"
  389. coroutine.wrap(function()
  390. for i = 1, 30, 1 do
  391. wm1.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  392. wave3.Size = wm1.Scale
  393. wave3.CFrame = HandCF
  394. wave3.Transparency = i/30
  395. wait()
  396. end
  397. wait()
  398. wave3:Destroy()
  399. end)()
  400. end
  401. GroundWave3 = function()
  402. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  403. Colors = {"White", "White"}
  404. local wave2 = Instance.new("Part", char)
  405. wave2.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  406. wave2.Anchored = true
  407. wave2.Name = "Wave"
  408. wave2.CanCollide = false
  409. wave2.Locked = true
  410. wave2.Size = Vector3.new(1, 1, 1)
  411. wave2.TopSurface = "Smooth"
  412. wave2.BottomSurface = "Smooth"
  413. wave2.Transparency = 0.35
  414. wave2.CFrame = HandCF
  415. wm2 = Instance.new("SpecialMesh", wave2)
  416. wm2.MeshId = "rbxassetid://3270017"
  417. coroutine.wrap(function()
  418. for i = 1, 30, 1 do
  419. wm2.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  420. wave2.Size = wm2.Scale
  421. wave2.CFrame = HandCF
  422. wave2.Transparency = i/30
  423. wait()
  424. end
  425. wait()
  426. wave2:Destroy()
  427. end)()
  428. end
  429. GroundWave4 = function()
  430. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  431. Colors = {"White", "White"}
  432. local wave1 = Instance.new("Part", char)
  433. wave1.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  434. wave1.Anchored = true
  435. wave1.Name = "Wave"
  436. wave1.CanCollide = false
  437. wave1.Locked = true
  438. wave1.Size = Vector3.new(1, 1, 1)
  439. wave1.TopSurface = "Smooth"
  440. wave1.BottomSurface = "Smooth"
  441. wave1.Transparency = 0.35
  442. wave1.CFrame = HandCF
  443. wm3 = Instance.new("SpecialMesh", wave1)
  444. wm3.MeshId = "rbxassetid://3270017"
  445. coroutine.wrap(function()
  446. for i = 1, 30, 1 do
  447. wm3.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  448. wave1.Size = wm3.Scale
  449. wave1.CFrame = HandCF
  450. wave1.Transparency = i/30
  451. wait()
  452. end
  453. wait()
  454. wave1:Destroy()
  455. end)()
  456. end
  457. --------------------------------------------------------------------------
  458. --transform
  459. GroundWave5 = function()
  460. local HandCF = root.CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  461.  
  462. Colors = {"Lime green", "Lime green"}
  463.  
  464.  
  465. local wave11 = Instance.new("Part", char)
  466. wave11.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  467. wave11.Anchored = true
  468. wave11.Name = "Wave"
  469. wave11.CanCollide = false
  470. wave11.Locked = true
  471. wave11.Size = Vector3.new(1, 1, 1)
  472. wave11.TopSurface = "Smooth"
  473. wave11.BottomSurface = "Smooth"
  474. wave11.Transparency = 0.35
  475. wave11.CFrame = HandCF
  476. wm31 = Instance.new("SpecialMesh", wave11)
  477. wm31.MeshId = "rbxassetid://3270017"
  478. coroutine.wrap(function()
  479. for i = 1, 30, 1 do
  480. wm31.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  481. wave11.Size = wm31.Scale
  482. wave11.CFrame = HandCF
  483. wave11.Transparency = i/30
  484. wait()
  485. end
  486. wait()
  487. wave11:Destroy()
  488. end)()
  489. end
  490. GroundWave6 = function()
  491. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  492.  
  493. Colors = {"Lime green", "Lime green"}
  494.  
  495. local wave111 = Instance.new("Part", char)
  496. wave111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  497. wave111.Anchored = true
  498. wave111.Name = "Wave"
  499. wave111.CanCollide = false
  500. wave111.Locked = true
  501. wave111.Size = Vector3.new(1, 1, 1)
  502. wave111.TopSurface = "Smooth"
  503. wave111.BottomSurface = "Smooth"
  504. wave111.Transparency = 0.35
  505. wave111.CFrame = HandCF
  506. wm311 = Instance.new("SpecialMesh", wave111)
  507. wm311.MeshId = "rbxassetid://3270017"
  508. coroutine.wrap(function()
  509. for i = 1, 30, 1 do
  510. wm311.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  511. wave111.Size = wm311.Scale
  512. wave111.CFrame = HandCF
  513. wave111.Transparency = i/30
  514. wait()
  515. end
  516. wait()
  517. wave111:Destroy()
  518. end)()
  519. end
  520. GroundWave7 = function()
  521. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  522.  
  523. Colors = {"Lime green", "Lime green"}
  524. local wave1111 = Instance.new("Part", char)
  525. wave1111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  526. wave1111.Anchored = true
  527. wave1111.Name = "Wave"
  528. wave1111.CanCollide = false
  529. wave1111.Locked = true
  530. wave1111.Size = Vector3.new(1, 1, 1)
  531. wave1111.TopSurface = "Smooth"
  532. wave1111.BottomSurface = "Smooth"
  533. wave1111.Transparency = 0.35
  534. wave1111.CFrame = HandCF
  535. wm3111 = Instance.new("SpecialMesh", wave1111)
  536. wm3111.MeshId = "rbxassetid://3270017"
  537. coroutine.wrap(function()
  538. for i = 1, 30, 1 do
  539. wm3111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  540. wave1111.Size = wm3111.Scale
  541. wave1111.CFrame = HandCF
  542. wave1111.Transparency = i/30
  543. wait()
  544. end
  545. wait()
  546. wave1111:Destroy()
  547. end)()
  548. end
  549. GroundWave8 = function()
  550. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  551.  
  552. Colors = {"Lime green", "Lime green"}
  553. local wave11111 = Instance.new("Part", char)
  554. wave11111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  555. wave11111.Anchored = true
  556. wave11111.Name = "Wave"
  557. wave11111.CanCollide = false
  558. wave11111.Locked = true
  559. wave11111.Size = Vector3.new(1, 1, 1)
  560. wave11111.TopSurface = "Smooth"
  561. wave11111.BottomSurface = "Smooth"
  562. wave11111.Transparency = 0.35
  563. wave11111.CFrame = HandCF
  564. wm31111 = Instance.new("SpecialMesh", wave11111)
  565. wm31111.MeshId = "rbxassetid://3270017"
  566. coroutine.wrap(function()
  567. for i = 1, 30, 1 do
  568. wm31111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  569. wave11111.Size = wm31111.Scale
  570. wave11111.CFrame = HandCF
  571. wave11111.Transparency = i/30
  572. wait()
  573. end
  574. wait()
  575. wave11111:Destroy()
  576. end)()
  577. end
  578. GroundWave9 = function()
  579. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  580.  
  581. Colors = {"Lime green", "Lime green"}
  582. local wave111111 = Instance.new("Part", char)
  583. wave111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  584. wave111111.Anchored = true
  585. wave111111.Name = "Wave"
  586. wave111111.CanCollide = false
  587. wave111111.Locked = true
  588. wave111111.Size = Vector3.new(1, 1, 1)
  589. wave111111.TopSurface = "Smooth"
  590. wave111111.BottomSurface = "Smooth"
  591. wave111111.Transparency = 0.35
  592. wave111111.CFrame = HandCF
  593. wm311111 = Instance.new("SpecialMesh", wave111111)
  594. wm311111.MeshId = "rbxassetid://3270017"
  595. coroutine.wrap(function()
  596. for i = 1, 30, 1 do
  597. wm311111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  598. wave111111.Size = wm311111.Scale
  599. wave111111.CFrame = HandCF
  600. wave111111.Transparency = i/30
  601. wait()
  602. end
  603. wait()
  604. wave111111:Destroy()
  605. end)()
  606. end
  607. GroundWave10 = function()
  608. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  609.  
  610. Colors = {"Lime green", "Lime green"}
  611. local wave1111111 = Instance.new("Part", char)
  612. wave1111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  613. wave1111111.Anchored = true
  614. wave1111111.Name = "Wave"
  615. wave1111111.CanCollide = false
  616. wave1111111.Locked = true
  617. wave1111111.Size = Vector3.new(1, 1, 1)
  618. wave1111111.TopSurface = "Smooth"
  619. wave1111111.BottomSurface = "Smooth"
  620. wave1111111.Transparency = 0.35
  621. wave1111111.CFrame = HandCF
  622. wm3111111 = Instance.new("SpecialMesh", wave1111111)
  623. wm3111111.MeshId = "rbxassetid://3270017"
  624. coroutine.wrap(function()
  625. for i = 1, 30, 1 do
  626. wm3111111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  627. wave1111111.Size = wm3111111.Scale
  628. wave1111111.CFrame = HandCF
  629. wave1111111.Transparency = i/30
  630. wait()
  631. end
  632. wait()
  633. wave1111111:Destroy()
  634. end)()
  635. end
  636.  
  637.  
  638. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  639.  
  640. function nooutline(part)
  641. part.TopSurface, part.BottomSurface, part.RightSurface, part.LeftSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  642. end
  643.  
  644. function debris(cfremz, thepart, amt)
  645. for j = 1, amt do
  646. do
  647. local pr = Instance.new("Part")
  648. nooutline(pr)
  649. pr.Name = "debrisobeb"
  650. pr.Anchored = true
  651. pr.BrickColor = thepart.BrickColor
  652. pr.CanCollide = true
  653. pr.Material = thepart.Material
  654. pr.Transparency = thepart.Transparency
  655. pr.Size = Vector3.new(math.random(16, 24), math.random(12, 16), math.random(16, 24))
  656. pr.CFrame = cfremz * CFrame.Angles(0, math.rad(amt * j), 0) * CFrame.new(0, -5, math.random(18, 22)) * CFrame.Angles(math.rad(math.random(-30, -15)), math.rad(math.random(0, 1)), math.rad(math.random(0, 1)))
  657. pr.Parent = workspace
  658. game.Debris:AddItem(pr, 25)
  659. delay(15, function()
  660. if pr then
  661. pr.CanCollide = false
  662. pr.Anchored = false
  663. end
  664. end)
  665. end
  666. end
  667. for c = 1, amt do
  668. do
  669. local pr2 = Instance.new("Part")
  670. nooutline(pr2)
  671. pr2.Name = "moredebr"
  672. pr2.Anchored = false
  673. pr2.BrickColor = thepart.BrickColor
  674. pr2.CanCollide = false
  675. pr2.Material = thepart.Material
  676. pr2.Transparency = thepart.Transparency
  677. pr2.Size = Vector3.new(math.random(8, 18), math.random(6, 18), math.random(8, 18))
  678. pr2.CFrame = cfremz * CFrame.Angles(0, math.rad(30 * c), 0) * CFrame.new(0, -5, math.random(18, 22)) * CFrame.Angles(math.rad(math.random(-30, -15)), math.rad(math.random(0, 1)), math.rad(math.random(0, 1)))
  679. pr2.Parent = workspace
  680. pr2.Velocity = Vector3.new(math.random(-75, 75), math.random(120, 240), math.random(-75, 75))
  681. pr2.RotVelocity = Vector3.new(math.random(-35, 35), math.random(-35, 35), math.random(-35, 35))
  682. game.Debris:AddItem(pr2, 45)
  683. delay(2, function()
  684. pr2.CanCollide = true
  685. wait(10)
  686. if pr2 then
  687. pr2.CanCollide = false
  688. end
  689. end)
  690. end
  691. end
  692. end
  693.  
  694.  
  695. function weld5(part0, part1, c0, c1)
  696. weeld=Instance.new("Weld", part0)
  697. weeld.Part0=part0
  698. weeld.Part1=part1
  699. weeld.C0=c0
  700. weeld.C1=c1
  701. return weeld
  702. end
  703.  
  704.  
  705. par,loc=workspace:FindPartOnRay(Ray.new(root.Position,(root.Position-(root.Position-Vector3.new(0,2,0))).unit*-500),root)
  706.  
  707.  
  708. local acos = math.acos
  709. local sqrt = math.sqrt
  710. local Vec3 = Vector3.new
  711. local fromAxisAngle = CFrame.fromAxisAngle
  712.  
  713. local function toAxisAngle(CFr)
  714. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  715. local Angle = math.acos((R00+R11+R22-1)/2)
  716. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  717. A = A == 0 and 0.00001 or A
  718. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  719. B = B == 0 and 0.00001 or B
  720. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  721. C = C == 0 and 0.00001 or C
  722. local x = (R21-R12)/sqrt(A)
  723. local y = (R02-R20)/sqrt(B)
  724. local z = (R10-R01)/sqrt(C)
  725. return Vec3(x,y,z),Angle
  726. end
  727.  
  728. function ApplyTrig(Num,Func)
  729. local Min,Max = Func(0),Func(1)
  730. local i = Func(Num)
  731. return (i-Min)/(Max-Min)
  732. end
  733.  
  734. function LerpCFrame(CFrame1,CFrame2,Num)
  735. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  736. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  737. end
  738.  
  739. function Crater(Torso,Radius)
  740. Spawn(function()
  741. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  742. local Ignore = {}
  743. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  744. if v.Character ~= nil then
  745. Ignore[#Ignore+1] = v.Character
  746. end
  747. end
  748. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  749. if Hit == nil then return end
  750. local Parts = {}
  751. for i = 1,360,10 do
  752. local P = Instance.new("Part",Torso.Parent)
  753. P.Anchored = true
  754. P.FormFactor = "Custom"
  755. P.BrickColor = Hit.BrickColor
  756. P.Material = Hit.Material
  757. P.TopSurface = "Smooth"
  758. P.BottomSurface = "Smooth"
  759. P.CanCollide = false
  760. P.Size = Vector3.new(10,20,20)*(math.random(80,100)/100)
  761. 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)))
  762. 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}
  763. if math.random(0,5) == 0 then -- rubble
  764. local P = Instance.new("Part",Torso.Parent)
  765. P.Anchored = true
  766. P.FormFactor = "Custom"
  767. P.BrickColor = Hit.BrickColor
  768. P.Material = Hit.Material
  769. P.TopSurface = "Smooth"
  770. P.CanCollide = false
  771. P.BottomSurface = "Smooth"
  772. P.Size = Vector3.new(4,4,4)*(math.random(80,100)/100)
  773. 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)))
  774. 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}
  775. end
  776. end
  777. for i = 0,1,0.05 do
  778. for i2,v in pairs(Parts) do
  779. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  780. end
  781. wait(0.02)
  782. end
  783. for i,v in pairs(Parts) do
  784. if v[1].Size.X > 2.1 then
  785. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  786. end
  787. v[1].Anchored = false
  788. end
  789. for i = 0,1,0.05 do
  790. for i2,v in pairs(Parts) do
  791. v[1].Transparency = i
  792. if i == 1 then
  793. v[1]:Destroy()
  794. elseif i >= 0.25 then
  795. v[1].CanCollide = false
  796. end
  797. end
  798. wait(0.02)
  799. end
  800. Parts = nil
  801. end)
  802. end
  803.  
  804.  
  805.  
  806.  
  807.  
  808. function FindNearestTorso(Position,Distance,SinglePlayer)
  809. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  810. local List = {}
  811. for i,v in pairs(workspace:GetChildren())do
  812. if v:IsA("Model")then
  813. if v:findFirstChild("Torso")then
  814. if v ~= char then
  815. if(v.Torso.Position -Position).magnitude <= Distance then
  816. table.insert(List,v)
  817. end
  818. end
  819. end
  820. end
  821. end
  822. return List
  823. end
  824.  
  825.  
  826.  
  827. function FindNearestHead(Position,Distance,SinglePlayer)
  828. if SinglePlayer then return(SinglePlayer.Head.CFrame.p -Position).magnitude < Distance end
  829. local List = {}
  830. for i,v in pairs(workspace:GetChildren())do
  831. if v:IsA("Model")then
  832. if v:findFirstChild("Head")then
  833. if v ~= char then
  834. if(v.Head.Position -Position).magnitude <= Distance then
  835. table.insert(List,v)
  836. end
  837. end
  838. end
  839. end
  840. end
  841. return List
  842. end
  843.  
  844.  
  845.  
  846. function FindNearestRightArm(Position,Distance,SinglePlayer)
  847. if SinglePlayer then return(SinglePlayer.RightArm.CFrame.p -Position).magnitude < Distance end
  848. local List = {}
  849. for i,v in pairs(workspace:GetChildren())do
  850. if v:IsA("Model")then
  851. if v:findFirstChild("Right Arm")then
  852. if v ~= char then
  853. if(v.RightArm.Position -Position).magnitude <= Distance then
  854. table.insert(List,v)
  855. end
  856. end
  857. end
  858. end
  859. end
  860. return List
  861. end
  862.  
  863.  
  864. function FindNearestLeftArm(Position,Distance,SinglePlayer)
  865. if SinglePlayer then return(SinglePlayer.LeftArm.CFrame.p -Position).magnitude < Distance end
  866. local List = {}
  867. for i,v in pairs(workspace:GetChildren())do
  868. if v:IsA("Model")then
  869. if v:findFirstChild("Left Arm")then
  870. if v ~= char then
  871. if(v.LeftArm.Position -Position).magnitude <= Distance then
  872. table.insert(List,v)
  873. end
  874. end
  875. end
  876. end
  877. end
  878. return List
  879. end
  880.  
  881.  
  882.  
  883. function FindNearestRightLeg(Position,Distance,SinglePlayer)
  884. if SinglePlayer then return(SinglePlayer.RightLeg.CFrame.p -Position).magnitude < Distance end
  885. local List = {}
  886. for i,v in pairs(workspace:GetChildren())do
  887. if v:IsA("Model")then
  888. if v:findFirstChild("Right Leg")then
  889. if v ~= char then
  890. if(v.RightLeg.Position -Position).magnitude <= Distance then
  891. table.insert(List,v)
  892. end
  893. end
  894. end
  895. end
  896. end
  897. return List
  898. end
  899.  
  900.  
  901. function FindNearestLeftLeg(Position,Distance,SinglePlayer)
  902. if SinglePlayer then return(SinglePlayer.LeftLeg.CFrame.p -Position).magnitude < Distance end
  903. local List = {}
  904. for i,v in pairs(workspace:GetChildren())do
  905. if v:IsA("Model")then
  906. if v:findFirstChild("Left Leg")then
  907. if v ~= char then
  908. if(v.LeftLeg.Position -Position).magnitude <= Distance then
  909. table.insert(List,v)
  910. end
  911. end
  912. end
  913. end
  914. end
  915. return List
  916. end
  917.  
  918.  
  919.  
  920.  
  921.  
  922.  
  923. mouse.KeyDown:connect(function(key)--------------------------------------------Roar
  924. if key == "q" then
  925. hum.WalkSpeed = 0
  926. if Debounces.CanAttack == true then
  927. Debounces.CanAttack = false
  928. Debounces.NoIdl = true
  929. Debounces.on = true
  930. for i = 1, 30 do
  931. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  932. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  933. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  934. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  935. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  936. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  937. if Debounces.on == false then break end
  938. rs:wait(6)
  939. end
  940. v = Instance.new("Sound")
  941. v.SoundId = "rbxassetid://800952230"
  942. v.Parent = char
  943. v.Looped = false
  944. v.Pitch = 1
  945. v.Volume = 500
  946. wait(.01)
  947. v:Play()
  948.  
  949.  
  950. local Shockwave = function()
  951. local rng1 = Instance.new("Part", char)
  952. rng1.Anchored = true
  953. rng1.BrickColor = BrickColor.new("Lime green")
  954. rng1.CanCollide = false
  955. rng1.FormFactor = 3
  956. rng1.Name = "Ring"
  957. rng1.Size = Vector3.new(1, 1, 1)
  958. rng1.Transparency = 0.35
  959. rng1.TopSurface = 0
  960. rng1.BottomSurface = 0
  961. local rngm1 = Instance.new("SpecialMesh", rng1)
  962. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  963. rngm1.Scale = Vector3.new(10, 10, 1)
  964. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  965. local Wave = Instance.new("Part", game.Workspace--[[?]])
  966. Wave.Name = "Shockwave"
  967. Wave.BrickColor = BrickColor.new("Lime green")
  968. Wave.Size = Vector3.new(1, 1, 1)
  969. Wave.Shape = "Ball"
  970. Wave.CanCollide = false
  971. Wave.Anchored = true
  972. Wave.TopSurface = 0
  973. Wave.BottomSurface = 0
  974. Wave.Touched:connect(function(hit)
  975. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  976. local Occlude = true
  977. local NotOccludes = {
  978. char.Name;
  979. "Wings";
  980. "Scythe";
  981. "Thingy";
  982. "Thingy2"; -- put all of the names in a table pls
  983. }
  984. for i,v in pairs(NotOccludes) do
  985. if hit.Parent.Name == v then
  986. Occlude = false
  987. end
  988. end
  989. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  990. if Occlude then
  991. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  992. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  993. end
  994. end
  995. end)
  996.  
  997. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  998.  
  999. coroutine.wrap(function()
  1000. for i = 1, 20, 0.2 do
  1001. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  1002. rng1.Transparency = i/20
  1003. rng1.CFrame = Wave.CFrame
  1004. wait()
  1005. end
  1006. wait()
  1007. rng1:Destroy()
  1008. end)()
  1009.  
  1010. Delay(0, function()
  1011.  
  1012.  
  1013. for i = 1, 50, 1 do
  1014. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  1015. Wave.CFrame = char.Torso.CFrame
  1016. local t = i / 50
  1017. Wave.Transparency = t
  1018. wait()
  1019. end
  1020.  
  1021. Wave:Destroy()
  1022. end)
  1023. Delay(0, function()
  1024. while wait() do
  1025. if Wave ~= nil then
  1026. Wave.CFrame = char.Torso.CFrame
  1027. else
  1028. break
  1029. end
  1030. end
  1031. end)
  1032. end
  1033.  
  1034.  
  1035. new = Instance.new
  1036.  
  1037. v3 = Vector3.new
  1038.  
  1039.  
  1040. a21e = new("Part",char)
  1041. a21e.Name = "Beam"..num
  1042. a21e.Locked = true
  1043. a21e.Size = v3(1,1,1)
  1044. a21e.CanCollide = false
  1045. a21e.Position = v3(999,999,999)
  1046. a21e.BrickColor = BrickColor.new("Lime green")
  1047. a21e.Material = "Neon"
  1048. a21e.Transparency = 0
  1049. aa21e = new("SpecialMesh",a21e)
  1050. a21e.Anchored = true
  1051. a21e.Position = root.Position
  1052. aa21e.MeshType = "Sphere"
  1053. aa21e.Scale = v3(1,1,1)
  1054.  
  1055.  
  1056. coroutine.resume(coroutine.create(function()
  1057. BurningEff(FindNearestTorso(root.CFrame.p,35))
  1058. BurningEff(FindNearestHead(root.CFrame.p,35))
  1059. BurningEff(FindNearestRightArm(root.CFrame.p,35))
  1060. BurningEff(FindNearestLeftArm(root.CFrame.p,35))
  1061. BurningEff(FindNearestRightLeg(root.CFrame.p,35))
  1062. BurningEff(FindNearestLeftLeg(root.CFrame.p,35))
  1063.  
  1064. end))
  1065.  
  1066. for i,v in pairs(FindNearestTorso(root.CFrame.p,25))do
  1067. if v:FindFirstChild('Humanoid') then
  1068. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1069. v.Humanoid.PlatformStand = true
  1070. v:FindFirstChild("Torso").Velocity = torso.CFrame.lookVector * 200
  1071. BurningEff(v:FindFirstChild('Torso'))
  1072.  
  1073. end
  1074. end
  1075.  
  1076.  
  1077. coroutine.resume(coroutine.create(function()
  1078.  
  1079. for i,v in pairs(workspace:children()) do
  1080. charr = v:FindFirstChild('Character')
  1081. for i = 1, 40 do
  1082. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1083. wait()
  1084. end
  1085.  
  1086. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  1087. end
  1088. end))
  1089.  
  1090.  
  1091.  
  1092.  
  1093. coroutine.resume(coroutine.create(function()
  1094. for i = 1, 40 do
  1095. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1096. wait()
  1097. end
  1098. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  1099. end))
  1100.  
  1101. coroutine.resume(coroutine.create(function()
  1102. par,loc=workspace:FindPartOnRay(Ray.new(char.Torso.Position,(char.Torso.Position-(char.Torso.Position-Vector3.new(0,2,0))).unit*-500),char)
  1103. if par then
  1104. local cfremz = CFrame.new(loc)
  1105. debris(cfremz, par, 50)
  1106. end
  1107. end))
  1108.  
  1109.  
  1110. Crater(root,155)
  1111. GroundWave5()
  1112. GroundWave6()
  1113. GroundWave7()
  1114. GroundWave8()
  1115. GroundWave9()
  1116. GroundWave10()
  1117.  
  1118. coroutine.resume(coroutine.create(function()
  1119. for i = 1,25 do
  1120. wait()
  1121. aa21e.Scale = aa21e.Scale + v3(5,5,5)
  1122. a21e.Transparency = a21e.Transparency + 0.04
  1123. end
  1124. end))
  1125.  
  1126.  
  1127.  
  1128.  
  1129. for i = 1, 30 do
  1130. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
  1131. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  1132. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  1133. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  1134. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  1135. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  1136. if Debounces.on == false then break end
  1137. rs:wait()
  1138. end
  1139. wait(4.4)
  1140. Debounces.NoIdl = false
  1141. hum.WalkSpeed = 5
  1142. Debounces.on = false
  1143. wait()
  1144. if Debounces.CanAttack == false then
  1145. Debounces.CanAttack = true
  1146. v:Destroy()
  1147. end
  1148. end
  1149. end
  1150. end)
  1151.  
  1152.  
  1153.  
  1154.  
  1155.  
  1156.  
  1157.  
  1158. ----------------------------------------------------
  1159. function weld5(part0, part1, c0, c1)
  1160. weeld=Instance.new("Weld", part0)
  1161. weeld.Part0=part0
  1162. weeld.Part1=part1
  1163. weeld.C0=c0
  1164. weeld.C1=c1
  1165. return weeld
  1166. end
  1167.  
  1168.  
  1169.  
  1170.  
  1171.  
  1172. Grab = false
  1173. mouse.KeyDown:connect(function(key)-----------------------------------------Grab
  1174. if key == "z" then
  1175. Debounces.on = true
  1176. Debounces.NoIdl = true
  1177. if Grab == false then
  1178. gp = nil
  1179. con1=larm.Touched:connect(function(hit) -- this is grab
  1180. ht = hit.Parent
  1181. hum1=ht:FindFirstChild('Humanoid')
  1182. if hum1 ~= nil then
  1183. hum1.PlatformStand=true
  1184. gp = ht
  1185. Grab = true
  1186. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  1187. asd.Parent = larm
  1188. asd.Name = "asd"
  1189. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  1190. elseif hum1 == nil then
  1191. con1:disconnect()
  1192. wait() return
  1193. end
  1194. end)
  1195.  
  1196.  
  1197. for i = 1, 18 do
  1198. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  1199. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  1200. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  1201. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  1202. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  1203. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  1204. if Debounces.on == false then break end
  1205. wait()
  1206. end
  1207. con1:disconnect()
  1208. Debounces.on = false
  1209. Debounces.NoIdl = false
  1210. wait(0.1)
  1211. ht:FindFirstChild("Torso").CanCollide = true
  1212. ht:FindFirstChild("RightArm").CanCollide = true
  1213. ht:FindFirstChild("LeftArm").CanCollide = true
  1214. ht:FindFirstChild("RightLeg").CanCollide = true
  1215. ht:FindFirstChild("LeftLeg").CanCollide = true
  1216. ht:FindFirstChild("Head").CanCollide = true elseif Grab == true then
  1217. Grab = false
  1218. for i = 1, 20 do
  1219. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  1220. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  1221. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  1222. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  1223. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  1224. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  1225. if Debounces.on == false then end
  1226. wait()
  1227. end
  1228. if gp ~= nil then
  1229. for i,v in pairs(larm:GetChildren()) do
  1230. if v.Name == "asd" and v:IsA("Weld") then
  1231. v:Remove()
  1232. end
  1233. end
  1234. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  1235. bv.maxForce = Vector3.new(400000, 400000, 400000)
  1236. bv.P = 125000000000000
  1237. bv.velocity = char.Head.CFrame.lookVector * 1000
  1238. for i = 1, 12 do
  1239. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  1240. if Debounces.on == false then end
  1241. wait()
  1242. end
  1243. ht=nil
  1244. Spawn(function()
  1245. wait(0.5)
  1246. bv:Destroy()
  1247. end)
  1248. Debounces.on = false
  1249. Debounces.NoIdl = false
  1250. elseif ht == nil then wait()
  1251. Grab = false
  1252. Debounces.on = false
  1253. Debounces.NoIdl = false
  1254. end
  1255. end
  1256. end
  1257. end)
  1258.  
  1259.  
  1260.  
  1261.  
  1262. mouse.KeyDown:connect(function(key)
  1263. if key == "c" then
  1264. if Debounces.CanAttack == true then
  1265. Debounces.CanAttack = false
  1266. Debounces.NoIdl = true
  1267. Debounces.on = true
  1268.  
  1269.  
  1270.  
  1271.  
  1272. GroundWaves5 = function()
  1273. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  1274.  
  1275. Colors = {"Lime green", "Lime green"}
  1276.  
  1277.  
  1278. local wave11 = Instance.new("Part", char)
  1279. wave11.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1280. wave11.Anchored = true
  1281. wave11.Name = "Wave"
  1282. wave11.CanCollide = false
  1283. wave11.Locked = true
  1284. wave11.Size = Vector3.new(1, 1, 1)
  1285. wave11.TopSurface = "Smooth"
  1286. wave11.BottomSurface = "Smooth"
  1287. wave11.Transparency = 0.35
  1288. wave11.CFrame = HandCF
  1289. wm31 = Instance.new("SpecialMesh", wave11)
  1290. wm31.MeshId = "rbxassetid://3270017"
  1291. coroutine.wrap(function()
  1292. for i = 1, 30, 1 do
  1293. wm31.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1294. wave11.Size = wm31.Scale
  1295. wave11.CFrame = HandCF
  1296. wave11.Transparency = i/30
  1297. wait()
  1298. end
  1299. wait()
  1300. wave11:Destroy()
  1301. end)()
  1302. end
  1303. GroundWaves6 = function()
  1304. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1305.  
  1306. Colors = {"Lime green", "Lime green"}
  1307.  
  1308. local wave111 = Instance.new("Part", char)
  1309. wave111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1310. wave111.Anchored = true
  1311. wave111.Name = "Wave"
  1312. wave111.CanCollide = false
  1313. wave111.Locked = true
  1314. wave111.Size = Vector3.new(1, 1, 1)
  1315. wave111.TopSurface = "Smooth"
  1316. wave111.BottomSurface = "Smooth"
  1317. wave111.Transparency = 0.35
  1318. wave111.CFrame = HandCF
  1319. wm311 = Instance.new("SpecialMesh", wave111)
  1320. wm311.MeshId = "rbxassetid://3270017"
  1321. coroutine.wrap(function()
  1322. for i = 1, 30, 1 do
  1323. wm311.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1324. wave111.Size = wm311.Scale
  1325. wave111.CFrame = HandCF
  1326. wave111.Transparency = i/30
  1327. wait()
  1328. end
  1329. wait()
  1330. wave111:Destroy()
  1331. end)()
  1332. end
  1333. GroundWaves7 = function()
  1334. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1335.  
  1336. Colors = {"Lime green", "Lime green"}
  1337. local wave1111 = Instance.new("Part", char)
  1338. wave1111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1339. wave1111.Anchored = true
  1340. wave1111.Name = "Wave"
  1341. wave1111.CanCollide = false
  1342. wave1111.Locked = true
  1343. wave1111.Size = Vector3.new(1, 1, 1)
  1344. wave1111.TopSurface = "Smooth"
  1345. wave1111.BottomSurface = "Smooth"
  1346. wave1111.Transparency = 0.35
  1347. wave1111.CFrame = HandCF
  1348. wm3111 = Instance.new("SpecialMesh", wave1111)
  1349. wm3111.MeshId = "rbxassetid://3270017"
  1350. coroutine.wrap(function()
  1351. for i = 1, 30, 1 do
  1352. wm3111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1353. wave1111.Size = wm3111.Scale
  1354. wave1111.CFrame = HandCF
  1355. wave1111.Transparency = i/30
  1356. wait()
  1357. end
  1358. wait()
  1359. wave1111:Destroy()
  1360. end)()
  1361. end
  1362. GroundWaves8 = function()
  1363. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1364.  
  1365. Colors = {"Lime green", "Lime green"}
  1366. local wave11111 = Instance.new("Part", char)
  1367. wave11111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1368. wave11111.Anchored = true
  1369. wave11111.Name = "Wave"
  1370. wave11111.CanCollide = false
  1371. wave11111.Locked = true
  1372. wave11111.Size = Vector3.new(1, 1, 1)
  1373. wave11111.TopSurface = "Smooth"
  1374. wave11111.BottomSurface = "Smooth"
  1375. wave11111.Transparency = 0.35
  1376. wave11111.CFrame = HandCF
  1377. wm31111 = Instance.new("SpecialMesh", wave11111)
  1378. wm31111.MeshId = "rbxassetid://3270017"
  1379. coroutine.wrap(function()
  1380. for i = 1, 30, 1 do
  1381. wm31111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1382. wave11111.Size = wm31111.Scale
  1383. wave11111.CFrame = HandCF
  1384. wave11111.Transparency = i/30
  1385. wait()
  1386. end
  1387. wait()
  1388. wave11111:Destroy()
  1389. end)()
  1390. end
  1391. GroundWaves9 = function()
  1392. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1393.  
  1394. Colors = {"Lime green", "Lime green"}
  1395. local wave111111 = Instance.new("Part", char)
  1396. wave111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1397. wave111111.Anchored = true
  1398. wave111111.Name = "Wave"
  1399. wave111111.CanCollide = false
  1400. wave111111.Locked = true
  1401. wave111111.Size = Vector3.new(1, 1, 1)
  1402. wave111111.TopSurface = "Smooth"
  1403. wave111111.BottomSurface = "Smooth"
  1404. wave111111.Transparency = 0.35
  1405. wave111111.CFrame = HandCF
  1406. wm311111 = Instance.new("SpecialMesh", wave111111)
  1407. wm311111.MeshId = "rbxassetid://3270017"
  1408. coroutine.wrap(function()
  1409. for i = 1, 30, 1 do
  1410. wm311111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1411. wave111111.Size = wm311111.Scale
  1412. wave111111.CFrame = HandCF
  1413. wave111111.Transparency = i/30
  1414. wait()
  1415. end
  1416. wait()
  1417. wave111111:Destroy()
  1418. end)()
  1419. end
  1420. GroundWaves10 = function()
  1421. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1422.  
  1423. Colors = {"Lime green", "Lime green"}
  1424. local wave1111111 = Instance.new("Part", char)
  1425. wave1111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1426. wave1111111.Anchored = true
  1427. wave1111111.Name = "Wave"
  1428. wave1111111.CanCollide = false
  1429. wave1111111.Locked = true
  1430. wave1111111.Size = Vector3.new(1, 1, 1)
  1431. wave1111111.TopSurface = "Smooth"
  1432. wave1111111.BottomSurface = "Smooth"
  1433. wave1111111.Transparency = 0.35
  1434. wave1111111.CFrame = HandCF
  1435. wm3111111 = Instance.new("SpecialMesh", wave1111111)
  1436. wm3111111.MeshId = "rbxassetid://3270017"
  1437. coroutine.wrap(function()
  1438. for i = 1, 30, 1 do
  1439. wm3111111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1440. wave1111111.Size = wm3111111.Scale
  1441. wave1111111.CFrame = HandCF
  1442. wave1111111.Transparency = i/30
  1443. wait()
  1444. end
  1445. wait()
  1446. wave1111111:Destroy()
  1447. end)()
  1448. end
  1449.  
  1450.  
  1451.  
  1452. for i = 1, 40 do
  1453. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  1454. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  1455. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  1456. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  1457. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  1458. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  1459. if Debounces.on == false then break end
  1460. wait()
  1461. end
  1462.  
  1463.  
  1464.  
  1465.  
  1466. coroutine.resume(coroutine.create(function()
  1467. for i=1, 5 do
  1468. p=Instance.new("Part")
  1469. p.FrontSurface=par.TopSurface
  1470. p.Material=par.Material
  1471. p.BottomSurface=0
  1472. p.Anchored=true p.CanCollide=false
  1473. p.BrickColor=par.BrickColor
  1474. p.Size=Vector3.new(math.random(15,35)/5,math.random(15,35)/5,math.random(4,5))
  1475. p.CFrame=CFrame.new(ht.Position-Vector3.new(math.random(-i,i)/1,3,math.random(-i,i)/1),loc+Vector3.new(0,1000-i*20,0))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/30,math.random(-10,10)/30,math.random(-10,10)/30)
  1476. p.Parent=char
  1477. game:GetService("Debris"):AddItem(p,2+i*.1)
  1478. if math.random(1,5)==5 then
  1479. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=30 f.RiseVelocity=0 f.Opacity=.025 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  1480. end
  1481. end
  1482. for i=1, 5 do
  1483. for i=1, 1 do
  1484. p=Instance.new("Part")
  1485. p.TopSurface=par.TopSurface
  1486. p.BottomSurface=par.BottomSurface
  1487. p.Material=par.Material
  1488. p.BottomSurface=0
  1489. p.Anchored=false p.CanCollide=true
  1490. p.BrickColor=par.BrickColor
  1491. p.formFactor="Custom"
  1492. p.Size=Vector3.new(math.random(15,35)/12,math.random(13,35)/12,math.random(15,35)/12)
  1493. p.CFrame=CFrame.new(ht.Position-Vector3.new(math.random(-4,4),-2,math.random(-4,4)))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/20,math.random(-10,10)/5,math.random(-10,10)/20)
  1494. p.Parent=char
  1495. game:GetService("Debris"):AddItem(p,3+i*.1)
  1496. p.Velocity=Vector3.new(math.random(-10,10)*4,math.random(40,80),math.random(-10,10)*4)
  1497. p.RotVelocity=p.Velocity
  1498. if math.random(1,5)==5 then
  1499. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=15 f.RiseVelocity=10 f.Opacity=.1 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  1500. end
  1501. end
  1502. end
  1503. end))
  1504.  
  1505.  
  1506.  
  1507.  
  1508. coroutine.resume(coroutine.create(function()
  1509. wait(0.2)
  1510. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  1511. if v:FindFirstChild('Humanoid') then
  1512. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1513. v.Humanoid.PlatformStand = true
  1514. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1515. end
  1516. end
  1517.  
  1518. GroundWaves5()
  1519. GroundWaves6()
  1520. GroundWaves7()
  1521. GroundWaves8()
  1522. GroundWaves9()
  1523. GroundWaves10()
  1524. end))
  1525. for i = 1, 20 do
  1526. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.6)
  1527. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  1528. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  1529. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  1530. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  1531. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  1532. if Debounces.on == false then break end
  1533. wait()
  1534. end
  1535.  
  1536.  
  1537.  
  1538.  
  1539. if Debounces.CanAttack == false then
  1540. Debounces.CanAttack = true
  1541. Debounces.on = false
  1542. Debounces.NoIdl = false
  1543.  
  1544. end
  1545. end
  1546. end
  1547. end)
  1548.  
  1549.  
  1550. function newRay(start,face,range,wat)
  1551. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1552. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1553. return rey,hit,pos
  1554. end
  1555.  
  1556.  
  1557.  
  1558. fat = Instance.new("BindableEvent",script)
  1559. fat.Name = "Heartbeat"
  1560.  
  1561. script:WaitForChild("Heartbeat")
  1562.  
  1563. frame = 1/30
  1564. tf = 0
  1565. allowframeloss = false --if set to true will fire every frame it possibly can. This will result in multiple events happening at the same time whenever delta returns frame*2 or greater.
  1566. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  1567. lastframe = tick()
  1568. script.Heartbeat:Fire() --ayy lmao
  1569.  
  1570. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  1571. tf = tf + s
  1572. if tf >= frame then
  1573. if allowframeloss then
  1574. script.Heartbeat:Fire()
  1575. lastframe=tick()
  1576. else
  1577. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  1578. for i=1, math.floor(tf/frame) do
  1579. script.Heartbeat:Fire()
  1580. end
  1581. lastframe=tick()
  1582. end
  1583. if tossremainder then
  1584. tf = 0
  1585. else
  1586. tf = tf - frame * math.floor(tf/frame)
  1587. end
  1588. end
  1589. end)
  1590.  
  1591. function Swait(NUMBER)
  1592. if NUMBER == 0 or NUMBER == nil then
  1593. fat.Event:wait()
  1594. else
  1595. for i = 1, NUMBER do
  1596. fat.Event:wait()
  1597. end
  1598. end
  1599. end
  1600.  
  1601. function Landing2()
  1602. local rng = Instance.new("Part", char)
  1603. rng.Anchored = true
  1604. rng.BrickColor = BrickColor.new("Lime green")
  1605. rng.CanCollide = false
  1606. rng.FormFactor = 3
  1607. rng.Name = "Ring"
  1608. rng.Size = Vector3.new(1, 1, 1)
  1609. rng.Transparency = 0
  1610. rng.TopSurface = 0
  1611. rng.BottomSurface = 0
  1612. rng.Position = root.Position
  1613. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1614. local rngm = Instance.new("SpecialMesh", rng)
  1615. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1616. local rng2 = rng:Clone()
  1617. rng2.Parent = char
  1618. local rng2m = rng2.Mesh
  1619. local rng3 = rng:Clone()
  1620. rng3.Parent = char
  1621. local rng3m = rng3.Mesh
  1622. local rng4 = rng:Clone()
  1623. rng4.Parent = char
  1624. local rng4m = rng4.Mesh
  1625. local rng5 = rng:Clone()
  1626. rng5.Parent = char
  1627. local rng5m = rng5.Mesh
  1628. for i,v in pairs(FindNearestTorso(torso.CFrame.p,905))do
  1629. if v:FindFirstChild('Humanoid') then
  1630. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1631. v.Humanoid.PlatformStand = true
  1632. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1633. end
  1634. end
  1635. --MagicBlock(BrickColor.new("Lime green"),root.CFrame,15,15,15,5,5,5,0.015)
  1636. -- CFuncs["Sound"].Create("rbxassetid://187137517", rng, 10, 1)
  1637. --CFuncs["Sound"].Create("rbxassetid://597291504", rng, 5, 0.85)
  1638. ---CFuncs["Sound"].Create("rbxassetid://144699494", rng, 10, 1)
  1639. wait()
  1640. local scaler = 10
  1641. local scaler2 = 10
  1642. for i = 0,10,0.1 do
  1643. Swait()
  1644. rng.Transparency = rng.Transparency + 0.01
  1645. rng2.Transparency = rng2.Transparency + 0.01
  1646. rng3.Transparency = rng3.Transparency + 0.01
  1647. rng4.Transparency = rng4.Transparency + 0.01
  1648. rng5.Transparency = rng5.Transparency + 0.01
  1649. scaler = scaler - 0.125
  1650. scaler2 = scaler2 - 0.1
  1651. rng2m.Scale = rng2m.Scale + Vector3.new(scaler2/1.75, scaler2/1.75, 4)
  1652. rng3m.Scale = rng3m.Scale + Vector3.new(scaler2/1.5, scaler2/1.5, 3)
  1653. rng4m.Scale = rng4m.Scale + Vector3.new(scaler2/1.25, scaler2/1.25, 2)
  1654. rng5m.Scale = rng5m.Scale + Vector3.new(scaler2, scaler2, 1)
  1655. rng5.Size = rng5m.Scale
  1656. rng5.CFrame = rng.CFrame
  1657. rngm.Scale = rngm.Scale + Vector3.new(scaler2/2, scaler2/2, 5)
  1658. end
  1659. end
  1660. function Landing()
  1661. Grabee = torso
  1662. par,loc=workspace:FindPartOnRay(Ray.new(char.Torso.Position,(char.Torso.Position-(char.Torso.Position-Vector3.new(0,2,0))).unit*-500),char)
  1663. if par then
  1664. local cfremz = CFrame.new(loc)
  1665. debris(cfremz, par, 50)
  1666. end
  1667. for i=1, 50 do
  1668. p=Instance.new("Part")
  1669. p.FrontSurface=par.TopSurface
  1670. p.Material=par.Material
  1671. p.BottomSurface=0
  1672. p.Anchored=true p.CanCollide=false
  1673. p.BrickColor=par.BrickColor
  1674. p.Size=Vector3.new(math.random(15,35)/5,math.random(15,35)/5,math.random(4,5))
  1675. p.CFrame=CFrame.new(Grabee.Position-Vector3.new(math.random(-i,i)/1,3,math.random(-i,i)/1),loc+Vector3.new(0,1000-i*20,0))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/30,math.random(-10,10)/30,math.random(-10,10)/30)
  1676. p.Parent=char
  1677. game:GetService("Debris"):AddItem(p,2+i*.1)
  1678. if math.random(1,5)==5 then
  1679. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=30 f.RiseVelocity=0 f.Opacity=.025 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  1680. end
  1681. end
  1682. for i=1, 50 do
  1683. for i=1, 1 do
  1684. p=Instance.new("Part")
  1685. p.TopSurface=par.TopSurface
  1686. p.BottomSurface=par.BottomSurface
  1687. p.Material=par.Material
  1688. p.BottomSurface=0
  1689. p.Anchored=false p.CanCollide=true
  1690. p.BrickColor=par.BrickColor
  1691. p.formFactor="Custom"
  1692. p.Size=Vector3.new(math.random(15,35)/12,math.random(13,35)/12,math.random(15,35)/12)
  1693. p.CFrame=CFrame.new(Grabee.Position-Vector3.new(math.random(-4,4),-2,math.random(-4,4)))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/20,math.random(-10,10)/5,math.random(-10,10)/20)
  1694. p.Parent=char
  1695. game:GetService("Debris"):AddItem(p,3+i*.1)
  1696. p.Velocity=Vector3.new(math.random(-10,10)*4,math.random(40,80),math.random(-10,10)*4)
  1697. p.RotVelocity=p.Velocity
  1698. if math.random(1,5)==5 then
  1699. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=15 f.RiseVelocity=10 f.Opacity=.1 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  1700. end
  1701. end
  1702. Swait(.025)
  1703. end
  1704. end
  1705.  
  1706.  
  1707.  
  1708.  
  1709. --------------------------------------
  1710. plr=game:service'Players'.LocalPlayer
  1711. chr=plr.Character
  1712. local ms = plr:GetMouse()
  1713. CV="Bright red"
  1714.  
  1715. local txt = Instance.new("BillboardGui", chr)
  1716. txt.Adornee = chr.Head
  1717. txt.Name = "_status"
  1718. txt.Size = UDim2.new(4, 0, 2.5, 0)
  1719. txt.StudsOffset = Vector3.new(-4, 1.5, 0)
  1720. local text = Instance.new("TextLabel", txt)
  1721. text.Size = UDim2.new(3, 0, 0.5, 0)
  1722. text.FontSize = "Size24"
  1723. text.TextScaled = false
  1724. text.TextTransparency = 0
  1725. text.BackgroundTransparency = 1
  1726. text.TextTransparency = 0
  1727. text.TextStrokeTransparency = 0
  1728. text.Font = "SciFi"
  1729. text.TextStrokeColor3 = Color3.new(128,0,128)
  1730. text.Text = "by bannaboy43"
  1731. ---------------------shout---------------------------------------------------------
  1732. local plr = game:GetService"Players".LocalPlayer;local mouse = plr:GetMouse()
  1733. repeat wait() until plr.Character;local char = plr.Character;local hr = char:WaitForChild"HumanoidRootPart";local plrHum;repeat wait()plrHum = char:FindFirstChildWhichIsA"Humanoid" until plrHum~=nil;local keydown = false;local playing = false;rt = 0 ;m = Instance.new"Part";meshID = 'rbxassetid://1471350128' ;gc = game.Workspace.CurrentCamera;BLAST_FORCE = 2000
  1734. local s;fire = function()local pos = hr.CFrame + hr.CFrame.lookVector *5 + Vector3.new(0,1.5,0)for i =1,1 do local m2 = m:Clone();local mesh = Instance.new("FileMesh")mesh.MeshId = 'rbxassetid://1471350128';mesh.Parent= m2;m2.Size = Vector3.new(5,5,.5);local bv = Instance.new'BodyVelocity';
  1735. bv.MaxForce= Vector3.new(math.huge,math.huge,math.huge);m2.CFrame = pos;bv.Velocity = m2.CFrame.lookVector *180;m2.Locked = true;m2.CanCollide = false;m2.Anchored = false;bv.Parent = m2;m2.Parent = workspace;coroutine.resume(coroutine.create(function()for a =1,5 do m2.Size = Vector3.new(a*2,a*2,.5)mesh.Scale = Vector3.new(a*2,a*2,.5)wait();end;end));m2.Touched:connect(function(hit)
  1736. if hit.Name ~= "Baseplate" and hit.Name ~="Base" then
  1737. hit.Anchored = false;hit:BreakJoints()local blastForce = Instance.new('BodyForce', hit) blastForce.force = m2.CFrame.lookVector * BLAST_FORCE * hit:GetMass()
  1738. game.Debris:AddItem(blastForce,.1)end;end)wait()game.Debris:AddItem(m2,2)end;--[[GETOUT OF ME CODE M8]]end;deb = function ()hr.Anchored = false;wait(rt)keydown = false end;mouse.KeyDown:connect(function(key)key = key:lower()if key == 't' and keydown == false then local m2 =m:Clone()s=nil;m2.Locked = true;m2.Size = Vector3.new(5,5,.5)keydown = true;while keydown == true do hr.Anchored = true
  1739. hr.CFrame = CFrame.new(hr.Position,mouse.Hit.p)m2.Size = m2.Size + Vector3.new(.5,.5,0)
  1740. m2.CFrame = hr.CFrame+ hr.CFrame.lookVector *2;s = m2.Size;wait()end;game.Debris:AddItem(m2,0.11)end;end)
  1741. ku = function(key)key = key:lower()if key == 't' and keydown ~= nil then local s = Instance.new("Sound");s.SoundId = 'rbxassetid://862467390';s.Volume =4;s.Parent = workspace s:Play();wait(1)coroutine.resume(coroutine.create(fire))keydown = nil;deb();end;end;mouse.KeyUp:connect(ku)
  1742.  
  1743.  
  1744.  
  1745.  
  1746.  
  1747. mouse.KeyDown:connect(function(key)
  1748. if key == "m" then
  1749. hum.WalkSpeed = 0
  1750. if Debounces.CanAttack == true then
  1751. Debounces.CanAttack = false
  1752. Debounces.on = true
  1753. Debounces.NoIdl = true
  1754.  
  1755. for i = 1, 20 do
  1756. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  1757. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  1758. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  1759. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  1760. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  1761. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  1762. if Debounces.on == false then break end
  1763. wait()
  1764.  
  1765. end
  1766. wait(1)
  1767. local rng = Instance.new("Part", char)
  1768. rng.Anchored = true
  1769. rng.BrickColor = BrickColor.new("Lime green")
  1770. rng.CanCollide = false
  1771. rng.FormFactor = 3
  1772. rng.Name = "Ring"
  1773. rng.Size = Vector3.new(1, 1, 1)
  1774. rng.Transparency = 0.35
  1775. rng.TopSurface = 0
  1776. rng.BottomSurface = 0
  1777. rng.Position = torso.Position - Vector3.new(0,2,0)
  1778. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1779. local rngm = Instance.new("SpecialMesh", rng)
  1780. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1781. rngm.Scale = Vector3.new(1, 1, 2)
  1782. l = Instance.new("Sound",char)
  1783. l.SoundId = "http://www.roblox.com/asset/?id=169445602"
  1784. l.Looped = false
  1785. l.Pitch = .7
  1786. l.Volume = 1
  1787. l:Play()
  1788. coroutine.wrap(function()
  1789. for i = 1, 60, 2 do
  1790. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  1791. rng.Transparency = i/60
  1792. wait()
  1793. end
  1794. wait()
  1795. rng:Destroy()
  1796. end)()
  1797. hum.WalkSpeed = 50
  1798. BV = Instance.new("BodyVelocity", torso)
  1799. BV.maxForce = Vector3.new(0,100000,0)
  1800. BV.P = 100000
  1801. BV.velocity = Vector3.new(0,999999,0)
  1802. for i = 1, 55 do
  1803. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  1804. 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)
  1805. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  1806. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  1807. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  1808. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  1809. if Debounces.on == false then break end
  1810. wait()
  1811. end
  1812. l:Destroy()
  1813. BV:Destroy()
  1814. coroutine.resume(coroutine.create(function()
  1815. wait(0.01)
  1816. l = Instance.new("Sound",char)
  1817. l.SoundId = "http://www.roblox.com/asset/?id=862491729"
  1818. l.Looped = false
  1819. l.Pitch = 1
  1820. l.Volume = 80
  1821. l:Play()
  1822. end))
  1823. for i = 1, 60 do
  1824. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.4)
  1825. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.4)
  1826. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  1827. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  1828. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  1829. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  1830. if Debounces.on == false then break end
  1831. wait()
  1832. end
  1833. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  1834. for i = 1, 30 do
  1835. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  1836. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  1837. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  1838. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  1839. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  1840. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  1841. if Debounces.on == false then break end
  1842. wait()
  1843. end
  1844. end
  1845. Debounces.on = false
  1846. Debounces.NoIdl = false
  1847. local ry,ht,ps=nil,nil,nil
  1848. while ht==nil do
  1849. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  1850. wait()
  1851. end
  1852.  
  1853.  
  1854. coroutine.resume(coroutine.create(function()
  1855.  
  1856. for i,v in pairs(workspace:children()) do
  1857. charr = v:FindFirstChild('Character')
  1858. for i = 1, 15 do
  1859. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1860. wait()
  1861. end
  1862.  
  1863. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  1864. end
  1865. end))
  1866.  
  1867.  
  1868.  
  1869.  
  1870. coroutine.resume(coroutine.create(function()
  1871. for i = 1, 15 do
  1872. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1873. wait()
  1874. end
  1875. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  1876. end))
  1877.  
  1878.  
  1879. coroutine.resume(coroutine.create(function()
  1880. Landing2()
  1881. end))
  1882. Landing()
  1883. game:GetService("Debris"):AddItem(rng, 1)
  1884. game:GetService("Debris"):AddItem(rng2, 1)
  1885. game:GetService("Debris"):AddItem(rng3, 1)
  1886. game:GetService("Debris"):AddItem(rng4, 1)
  1887. game:GetService("Debris"):AddItem(rng5, 1)
  1888. hum.WalkSpeed = 5
  1889. if Debounces.CanAttack == false then
  1890. Debounces.CanAttack = true
  1891. end
  1892. end
  1893. end
  1894. end)
  1895.  
  1896.  
  1897.  
  1898. ptez = {0.7, 0.8, 0.9, 1}
  1899.  
  1900. function GroundPound()
  1901. local rng = Instance.new("Part", char)
  1902. rng.Anchored = true
  1903. rng.BrickColor = BrickColor.new("Lime green")
  1904. rng.CanCollide = false
  1905. rng.FormFactor = 3
  1906. rng.Name = "Ring"
  1907. rng.Size = Vector3.new(1, 1, 1)
  1908. rng.Transparency = 0.35
  1909. rng.TopSurface = 0
  1910. rng.BottomSurface = 0
  1911. rng.Position = larm.Position - Vector3.new(0,4,0)
  1912. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1913. local rngm = Instance.new("SpecialMesh", rng)
  1914. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1915. rngm.Scale = Vector3.new(1, 1, 2)
  1916. coroutine.resume(coroutine.create(function()
  1917. t = Instance.new("Sound",char)
  1918. t.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1919. t.Pitch = ptez[math.random(1,#ptez)]
  1920. t.Volume = 1
  1921. wait(.1)
  1922. t:Play()
  1923. end))
  1924. coroutine.wrap(function()
  1925. for i = 1, 60, 2 do
  1926. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  1927. rng.Transparency = i/60
  1928. wait()
  1929. end
  1930. wait()
  1931. rng:Destroy()
  1932. end)()
  1933.  
  1934. end
  1935.  
  1936.  
  1937. function GroundPound2()
  1938. local rng = Instance.new("Part", char)
  1939. rng.Anchored = true
  1940. rng.BrickColor = BrickColor.new("Lime green")
  1941. rng.CanCollide = false
  1942. rng.FormFactor = 3
  1943. rng.Name = "Ring"
  1944. rng.Size = Vector3.new(1, 1, 1)
  1945. rng.Transparency = 0.35
  1946. rng.TopSurface = 0
  1947. rng.BottomSurface = 0
  1948. rng.Position = rarm.Position - Vector3.new(0,4,0)
  1949. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1950. local rngm = Instance.new("SpecialMesh", rng)
  1951. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1952. rngm.Scale = Vector3.new(1, 1, 2)
  1953. coroutine.resume(coroutine.create(function()
  1954. t = Instance.new("Sound",char)
  1955. t.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1956. t.Pitch = ptez[math.random(1,#ptez)]
  1957. t.Volume = 1
  1958. wait(.1)
  1959. t:Play()
  1960. end))
  1961. coroutine.wrap(function()
  1962. for i = 1, 60, 2 do
  1963. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  1964. rng.Transparency = i/60
  1965. wait()
  1966. end
  1967. wait()
  1968. rng:Destroy()
  1969. end)()
  1970. end
  1971.  
  1972.  
  1973.  
  1974.  
  1975. mouse.KeyDown:connect(function(key)
  1976. if key == "e" then
  1977. if Debounces.CanAttack == true then
  1978. Debounces.CanAttack = false
  1979. Debounces.NoIdl = true
  1980. Debounces.on = true
  1981.  
  1982.  
  1983.  
  1984.  
  1985. coroutine.resume(coroutine.create(function()
  1986.  
  1987. for i,v in pairs(workspace:children()) do
  1988. charr = v:FindFirstChild('Character')
  1989. for i = 1, 48 do
  1990. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1991. wait()
  1992. end
  1993.  
  1994. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  1995. end
  1996. end))
  1997.  
  1998.  
  1999.  
  2000.  
  2001. coroutine.resume(coroutine.create(function()
  2002. for i = 1, 78 do
  2003. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2004. wait()
  2005. end
  2006. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2007. end))
  2008.  
  2009.  
  2010. coroutine.resume(coroutine.create(function()
  2011. wait(0.1)
  2012. for i = 1,78 do
  2013. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2014. if v:FindFirstChild('Humanoid') then
  2015. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2016. v.Humanoid.PlatformStand = true
  2017. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2018. end
  2019. end
  2020. end
  2021. end))
  2022.  
  2023. GroundPound()
  2024. for i = 1, 5 do
  2025. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2026. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2027. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2028. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2029. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2030. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2031. if Debounces.on == false then break end
  2032. wait()
  2033. end
  2034. GroundPound2()
  2035. for i = 1, 5 do
  2036. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2037. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2038. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2039. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2040. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2041. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2042. if Debounces.on == false then break end
  2043. wait()
  2044. end
  2045. GroundPound()
  2046. for i = 1, 5 do
  2047. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2048. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2049. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2050. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2051. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2052. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2053. if Debounces.on == false then break end
  2054. wait()
  2055. end
  2056. GroundPound2()
  2057. for i = 1, 5 do
  2058. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2059. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2060. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2061. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2062. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2063. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2064. if Debounces.on == false then break end
  2065. wait()
  2066. end
  2067. GroundPound()
  2068. for i = 1, 5 do
  2069. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2070. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2071. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2072. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2073. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2074. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2075. if Debounces.on == false then break end
  2076. wait()
  2077. end
  2078. GroundPound2()
  2079. for i = 1, 5 do
  2080. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2081. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2082. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2083. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2084. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2085. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2086. if Debounces.on == false then break end
  2087. wait()
  2088. end
  2089. GroundPound()
  2090. for i = 1, 5 do
  2091. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2092. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2093. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2094. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2095. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2096. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2097. if Debounces.on == false then break end
  2098. wait()
  2099. end
  2100. GroundPound2()
  2101. for i = 1, 5 do
  2102. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2103. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2104. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2105. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2106. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2107. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2108. if Debounces.on == false then break end
  2109. wait()
  2110. end
  2111. GroundPound()
  2112. for i = 1, 5 do
  2113. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2114. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2115. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2116. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2117. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2118. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2119. if Debounces.on == false then break end
  2120. wait()
  2121. end
  2122. GroundPound2()
  2123. for i = 1, 5 do
  2124. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2125. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2126. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2127. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2128. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2129. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2130. if Debounces.on == false then break end
  2131. wait()
  2132. end
  2133. GroundPound()
  2134. for i = 1, 5 do
  2135. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2136. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2137. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2138. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2139. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2140. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2141. if Debounces.on == false then break end
  2142. wait()
  2143. end
  2144. GroundPound2()
  2145. for i = 1, 5 do
  2146. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2147. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2148. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2149. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2150. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2151. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2152. if Debounces.on == false then break end
  2153. wait()
  2154. end
  2155. GroundPound()
  2156. for i = 1, 5 do
  2157. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2158. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2159. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2160. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2161. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2162. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2163. if Debounces.on == false then break end
  2164. wait()
  2165. end
  2166. GroundPound2()
  2167. for i = 1, 5 do
  2168. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2169. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2170. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2171. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2172. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2173. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2174. if Debounces.on == false then break end
  2175. wait()
  2176. end
  2177. GroundPound()
  2178. for i = 1, 5 do
  2179. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2180. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2181. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2182. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2183. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2184. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2185. if Debounces.on == false then break end
  2186. wait()
  2187. end
  2188. GroundPound2()
  2189. for i = 1, 5 do
  2190. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2191. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2192. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2193. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2194. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2195. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2196. if Debounces.on == false then break end
  2197. wait()
  2198. end
  2199.  
  2200.  
  2201.  
  2202. if Debounces.CanAttack == false then
  2203. Debounces.CanAttack = true
  2204. Debounces.on = false
  2205. Debounces.NoIdl = false
  2206.  
  2207. end
  2208. end
  2209. end
  2210. end)
  2211. local mouse = game.Players.LocalPlayer:GetMouse()
  2212. local running = false
  2213.  
  2214. function getTool()
  2215. for _, kid in ipairs(script.Parent:GetChildren()) do
  2216. if kid.className == "Tool" then return kid end
  2217. end
  2218. return nil
  2219. end
  2220.  
  2221.  
  2222. mouse.KeyDown:connect(function (key) -- Run function
  2223. key = string.lower(key)
  2224. if string.byte(key) == 48 then
  2225. running = true
  2226. local keyConnection = mouse.KeyUp:connect(function (key)
  2227. if string.byte(key) == 48 then
  2228. running = false
  2229. end
  2230. end)
  2231. for i = 1,5 do
  2232. game.Workspace.CurrentCamera.FieldOfView = (70+(i*2))
  2233. wait()
  2234. end
  2235. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150
  2236. repeat wait () until running == false
  2237. keyConnection:disconnect()
  2238. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  2239. for i = 1,5 do
  2240. game.Workspace.CurrentCamera.FieldOfView = (80-(i*2))
  2241. wait()
  2242. end
  2243. end
  2244. end)
  2245.  
  2246.  
  2247.  
  2248. -------------Head---------------------------------
  2249. char:FindFirstChildOfClass'Humanoid'.JumpPower = 100
  2250.  
  2251. Head = Instance.new("Part", char)
  2252. Head.Size = Vector3.new(1,1,1)
  2253. Headmesh = Instance.new("SpecialMesh", Head)
  2254. Headmesh.MeshId = "rbxassetid://1076171579"
  2255. Headmesh.Scale = Vector3.new(1.7,1.4,1.7)
  2256. Headmesh.TextureId = "rbxassetid://1076171180"
  2257. Head.Transparency = 0
  2258. Head.CanCollide = false
  2259. Head.Name = "plrHead"
  2260. Head.Anchored = false
  2261. Head.BrickColor = BrickColor.new("Really black")
  2262. Weld = Instance.new("Weld", char)
  2263. Weld.Part0 = char["Head"]
  2264. Weld.Part1 = Head
  2265. Weld.C1 = CFrame.new(0,-1,-0.1)*CFrame.Angles(0,(0),0)
  2266. -----------------------------------------------
  2267. Instance.new("ForceField",char).Visible = false
  2268. local poo = Instance.new("IntValue",char)
  2269. poo.Name = "haha nope"
  2270. char.Humanoid.MaxHealth = math.huge
  2271. wait()
  2272. char.Humanoid.Health = math.huge
  2273. Instance.new("ForceField",char).Visible = false
  2274.  
  2275. local s = Instance.new('Shirt', char)
  2276. s.ShirtTemplate = "rbxassetid://1080040635"
  2277. local p = Instance.new('Pants', char)
  2278. p.PantsTemplate = "rbxassetid://1080039568"
  2279. char.Head.face.Texture = "rbxassetid://1364919858"
  2280.  
  2281.  
  2282. local animpose = "Idle"
  2283. local lastanimpose = "Idle"
  2284. local sine = 0
  2285. local change = 1
  2286. local val = 0
  2287. local ffing = false
  2288. ----------------------------------------------------
  2289. x = Instance.new("Sound", char)
  2290. x.SoundId = "http://www.roblox.com/asset/?id=457248503"
  2291. x.Looped = true
  2292. x.Volume = 30
  2293. x.Pitch = 1
  2294. local footsteps = false
  2295. -------------------------------
  2296. game:GetService("RunService").RenderStepped:connect(function()
  2297. if char.Humanoid.Jump == true then
  2298. jump = true
  2299. else
  2300. jump = false
  2301. end
  2302. char.Humanoid.FreeFalling:connect(function(f)
  2303. if f then
  2304. ffing = true
  2305. else
  2306. ffing = false
  2307. end
  2308. end)
  2309. sine = sine + change
  2310. if jumpn == true then
  2311. animpose = "Jumping"
  2312. elseif ffing == true then
  2313. animpose = "Freefalling"
  2314. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  2315. animpose = "Idle"
  2316. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  2317. animpose = "Walking"
  2318. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  2319. animpose = "Running"
  2320. end
  2321. if animpose ~= lastanimpose then
  2322. sine = 0
  2323. if Debounces.NoIdl == false then
  2324. if animpose == "Idle" then
  2325. for i = 1, 2 do
  2326. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  2327. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  2328. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2329. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2330. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2331. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2332. end
  2333. elseif animpose == "Walking" then
  2334. for i = 1, 2 do
  2335. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(0)), 0.2)
  2336. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  2337. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  2338. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  2339. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  2340. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  2341. end
  2342. elseif animpose == "Running" then
  2343. for i = 1, 2 do
  2344. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-0), math.rad(-40), math.rad(0)), 0.2)
  2345. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  2346. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  2347. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  2348. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  2349. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  2350. end
  2351. wait()
  2352. end
  2353. else
  2354. end
  2355. end
  2356. lastanimpose = animpose
  2357. if Debounces.NoIdl == false then
  2358. if animpose == "Idle" then
  2359. if stanceToggle == "Normal" then
  2360. change = 0.5
  2361. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(50),math.rad(0)), 0.2)
  2362. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  2363. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  2364. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  2365. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2366. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2367.  
  2368. elseif stanceToggle == "Sitting" then
  2369. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  2370. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
  2371. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  2372. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  2373. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  2374. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  2375. end
  2376. elseif animpose == "Walking" then
  2377. if stanceToggle == "Normal" then
  2378. change = 1
  2379. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/-4, math.rad(1) + -math.sin(sine/14)/2, math.rad(30)), 0.1)
  2380. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.1)
  2381. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  2382. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  2383. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .1)
  2384. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .1)
  2385. end
  2386. elseif animpose == "Running" then
  2387. change = 1
  2388. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  2389. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  2390. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  2391. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  2392. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  2393. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  2394. end
  2395. end
  2396. if animpose == "Walking" then
  2397. if footsteps == false then
  2398. x:Play()
  2399. footsteps = true
  2400. end
  2401. x.Pitch = 0.9
  2402. elseif animpose == "Idle" then
  2403. x:Stop()
  2404. footsteps = false
  2405. elseif animpose == "Running" then
  2406. x.Pitch = 1.2
  2407. if footsteps == false then
  2408. x:Play()
  2409. footsteps = true
  2410. end
  2411. end
  2412. end)
  2413. -------Radioactive party boi by goodguyaiden-------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement