Advertisement
lafur

Untitled

Sep 22nd, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 142.81 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 -------Radioactive party boi by goodguyaiden-------
  6. local p = game.Players.LocalPlayer
  7. local char = p.Character
  8. local mouse = p:GetMouse()
  9. local larm = char["Left Arm"]
  10. local rarm = char["Right Arm"]
  11. local lleg = char["Left Leg"]
  12. local rleg = char["Right Leg"]
  13. local hed = char.Head
  14. local torso = char.Torso
  15. local hum = char.Humanoid
  16. local cam = game.Workspace.CurrentCamera
  17. local root = char.HumanoidRootPart
  18. local deb = false
  19. local shot = 0
  20. local l = game:GetService("Lighting")
  21. local rs = game:GetService("RunService").RenderStepped
  22. local stanceToggle = "Normal"
  23. local rad = math.rad
  24. local GroundShake = false
  25. local GroundShake2 = false
  26. math.randomseed(os.time())
  27. hum.WalkSpeed = 5
  28. char.Health:Destroy()
  29. hum.MaxHealth = math.huge
  30. wait(0.1)
  31. hum.Health = math.huge
  32. ----------------------------------------------------
  33. Debounces = {
  34. on = false;
  35. ks = false;
  36. CanAttack = true;
  37. CanJoke = true;
  38. NoIdl = false;
  39. Slashing = false;
  40. Slashed = false;
  41. Grabbing = false;
  42. Grabbed = false;
  43. }
  44. local Touche = {char.Name, }
  45. ----------------------------------------------------
  46. function lerp(a, b, t) -- Linear interpolation
  47. return a + (b - a)*t
  48. end
  49.  
  50. function slerp(a, b, t) --Spherical interpolation
  51. dot = a:Dot(b)
  52. if dot > 0.99999 or dot < -0.99999 then
  53. return t <= 0.5 and a or b
  54. else
  55. r = math.acos(dot)
  56. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  57. end
  58. end
  59.  
  60. function matrixInterpolate(a, b, t)
  61. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  62. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  63. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  64. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  65. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  66. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  67. local t = v1:Dot(v2)
  68. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  69. return CFrame.new()
  70. end
  71. return CFrame.new(
  72. v0.x, v0.y, v0.z,
  73. v1.x, v1.y, v1.z,
  74. v2.x, v2.y, v2.z,
  75. v3.x, v3.y, v3.z)
  76. end
  77. ----------------------------------------------------
  78. function genWeld(a,b)
  79. local w = Instance.new("Weld",a)
  80. w.Part0 = a
  81. w.Part1 = b
  82. return w
  83. end
  84. function weld(a, b)
  85. local weld = Instance.new("Weld")
  86. weld.Name = "W"
  87. weld.Part0 = a
  88. weld.Part1 = b
  89. weld.C0 = a.CFrame:inverse() * b.CFrame
  90. weld.Parent = a
  91. return weld;
  92. end
  93. ----------------------------------------------------
  94. function Lerp(c1,c2,al)
  95. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  96. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  97. for i,v in pairs(com1) do
  98. com1[i] = v+(com2[i]-v)*al
  99. end
  100. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  101. end
  102. ----------------------------------------------------
  103. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  104. local wld = Instance.new("Weld", wp1)
  105. wld.Part0 = wp0
  106. wld.Part1 = wp1
  107. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  108. end
  109. ----------------------------------------------------
  110. for i,v in pairs(char:children()) do
  111. if v:IsA("Hat") then
  112. v:Destroy()
  113. end
  114. end
  115. for i,v in pairs(hed:children()) do
  116. if v:IsA("Sound") then
  117. v:Destroy()
  118. end
  119. end
  120. ----------------------------------------------------
  121. function HasntTouched(plrname)
  122. local ret = true
  123. for _, v in pairs(Touche) do
  124. if v == plrname then
  125. ret = false
  126. end
  127. end
  128. return ret
  129. end
  130. ----------------------------------------------------
  131. larm.Size = larm.Size * 2
  132. rarm.Size = rarm.Size * 2
  133. lleg.Size = lleg.Size * 2
  134. rleg.Size = rleg.Size * 2
  135. torso.Size = torso.Size * 2
  136. hed.Size = hed.Size * 2
  137. root.Size = root.Size * 2
  138. ----------------------------------------------------
  139. newWeld(torso, larm, -1.5, 0.5, 0)
  140. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  141. newWeld(torso, rarm, 1.5, 0.5, 0)
  142. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  143. newWeld(torso, hed, 0, 1.5, 0)
  144. newWeld(torso, lleg, -0.5, -1, 0)
  145. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  146. newWeld(torso, rleg, 0.5, -1, 0)
  147. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  148. newWeld(root, torso, 0, -1, 0)
  149. torso.Weld.C1 = CFrame.new(0, -1, 0)
  150. ----------------------------------------------------
  151. z = Instance.new("Sound", char)
  152. z.SoundId = "rbxassetid://590156873"--511077154
  153. z.Looped = true
  154. z.Pitch = 1
  155. z.Volume = 5
  156. wait(.01)
  157. z:Play()
  158. ----------------------------------------------------
  159.  
  160.  
  161. p:ClearCharacterAppearance()
  162. wait(0.1)
  163. p.Character.Head.BrickColor = BrickColor.new("Really black")
  164. p.Character.Torso.BrickColor = BrickColor.new("Really black")
  165. p.Character["Right Arm"].BrickColor = BrickColor.new("Really black")
  166. p.Character["Right Leg"].BrickColor = BrickColor.new("Really black")
  167. p.Character["Left Leg"].BrickColor = BrickColor.new("Really black")
  168. p.Character["Left Arm"].BrickColor = BrickColor.new("Really black")
  169.  
  170.  
  171. p.Character.Head.Material = "Ice"
  172. p.Character.Torso.Material = "Ice"
  173. p.Character["Right Arm"].Material = "Ice"
  174. p.Character["Right Leg"].Material = "Ice"
  175. p.Character["Left Leg"].Material = "Ice"
  176. p.Character["Left Arm"].Material = "Ice"
  177.  
  178.  
  179.  
  180.  
  181.  
  182. local m = Instance.new("Model")
  183. m.Name = "JackoAxe"
  184. p1 = Instance.new("Part", m)
  185. p1.BrickColor = BrickColor.new("Lime green")
  186. p1.Material = "Neon"
  187. p1.FormFactor = Enum.FormFactor.Custom
  188. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  189. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  190. p1.CanCollide = false
  191. p1.Locked = true
  192. p1.Elasticity = 0
  193. p1.BottomSurface = Enum.SurfaceType.Smooth
  194. p1.TopSurface = Enum.SurfaceType.Smooth
  195. b1 = Instance.new("SpecialMesh", p1)
  196. b1.MeshType = Enum.MeshType.Wedge
  197. b1.Name = "Mesh"
  198. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  199. p2 = Instance.new("Part", m)
  200. p2.BrickColor = BrickColor.new("Lime green")
  201. p2.FormFactor = Enum.FormFactor.Custom
  202. p2.Size = Vector3.new(1, 2.9000001, 1)
  203. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  204. p2.CanCollide = false
  205. p2.Locked = true
  206. p2.Elasticity = 0
  207. p2.BottomSurface = Enum.SurfaceType.Smooth
  208. p2.TopSurface = Enum.SurfaceType.Smooth
  209. b2 = Instance.new("BlockMesh", p2)
  210. b2.Name = "Mesh"
  211. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  212. p3 = Instance.new("Part", m)
  213. p3.BrickColor = BrickColor.new("Lime green")
  214. p3.Material = "Neon"
  215. p3.FormFactor = Enum.FormFactor.Custom
  216. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  217. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  218. p3.CanCollide = false
  219. p3.Locked = true
  220. p3.Elasticity = 0
  221. p3.BottomSurface = Enum.SurfaceType.Smooth
  222. p3.TopSurface = Enum.SurfaceType.Smooth
  223. b3 = Instance.new("SpecialMesh", p3)
  224. b3.MeshType = Enum.MeshType.Wedge
  225. b3.Name = "Mesh"
  226. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  227. p4 = Instance.new("Part", m)
  228. p4.BrickColor = BrickColor.new("Lime green")
  229. p4.Material = "Neon"
  230. p4.FormFactor = Enum.FormFactor.Custom
  231. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  232. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  233. p4.CanCollide = false
  234. p4.Locked = true
  235. p4.Elasticity = 0
  236. p4.BottomSurface = Enum.SurfaceType.Smooth
  237. p4.TopSurface = Enum.SurfaceType.Smooth
  238. b4 = Instance.new("SpecialMesh", p4)
  239. b4.MeshType = Enum.MeshType.Wedge
  240. b4.Name = "Mesh"
  241. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  242. p5 = Instance.new("Part", m)
  243. p5.BrickColor = BrickColor.new("Lime green")
  244. p5.Material = "Neon"
  245. p5.FormFactor = Enum.FormFactor.Custom
  246. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  247. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  248. p5.CanCollide = false
  249. p5.Locked = true
  250. p5.Elasticity = 0
  251. p5.BottomSurface = Enum.SurfaceType.Smooth
  252. p5.TopSurface = Enum.SurfaceType.Smooth
  253. b5 = Instance.new("SpecialMesh", p5)
  254. b5.MeshType = Enum.MeshType.Wedge
  255. b5.Name = "Mesh"
  256. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  257. p6 = Instance.new("Part", m)
  258. p6.Name = "Handle"
  259. p6.BrickColor = BrickColor.new("Lime green")
  260. p6.FormFactor = Enum.FormFactor.Custom
  261. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  262. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  263. p6.CanCollide = false
  264. p6.Locked = true
  265. p6.Elasticity = 0
  266. p6.BottomSurface = Enum.SurfaceType.Smooth
  267. p6.TopSurface = Enum.SurfaceType.Smooth
  268. b6 = Instance.new("BlockMesh", p6)
  269. b6.Name = "Mesh"
  270. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  271. p7 = Instance.new("Part", m)
  272. p7.BrickColor = BrickColor.new("Lime green")
  273. p7.Material = "Neon"
  274. p7.FormFactor = Enum.FormFactor.Custom
  275. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  276. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  277. p7.CanCollide = false
  278. p7.Locked = true
  279. p7.Elasticity = 0
  280. p7.BottomSurface = Enum.SurfaceType.Smooth
  281. p7.TopSurface = Enum.SurfaceType.Smooth
  282. b7 = Instance.new("SpecialMesh", p7)
  283. b7.MeshType = Enum.MeshType.Wedge
  284. b7.Name = "Mesh"
  285. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  286. p8 = Instance.new("Part", m)
  287. p8.BrickColor = BrickColor.new("Lime green")
  288. p8.Material = "Neon"
  289. p8.FormFactor = Enum.FormFactor.Custom
  290. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  291. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  292. p8.CanCollide = false
  293. p8.Locked = true
  294. p8.Elasticity = 0
  295. p8.BottomSurface = Enum.SurfaceType.Smooth
  296. p8.TopSurface = Enum.SurfaceType.Smooth
  297. b8 = Instance.new("SpecialMesh", p8)
  298. b8.MeshType = Enum.MeshType.Wedge
  299. b8.Name = "Mesh"
  300. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  301. p9 = Instance.new("Part", m)
  302. p9.BrickColor = BrickColor.new("Lime green")
  303. p9.FormFactor = Enum.FormFactor.Custom
  304. p9.Size = Vector3.new(1, 1.07999957, 1)
  305. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  306. p9.CanCollide = false
  307. p9.Locked = true
  308. p9.Elasticity = 0
  309. p9.BottomSurface = Enum.SurfaceType.Smooth
  310. p9.TopSurface = Enum.SurfaceType.Smooth
  311. b9 = Instance.new("BlockMesh", p9)
  312. b9.Name = "Mesh"
  313. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  314. p10 = Instance.new("Part", m)
  315. p10.BrickColor = BrickColor.new("Lime green")
  316. p10.FormFactor = Enum.FormFactor.Custom
  317. p10.Size = Vector3.new(1, 1.41999948, 1)
  318. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  319. p10.CanCollide = false
  320. p10.Locked = true
  321. p10.Elasticity = 0
  322. p10.BottomSurface = Enum.SurfaceType.Smooth
  323. p10.TopSurface = Enum.SurfaceType.Smooth
  324. b10 = Instance.new("BlockMesh", p10)
  325. b10.Name = "Mesh"
  326. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  327. p11 = Instance.new("Part", m)
  328. p11.BrickColor = BrickColor.new("Lime green")
  329. p11.FormFactor = Enum.FormFactor.Custom
  330. p11.Size = Vector3.new(1, 1.50999951, 1)
  331. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  332. p11.CanCollide = false
  333. p11.Locked = true
  334. p11.Elasticity = 0
  335. p11.BottomSurface = Enum.SurfaceType.Smooth
  336. p11.TopSurface = Enum.SurfaceType.Smooth
  337. b11 = Instance.new("BlockMesh", p11)
  338. b11.Name = "Mesh"
  339. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  340. p12 = Instance.new("Part", m)
  341. p12.Name = "BladeCenter"
  342. p12.BrickColor = BrickColor.new("Lime green")
  343. p12.Material = Enum.Material.Concrete
  344. p12.FormFactor = Enum.FormFactor.Symmetric
  345. p12.Size = Vector3.new(1, 2, 2)
  346. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  347. p12.CanCollide = false
  348. p12.Locked = true
  349. p12.BottomSurface = Enum.SurfaceType.Smooth
  350. p12.TopSurface = Enum.SurfaceType.Smooth
  351. b12 = Instance.new("SpecialMesh", p12)
  352. b12.MeshType = Enum.MeshType.Brick
  353. b12.Name = "Mesh"
  354. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  355. p13 = Instance.new("Part", m)
  356. p13.BrickColor = BrickColor.new("Lime green")
  357. p13.FormFactor = Enum.FormFactor.Custom
  358. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  359. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  360. p13.CanCollide = false
  361. p13.Locked = true
  362. p13.Elasticity = 0
  363. p13.BottomSurface = Enum.SurfaceType.Smooth
  364. p13.TopSurface = Enum.SurfaceType.Smooth
  365. b13 = Instance.new("BlockMesh", p13)
  366. b13.Name = "Mesh"
  367. b13.Scale = Vector3.new(1, 1, 0.400000006)
  368. p14 = Instance.new("Part", m)
  369. p14.BrickColor = BrickColor.new("Lime green")
  370. p14.FormFactor = Enum.FormFactor.Custom
  371. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  372. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  373. p14.CanCollide = false
  374. p14.Locked = true
  375. p14.Elasticity = 0
  376. p14.BottomSurface = Enum.SurfaceType.Smooth
  377. p14.TopSurface = Enum.SurfaceType.Smooth
  378. b14 = Instance.new("BlockMesh", p14)
  379. b14.Name = "Mesh"
  380. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  381. p15 = Instance.new("Part", m)
  382. p15.BrickColor = BrickColor.new("Lime green")
  383. p15.FormFactor = Enum.FormFactor.Custom
  384. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  385. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  386. p15.CanCollide = false
  387. p15.Locked = true
  388. p15.Elasticity = 0
  389. p15.BottomSurface = Enum.SurfaceType.Smooth
  390. p15.TopSurface = Enum.SurfaceType.Smooth
  391. b15 = Instance.new("BlockMesh", p15)
  392. b15.Name = "Mesh"
  393. b15.Scale = Vector3.new(1, 1, 0.400000006)
  394. p16 = Instance.new("Part", m)
  395. p16.BrickColor = BrickColor.new("Lime green")
  396. p16.FormFactor = Enum.FormFactor.Custom
  397. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  398. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  399. p16.CanCollide = false
  400. p16.Locked = true
  401. p16.Elasticity = 0
  402. p16.BottomSurface = Enum.SurfaceType.Smooth
  403. p16.TopSurface = Enum.SurfaceType.Smooth
  404. b16 = Instance.new("BlockMesh", p16)
  405. b16.Name = "Mesh"
  406. b16.Scale = Vector3.new(1, 1, 0.400000006)
  407. p17 = Instance.new("Part", m)
  408. p17.BrickColor = BrickColor.new("Lime green")
  409. p17.FormFactor = Enum.FormFactor.Custom
  410. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  411. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  412. p17.CanCollide = false
  413. p17.Locked = true
  414. p17.Elasticity = 0
  415. p17.BottomSurface = Enum.SurfaceType.Smooth
  416. p17.TopSurface = Enum.SurfaceType.Smooth
  417. b17 = Instance.new("BlockMesh", p17)
  418. b17.Name = "Mesh"
  419. b17.Scale = Vector3.new(1, 1, 0.400000006)
  420. p18 = Instance.new("WedgePart", m)
  421. p18.BrickColor = BrickColor.new("Lime green")
  422. p18.Name = "BladePart1"
  423. p18.Material = Enum.Material.Concrete
  424. p18.Name = "Wedge"
  425. p18.FormFactor = Enum.FormFactor.Symmetric
  426. p18.Size = Vector3.new(1, 4, 2)
  427. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  428. p18.CanCollide = false
  429. p18.Locked = true
  430. p18.BottomSurface = Enum.SurfaceType.Smooth
  431. p18.TopSurface = Enum.SurfaceType.Smooth
  432. b18 = Instance.new("SpecialMesh", p18)
  433. b18.MeshType = Enum.MeshType.Wedge
  434. b18.Name = "Mesh"
  435. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  436. p19 = Instance.new("WedgePart", m)
  437. p19.BrickColor = BrickColor.new("Lime green")
  438. p19.Name = "BladePart2"
  439. p19.Material = Enum.Material.Concrete
  440. p19.Name = "Wedge"
  441. p19.FormFactor = Enum.FormFactor.Symmetric
  442. p19.Size = Vector3.new(1, 4, 2)
  443. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  444. p19.CanCollide = false
  445. p19.Locked = true
  446. p19.BottomSurface = Enum.SurfaceType.Smooth
  447. p19.TopSurface = Enum.SurfaceType.Smooth
  448. b19 = Instance.new("SpecialMesh", p19)
  449. b19.MeshType = Enum.MeshType.Wedge
  450. b19.Name = "Mesh"
  451. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  452. p20 = Instance.new("Part", m)
  453. p20.BrickColor = BrickColor.new("Lime green")
  454. p20.FormFactor = Enum.FormFactor.Custom
  455. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  456. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  457. p20.CanCollide = false
  458. p20.Locked = true
  459. p20.Elasticity = 0
  460. p20.BottomSurface = Enum.SurfaceType.Smooth
  461. p20.TopSurface = Enum.SurfaceType.Smooth
  462. b20 = Instance.new("BlockMesh", p20)
  463. b20.Name = "Mesh"
  464. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  465. p21 = Instance.new("Part", m)
  466. p21.BrickColor = BrickColor.new("Lime green")
  467. p21.Material = "Neon"
  468. p21.FormFactor = Enum.FormFactor.Custom
  469. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  470. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  471. p21.CanCollide = false
  472. p21.Locked = true
  473. p21.Elasticity = 0
  474. p21.BottomSurface = Enum.SurfaceType.Smooth
  475. p21.TopSurface = Enum.SurfaceType.Smooth
  476. b21 = Instance.new("SpecialMesh", p21)
  477. b21.MeshType = Enum.MeshType.Wedge
  478. b21.Name = "Mesh"
  479. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  480. w1 = Instance.new("Weld", p1)
  481. w1.Name = "Part_Weld"
  482. w1.Part0 = p1
  483. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  484. w1.Part1 = p2
  485. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  486. w2 = Instance.new("Weld", p2)
  487. w2.Name = "Part_Weld"
  488. w2.Part0 = p2
  489. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  490. w2.Part1 = p3
  491. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  492. w3 = Instance.new("Weld", p3)
  493. w3.Name = "Part_Weld"
  494. w3.Part0 = p3
  495. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  496. w3.Part1 = p4
  497. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  498. w4 = Instance.new("Weld", p4)
  499. w4.Name = "Part_Weld"
  500. w4.Part0 = p4
  501. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  502. w4.Part1 = p5
  503. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  504. w5 = Instance.new("Weld", p5)
  505. w5.Name = "Part_Weld"
  506. w5.Part0 = p5
  507. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  508. w5.Part1 = p6
  509. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  510. w6 = Instance.new("Weld", p6)
  511. w6.Name = "Part_Weld"
  512. w6.Part0 = p6
  513. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  514. w6.Part1 = p7
  515. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  516. w7 = Instance.new("Weld", p7)
  517. w7.Name = "Part_Weld"
  518. w7.Part0 = p7
  519. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  520. w7.Part1 = p8
  521. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  522. w8 = Instance.new("Weld", p8)
  523. w8.Name = "Part_Weld"
  524. w8.Part0 = p8
  525. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  526. w8.Part1 = p9
  527. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  528. w9 = Instance.new("Weld", p9)
  529. w9.Name = "Part_Weld"
  530. w9.Part0 = p9
  531. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  532. w9.Part1 = p10
  533. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  534. w10 = Instance.new("Weld", p10)
  535. w10.Name = "Part_Weld"
  536. w10.Part0 = p10
  537. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  538. w10.Part1 = p11
  539. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  540. w11 = Instance.new("Weld", p11)
  541. w11.Name = "Part_Weld"
  542. w11.Part0 = p11
  543. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  544. w11.Part1 = p12
  545. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  546. w12 = Instance.new("Weld", p12)
  547. w12.Name = "Part_Weld"
  548. w12.Part0 = p12
  549. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  550. w12.Part1 = p13
  551. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  552. w13 = Instance.new("Weld", p13)
  553. w13.Name = "Part_Weld"
  554. w13.Part0 = p13
  555. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  556. w13.Part1 = p14
  557. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  558. w14 = Instance.new("Weld", p14)
  559. w14.Name = "Part_Weld"
  560. w14.Part0 = p14
  561. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  562. w14.Part1 = p15
  563. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  564. w15 = Instance.new("Weld", p15)
  565. w15.Name = "Part_Weld"
  566. w15.Part0 = p15
  567. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  568. w15.Part1 = p16
  569. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  570. w16 = Instance.new("Weld", p16)
  571. w16.Name = "Part_Weld"
  572. w16.Part0 = p16
  573. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  574. w16.Part1 = p17
  575. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  576. w17 = Instance.new("Weld", p17)
  577. w17.Name = "Wedge_Weld"
  578. w17.Part0 = p17
  579. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  580. w17.Part1 = p18
  581. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  582. w18 = Instance.new("Weld", p18)
  583. w18.Name = "Wedge_Weld"
  584. w18.Part0 = p18
  585. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  586. w18.Part1 = p19
  587. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  588. w19 = Instance.new("Weld", p19)
  589. w19.Name = "Part_Weld"
  590. w19.Part0 = p19
  591. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  592. w19.Part1 = p20
  593. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  594. w20 = Instance.new("Weld", p20)
  595. w20.Name = "Part_Weld"
  596. w20.Part0 = p20
  597. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  598. w20.Part1 = p21
  599. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  600. m.Parent = char
  601. m:MakeJoints()
  602. ----------------------------------------------------
  603. local cor = Instance.new("Part", char.JackoAxe)
  604. cor.Name = "Thingy"
  605. cor.Locked = true
  606. cor.BottomSurface = 0
  607. cor.CanCollide = false
  608. cor.Size = Vector3.new(1, 13, 1)
  609. cor.Transparency = 1
  610. cor.TopSurface = 0
  611. corw = Instance.new("Weld", cor)
  612. corw.Part0 = rarm
  613. corw.Part1 = cor
  614. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  615. corw.C1 = CFrame.new(0, 0, 0)
  616. weld1 = Instance.new("Weld", char.JackoAxe)
  617. weld1.Part0 = cor
  618. weld1.Part1 = p6
  619. weld1.C0 = CFrame.new(0, 0, 0)
  620. ----------------------------------------------------
  621. hitb = Instance.new("Part", char.JackoAxe)
  622. hitb.Name = "Thingy2"
  623. hitb.Locked = true
  624. hitb.BottomSurface = 0
  625. hitb.CanCollide = false
  626. hitb.Size = Vector3.new(0, 8, 6)
  627. hitb.Transparency = 1
  628. hitb.TopSurface = 0
  629. weld2 = Instance.new("Weld", char.JackoAxe)
  630. weld2.Part0 = hitb
  631. weld2.Part1 = p12
  632. weld2.C0 = CFrame.new(0, .6, 1)
  633. -----------------------------------
  634. local m = Instance.new("Model")
  635. m.Name = "JackoAxe2"
  636. p1 = Instance.new("Part", m)
  637. p1.BrickColor = BrickColor.new("Lime green")
  638. p1.Material = "Neon"
  639. p1.FormFactor = Enum.FormFactor.Custom
  640. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  641. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  642. p1.CanCollide = false
  643. p1.Locked = true
  644. p1.Elasticity = 0
  645. p1.BottomSurface = Enum.SurfaceType.Smooth
  646. p1.TopSurface = Enum.SurfaceType.Smooth
  647. b1 = Instance.new("SpecialMesh", p1)
  648. b1.MeshType = Enum.MeshType.Wedge
  649. b1.Name = "Mesh"
  650. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  651. p2 = Instance.new("Part", m)
  652. p2.BrickColor = BrickColor.new("Lime green")
  653. p2.FormFactor = Enum.FormFactor.Custom
  654. p2.Size = Vector3.new(1, 2.9000001, 1)
  655. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  656. p2.CanCollide = false
  657. p2.Locked = true
  658. p2.Elasticity = 0
  659. p2.BottomSurface = Enum.SurfaceType.Smooth
  660. p2.TopSurface = Enum.SurfaceType.Smooth
  661. b2 = Instance.new("BlockMesh", p2)
  662. b2.Name = "Mesh"
  663. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  664. p3 = Instance.new("Part", m)
  665. p3.BrickColor = BrickColor.new("Lime green")
  666. p3.Material = "Neon"
  667. p3.FormFactor = Enum.FormFactor.Custom
  668. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  669. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  670. p3.CanCollide = false
  671. p3.Locked = true
  672. p3.Elasticity = 0
  673. p3.BottomSurface = Enum.SurfaceType.Smooth
  674. p3.TopSurface = Enum.SurfaceType.Smooth
  675. b3 = Instance.new("SpecialMesh", p3)
  676. b3.MeshType = Enum.MeshType.Wedge
  677. b3.Name = "Mesh"
  678. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  679. p4 = Instance.new("Part", m)
  680. p4.BrickColor = BrickColor.new("Lime green")
  681. p4.Material = "Neon"
  682. p4.FormFactor = Enum.FormFactor.Custom
  683. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  684. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  685. p4.CanCollide = false
  686. p4.Locked = true
  687. p4.Elasticity = 0
  688. p4.BottomSurface = Enum.SurfaceType.Smooth
  689. p4.TopSurface = Enum.SurfaceType.Smooth
  690. b4 = Instance.new("SpecialMesh", p4)
  691. b4.MeshType = Enum.MeshType.Wedge
  692. b4.Name = "Mesh"
  693. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  694. p5 = Instance.new("Part", m)
  695. p5.BrickColor = BrickColor.new("Lime green")
  696. p5.Material = "Neon"
  697. p5.FormFactor = Enum.FormFactor.Custom
  698. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  699. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  700. p5.CanCollide = false
  701. p5.Locked = true
  702. p5.Elasticity = 0
  703. p5.BottomSurface = Enum.SurfaceType.Smooth
  704. p5.TopSurface = Enum.SurfaceType.Smooth
  705. b5 = Instance.new("SpecialMesh", p5)
  706. b5.MeshType = Enum.MeshType.Wedge
  707. b5.Name = "Mesh"
  708. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  709. p6 = Instance.new("Part", m)
  710. p6.Name = "Handle"
  711. p6.BrickColor = BrickColor.new("Lime green")
  712. p6.FormFactor = Enum.FormFactor.Custom
  713. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  714. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  715. p6.CanCollide = false
  716. p6.Locked = true
  717. p6.Elasticity = 0
  718. p6.BottomSurface = Enum.SurfaceType.Smooth
  719. p6.TopSurface = Enum.SurfaceType.Smooth
  720. b6 = Instance.new("BlockMesh", p6)
  721. b6.Name = "Mesh"
  722. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  723. p7 = Instance.new("Part", m)
  724. p7.BrickColor = BrickColor.new("Lime green")
  725. p7.Material = "Neon"
  726. p7.FormFactor = Enum.FormFactor.Custom
  727. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  728. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  729. p7.CanCollide = false
  730. p7.Locked = true
  731. p7.Elasticity = 0
  732. p7.BottomSurface = Enum.SurfaceType.Smooth
  733. p7.TopSurface = Enum.SurfaceType.Smooth
  734. b7 = Instance.new("SpecialMesh", p7)
  735. b7.MeshType = Enum.MeshType.Wedge
  736. b7.Name = "Mesh"
  737. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  738. p8 = Instance.new("Part", m)
  739. p8.BrickColor = BrickColor.new("Lime green")
  740. p8.Material = "Neon"
  741. p8.FormFactor = Enum.FormFactor.Custom
  742. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  743. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  744. p8.CanCollide = false
  745. p8.Locked = true
  746. p8.Elasticity = 0
  747. p8.BottomSurface = Enum.SurfaceType.Smooth
  748. p8.TopSurface = Enum.SurfaceType.Smooth
  749. b8 = Instance.new("SpecialMesh", p8)
  750. b8.MeshType = Enum.MeshType.Wedge
  751. b8.Name = "Mesh"
  752. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  753. p9 = Instance.new("Part", m)
  754. p9.BrickColor = BrickColor.new("Lime green")
  755. p9.FormFactor = Enum.FormFactor.Custom
  756. p9.Size = Vector3.new(1, 1.07999957, 1)
  757. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  758. p9.CanCollide = false
  759. p9.Locked = true
  760. p9.Elasticity = 0
  761. p9.BottomSurface = Enum.SurfaceType.Smooth
  762. p9.TopSurface = Enum.SurfaceType.Smooth
  763. b9 = Instance.new("BlockMesh", p9)
  764. b9.Name = "Mesh"
  765. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  766. p10 = Instance.new("Part", m)
  767. p10.BrickColor = BrickColor.new("Lime green")
  768. p10.FormFactor = Enum.FormFactor.Custom
  769. p10.Size = Vector3.new(1, 1.41999948, 1)
  770. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  771. p10.CanCollide = false
  772. p10.Locked = true
  773. p10.Elasticity = 0
  774. p10.BottomSurface = Enum.SurfaceType.Smooth
  775. p10.TopSurface = Enum.SurfaceType.Smooth
  776. b10 = Instance.new("BlockMesh", p10)
  777. b10.Name = "Mesh"
  778. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  779. p11 = Instance.new("Part", m)
  780. p11.BrickColor = BrickColor.new("Lime green")
  781. p11.FormFactor = Enum.FormFactor.Custom
  782. p11.Size = Vector3.new(1, 1.50999951, 1)
  783. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  784. p11.CanCollide = false
  785. p11.Locked = true
  786. p11.Elasticity = 0
  787. p11.BottomSurface = Enum.SurfaceType.Smooth
  788. p11.TopSurface = Enum.SurfaceType.Smooth
  789. b11 = Instance.new("BlockMesh", p11)
  790. b11.Name = "Mesh"
  791. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  792. p12 = Instance.new("Part", m)
  793. p12.Name = "BladeCenter"
  794. p12.BrickColor = BrickColor.new("Lime green")
  795. p12.Material = Enum.Material.Concrete
  796. p12.FormFactor = Enum.FormFactor.Symmetric
  797. p12.Size = Vector3.new(1, 2, 2)
  798. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  799. p12.CanCollide = false
  800. p12.Locked = true
  801. p12.BottomSurface = Enum.SurfaceType.Smooth
  802. p12.TopSurface = Enum.SurfaceType.Smooth
  803. b12 = Instance.new("SpecialMesh", p12)
  804. b12.MeshType = Enum.MeshType.Brick
  805. b12.Name = "Mesh"
  806. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  807. p13 = Instance.new("Part", m)
  808. p13.BrickColor = BrickColor.new("Lime green")
  809. p13.FormFactor = Enum.FormFactor.Custom
  810. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  811. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  812. p13.CanCollide = false
  813. p13.Locked = true
  814. p13.Elasticity = 0
  815. p13.BottomSurface = Enum.SurfaceType.Smooth
  816. p13.TopSurface = Enum.SurfaceType.Smooth
  817. b13 = Instance.new("BlockMesh", p13)
  818. b13.Name = "Mesh"
  819. b13.Scale = Vector3.new(1, 1, 0.400000006)
  820. p14 = Instance.new("Part", m)
  821. p14.BrickColor = BrickColor.new("Lime green")
  822. p14.FormFactor = Enum.FormFactor.Custom
  823. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  824. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  825. p14.CanCollide = false
  826. p14.Locked = true
  827. p14.Elasticity = 0
  828. p14.BottomSurface = Enum.SurfaceType.Smooth
  829. p14.TopSurface = Enum.SurfaceType.Smooth
  830. b14 = Instance.new("BlockMesh", p14)
  831. b14.Name = "Mesh"
  832. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  833. p15 = Instance.new("Part", m)
  834. p15.BrickColor = BrickColor.new("Lime green")
  835. p15.FormFactor = Enum.FormFactor.Custom
  836. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  837. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  838. p15.CanCollide = false
  839. p15.Locked = true
  840. p15.Elasticity = 0
  841. p15.BottomSurface = Enum.SurfaceType.Smooth
  842. p15.TopSurface = Enum.SurfaceType.Smooth
  843. b15 = Instance.new("BlockMesh", p15)
  844. b15.Name = "Mesh"
  845. b15.Scale = Vector3.new(1, 1, 0.400000006)
  846. p16 = Instance.new("Part", m)
  847. p16.BrickColor = BrickColor.new("Lime green")
  848. p16.FormFactor = Enum.FormFactor.Custom
  849. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  850. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  851. p16.CanCollide = false
  852. p16.Locked = true
  853. p16.Elasticity = 0
  854. p16.BottomSurface = Enum.SurfaceType.Smooth
  855. p16.TopSurface = Enum.SurfaceType.Smooth
  856. b16 = Instance.new("BlockMesh", p16)
  857. b16.Name = "Mesh"
  858. b16.Scale = Vector3.new(1, 1, 0.400000006)
  859. p17 = Instance.new("Part", m)
  860. p17.BrickColor = BrickColor.new("Lime green")
  861. p17.FormFactor = Enum.FormFactor.Custom
  862. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  863. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  864. p17.CanCollide = false
  865. p17.Locked = true
  866. p17.Elasticity = 0
  867. p17.BottomSurface = Enum.SurfaceType.Smooth
  868. p17.TopSurface = Enum.SurfaceType.Smooth
  869. b17 = Instance.new("BlockMesh", p17)
  870. b17.Name = "Mesh"
  871. b17.Scale = Vector3.new(1, 1, 0.400000006)
  872. p18 = Instance.new("WedgePart", m)
  873. p18.BrickColor = BrickColor.new("Lime green")
  874. p18.Name = "BladePart1"
  875. p18.Material = Enum.Material.Concrete
  876. p18.Name = "Wedge"
  877. p18.FormFactor = Enum.FormFactor.Symmetric
  878. p18.Size = Vector3.new(1, 4, 2)
  879. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  880. p18.CanCollide = false
  881. p18.Locked = true
  882. p18.BottomSurface = Enum.SurfaceType.Smooth
  883. p18.TopSurface = Enum.SurfaceType.Smooth
  884. b18 = Instance.new("SpecialMesh", p18)
  885. b18.MeshType = Enum.MeshType.Wedge
  886. b18.Name = "Mesh"
  887. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  888. p19 = Instance.new("WedgePart", m)
  889. p19.BrickColor = BrickColor.new("Lime green")
  890. p19.Name = "BladePart2"
  891. p19.Material = Enum.Material.Concrete
  892. p19.Name = "Wedge"
  893. p19.FormFactor = Enum.FormFactor.Symmetric
  894. p19.Size = Vector3.new(1, 4, 2)
  895. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  896. p19.CanCollide = false
  897. p19.Locked = true
  898. p19.BottomSurface = Enum.SurfaceType.Smooth
  899. p19.TopSurface = Enum.SurfaceType.Smooth
  900. b19 = Instance.new("SpecialMesh", p19)
  901. b19.MeshType = Enum.MeshType.Wedge
  902. b19.Name = "Mesh"
  903. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  904. p20 = Instance.new("Part", m)
  905. p20.BrickColor = BrickColor.new("Lime green")
  906. p20.FormFactor = Enum.FormFactor.Custom
  907. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  908. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  909. p20.CanCollide = false
  910. p20.Locked = true
  911. p20.Elasticity = 0
  912. p20.BottomSurface = Enum.SurfaceType.Smooth
  913. p20.TopSurface = Enum.SurfaceType.Smooth
  914. b20 = Instance.new("BlockMesh", p20)
  915. b20.Name = "Mesh"
  916. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  917. p21 = Instance.new("Part", m)
  918. p21.BrickColor = BrickColor.new("Lime green")
  919. p21.Material = "Neon"
  920. p21.FormFactor = Enum.FormFactor.Custom
  921. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  922. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  923. p21.CanCollide = false
  924. p21.Locked = true
  925. p21.Elasticity = 0
  926. p21.BottomSurface = Enum.SurfaceType.Smooth
  927. p21.TopSurface = Enum.SurfaceType.Smooth
  928. b21 = Instance.new("SpecialMesh", p21)
  929. b21.MeshType = Enum.MeshType.Wedge
  930. b21.Name = "Mesh"
  931. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  932. w1 = Instance.new("Weld", p1)
  933. w1.Name = "Part_Weld"
  934. w1.Part0 = p1
  935. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  936. w1.Part1 = p2
  937. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  938. w2 = Instance.new("Weld", p2)
  939. w2.Name = "Part_Weld"
  940. w2.Part0 = p2
  941. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  942. w2.Part1 = p3
  943. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  944. w3 = Instance.new("Weld", p3)
  945. w3.Name = "Part_Weld"
  946. w3.Part0 = p3
  947. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  948. w3.Part1 = p4
  949. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  950. w4 = Instance.new("Weld", p4)
  951. w4.Name = "Part_Weld"
  952. w4.Part0 = p4
  953. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  954. w4.Part1 = p5
  955. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  956. w5 = Instance.new("Weld", p5)
  957. w5.Name = "Part_Weld"
  958. w5.Part0 = p5
  959. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  960. w5.Part1 = p6
  961. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  962. w6 = Instance.new("Weld", p6)
  963. w6.Name = "Part_Weld"
  964. w6.Part0 = p6
  965. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  966. w6.Part1 = p7
  967. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  968. w7 = Instance.new("Weld", p7)
  969. w7.Name = "Part_Weld"
  970. w7.Part0 = p7
  971. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  972. w7.Part1 = p8
  973. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  974. w8 = Instance.new("Weld", p8)
  975. w8.Name = "Part_Weld"
  976. w8.Part0 = p8
  977. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  978. w8.Part1 = p9
  979. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  980. w9 = Instance.new("Weld", p9)
  981. w9.Name = "Part_Weld"
  982. w9.Part0 = p9
  983. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  984. w9.Part1 = p10
  985. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  986. w10 = Instance.new("Weld", p10)
  987. w10.Name = "Part_Weld"
  988. w10.Part0 = p10
  989. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  990. w10.Part1 = p11
  991. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  992. w11 = Instance.new("Weld", p11)
  993. w11.Name = "Part_Weld"
  994. w11.Part0 = p11
  995. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  996. w11.Part1 = p12
  997. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  998. w12 = Instance.new("Weld", p12)
  999. w12.Name = "Part_Weld"
  1000. w12.Part0 = p12
  1001. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  1002. w12.Part1 = p13
  1003. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  1004. w13 = Instance.new("Weld", p13)
  1005. w13.Name = "Part_Weld"
  1006. w13.Part0 = p13
  1007. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  1008. w13.Part1 = p14
  1009. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  1010. w14 = Instance.new("Weld", p14)
  1011. w14.Name = "Part_Weld"
  1012. w14.Part0 = p14
  1013. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  1014. w14.Part1 = p15
  1015. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  1016. w15 = Instance.new("Weld", p15)
  1017. w15.Name = "Part_Weld"
  1018. w15.Part0 = p15
  1019. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  1020. w15.Part1 = p16
  1021. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  1022. w16 = Instance.new("Weld", p16)
  1023. w16.Name = "Part_Weld"
  1024. w16.Part0 = p16
  1025. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  1026. w16.Part1 = p17
  1027. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  1028. w17 = Instance.new("Weld", p17)
  1029. w17.Name = "Wedge_Weld"
  1030. w17.Part0 = p17
  1031. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  1032. w17.Part1 = p18
  1033. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  1034. w18 = Instance.new("Weld", p18)
  1035. w18.Name = "Wedge_Weld"
  1036. w18.Part0 = p18
  1037. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  1038. w18.Part1 = p19
  1039. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  1040. w19 = Instance.new("Weld", p19)
  1041. w19.Name = "Part_Weld"
  1042. w19.Part0 = p19
  1043. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  1044. w19.Part1 = p20
  1045. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  1046. w20 = Instance.new("Weld", p20)
  1047. w20.Name = "Part_Weld"
  1048. w20.Part0 = p20
  1049. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  1050. w20.Part1 = p21
  1051. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  1052. m.Parent = char
  1053. m:MakeJoints()
  1054. ----------------------------------------------------
  1055. local cor2 = Instance.new("Part", char.JackoAxe2)
  1056. cor2.Name = "Thingy"
  1057. cor2.Locked = true
  1058. cor2.BottomSurface = 0
  1059. cor2.CanCollide = false
  1060. cor2.Size = Vector3.new(1, 13, 1)
  1061. cor2.Transparency = 1
  1062. cor2.TopSurface = 0
  1063. corw2 = Instance.new("Weld", cor2)
  1064. corw2.Part0 = larm
  1065. corw2.Part1 = cor2
  1066. corw2.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1067. corw2.C1 = CFrame.new(0, 0, 0)
  1068. weld1 = Instance.new("Weld", char.JackoAxe2)
  1069. weld1.Part0 = cor2
  1070. weld1.Part1 = p6
  1071. weld1.C0 = CFrame.new(0, 0, 0)
  1072. ----------------------------------------------------
  1073. hitb = Instance.new("Part", char.JackoAxe2)
  1074. hitb.Name = "Thingy2"
  1075. hitb.Locked = true
  1076. hitb.BottomSurface = 0
  1077. hitb.CanCollide = false
  1078. hitb.Size = Vector3.new(0, 8, 6)
  1079. hitb.Transparency = 1
  1080. hitb.TopSurface = 0
  1081. weld2 = Instance.new("Weld", char.JackoAxe2)
  1082. weld2.Part0 = hitb
  1083. weld2.Part1 = p12
  1084. weld2.C0 = CFrame.new(0, .6, 1)
  1085.  
  1086.  
  1087. larm1 = Instance.new("Part",char)
  1088. larm1.Transparency = 0.5
  1089. larm1.BrickColor = BrickColor.new("Lime green")
  1090. larm1.Size = Vector3.new(2.1,4.1,2.1)
  1091. larm1.Position = Vector3.new(999,999,999)
  1092. larm1.Material = "SmoothPlastic"
  1093. larmhold = Instance.new("Weld",char)
  1094. larmhold.Part0 = larm
  1095. larmhold.Part1 = larm1
  1096. larmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1097. rarm1 = Instance.new("Part",char)
  1098. rarm1.Transparency = 0.5
  1099. rarm1.BrickColor = BrickColor.new("Lime green")
  1100. rarm1.Size = Vector3.new(2.1,4.1,2.1)
  1101. rarm1.Position = Vector3.new(999,999,999)
  1102. rarm1.Material = "SmoothPlastic"
  1103. rarmhold = Instance.new("Weld",char)
  1104. rarmhold.Part0 = rarm
  1105. rarmhold.Part1 = rarm1
  1106. rarmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1107. torso1 = Instance.new("Part",char)
  1108. torso1.Transparency = 0.5
  1109. torso1.BrickColor = BrickColor.new("Lime green")
  1110. torso1.Size = Vector3.new(4.1,4.1,2.1)
  1111. torso1.Position = Vector3.new(999,999,999)
  1112. torso1.Material = "SmoothPlastic"
  1113. torsohold = Instance.new("Weld",char)
  1114. torsohold.Part0 = torso
  1115. torsohold.Part1 = torso1
  1116. torsohold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1117. lleg1 = Instance.new("Part",char)
  1118. lleg1.Transparency = 0.5
  1119. lleg1.BrickColor = BrickColor.new("Lime green")
  1120. lleg1.Size = Vector3.new(2.1,4.1,2.1)
  1121. lleg1.Position = Vector3.new(999,999,999)
  1122. lleg1.Material = "SmoothPlastic"
  1123. lleghold = Instance.new("Weld",char)
  1124. lleghold.Part0 = lleg
  1125. lleghold.Part1 = lleg1
  1126. lleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1127. rleg1 = Instance.new("Part",char)
  1128. rleg1.Transparency = 0.5
  1129. rleg1.BrickColor = BrickColor.new("Lime green")
  1130. rleg1.Size = Vector3.new(2.1,4.1,2.1)
  1131. rleg1.Position = Vector3.new(999,999,999)
  1132. rleg1.Material = "SmoothPlastic"
  1133. rleghold = Instance.new("Weld",char)
  1134. rleghold.Part0 = rleg
  1135. rleghold.Part1 = rleg1
  1136. rleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1137. rhed1 = Instance.new("Part",char)
  1138. rhed1.Transparency = 0.5
  1139. rhed1.BrickColor = BrickColor.new("Lime green")
  1140. rhed1.Size = Vector3.new(4.3,2.6,2.6)
  1141. rhed1.Position = Vector3.new(999,999,999)
  1142. rhed1.Material = "SmoothPlastic"
  1143. rhedhold = Instance.new("Weld",char)
  1144. rhedhold.Part0 = hed
  1145. rhedhold.Part1 = rhed1
  1146. rhedhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1147. rhedmesh1 = Instance.new("SpecialMesh",rhed1)
  1148. rhedmesh1.MeshType = "Head"
  1149. rhedmesh1.Scale = Vector3.new(1,1,1)
  1150.  
  1151.  
  1152.  
  1153.  
  1154. function BurningEff(part)
  1155. local eff1 = Instance.new("ParticleEmitter",part)
  1156. eff1.Size = NumberSequence.new(.1)
  1157. eff1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  1158. eff1.LightEmission = 1
  1159. eff1.Lifetime = NumberRange.new(1)
  1160. eff1.Speed = NumberRange.new(0)
  1161. eff1.Rate = 100
  1162. eff1.Texture = "rbxassetid://284205403"
  1163. eff1.Acceleration = Vector3.new(0,10,0)
  1164. eff1.Color = ColorSequence.new(Color3.new(0,255,0))
  1165. local eff2 = Instance.new("ParticleEmitter",part)
  1166. eff2.Size = NumberSequence.new(.1)
  1167. eff2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  1168. eff2.LightEmission = 1
  1169. eff2.Lifetime = NumberRange.new(1)
  1170. eff2.Speed = NumberRange.new(0)
  1171. eff2.Rate = 100
  1172. eff2.Texture = "rbxassetid://347504259"
  1173. eff2.Acceleration = Vector3.new(0,10,0)
  1174. eff2.Color = ColorSequence.new(Color3.new(0,255,0))
  1175. local eff3 = Instance.new("ParticleEmitter",part)
  1176. eff3.Size = NumberSequence.new(1)
  1177. eff3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(1,1)})
  1178. eff3.LightEmission = 1
  1179. eff3.Lifetime = NumberRange.new(1)
  1180. eff3.Speed = NumberRange.new(0)
  1181. eff3.Rate = 100
  1182. eff3.Texture = "rbxassetid://284205403"
  1183. eff3.Acceleration = Vector3.new(0,10,0)
  1184. eff3.Color = ColorSequence.new(Color3.new(0,255,0))
  1185. end
  1186.  
  1187. Face = 'rbxassetid://513836869'
  1188. local face=hed:FindFirstChild'face'
  1189. face.Texture = Face
  1190.  
  1191. face=Instance.new("Decal",hed)
  1192. face.Face="Front"
  1193. face.Texture="rbxassetid://513836869"
  1194.  
  1195. BurningEff(hed)
  1196. BurningEff(rarm)
  1197. BurningEff(larm)
  1198. BurningEff(torso)
  1199.  
  1200. LightOnBody = Instance.new("PointLight", hed)
  1201. LightOnBody.Brightness = 0.8
  1202. LightOnBody.Range = 20
  1203. LightOnBody.Color = Color3.new(0, 255, 0)
  1204.  
  1205.  
  1206. CV="Pastel blue"
  1207.  
  1208. local txt = Instance.new("BillboardGui", char)
  1209. txt.Adornee = hed
  1210. txt.Name = "_status"
  1211. txt.Size = UDim2.new(2, 0, 1.2, 0)
  1212. txt.StudsOffset = Vector3.new(-9, 8, 0)
  1213. local text = Instance.new("TextLabel", txt)
  1214. text.Size = UDim2.new(10, 0, 7, 0)
  1215. text.FontSize = "Size24"
  1216. text.TextScaled = true
  1217. text.TextTransparency = 0
  1218. text.BackgroundTransparency = 1
  1219. text.TextTransparency = 0
  1220. text.TextStrokeTransparency = 0
  1221. text.Font = "Antique"
  1222. text.TextStrokeColor3 = Color3.new(0,255,0)
  1223.  
  1224. v=Instance.new("Part")
  1225. v.Name = "ColorBrick"
  1226. v.Parent=p.Character
  1227. v.FormFactor="Symmetric"
  1228. v.Anchored=true
  1229. v.CanCollide=false
  1230. v.BottomSurface="Smooth"
  1231. v.TopSurface="Smooth"
  1232. v.Size=Vector3.new(10,5,3)
  1233. v.Transparency=1
  1234. v.CFrame=char.Torso.CFrame
  1235. v.BrickColor=BrickColor.new(CV)
  1236. v.Transparency=1
  1237. text.TextColor3 = Color3.new(0,0,0)
  1238. v.Shape="Block"
  1239. text.Text = "Critical Mass"
  1240.  
  1241.  
  1242.  
  1243.  
  1244. if GroundShake == true then
  1245. for i,v in pairs(workspace:GetChildren()) do
  1246. if v:IsA("Part") then
  1247. if v.Size.x > 150 then
  1248. v.CFrame = CFrame.new(v.Position) * CFrame.Angles(rad(math.random(-1,1)),rad(math.random(-1,1)),rad(math.random(-1,1)))
  1249. end
  1250. end
  1251. end
  1252.  
  1253.  
  1254.  
  1255.  
  1256. end
  1257. if GroundShake2 == true then
  1258.  
  1259. for i,v in pairs(workspace:GetChildren()) do
  1260. if v:IsA("Part") then
  1261. if v.Size.x > 150 then
  1262. v.CFrame = CFrame.new(v.Position) * CFrame.Angles(rad(math.random(-2,2)),rad(math.random(-2,2)),rad(math.random(-2,2)))
  1263. end
  1264. end
  1265. end
  1266.  
  1267. end
  1268.  
  1269.  
  1270.  
  1271. local num = 0
  1272.  
  1273.  
  1274.  
  1275. GroundWave2 = function()
  1276. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1277. Colors = {"White", "White"}
  1278. local wave3 = Instance.new("Part", char)
  1279. wave3.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1280. wave3.Anchored = true
  1281. wave3.Name = "Wave"
  1282. wave3.CanCollide = false
  1283. wave3.Locked = true
  1284. wave3.Size = Vector3.new(1, 1, 1)
  1285. wave3.TopSurface = "Smooth"
  1286. wave3.BottomSurface = "Smooth"
  1287. wave3.Transparency = 0.35
  1288. wave3.CFrame = HandCF
  1289. wm1 = Instance.new("SpecialMesh", wave3)
  1290. wm1.MeshId = "rbxassetid://3270017"
  1291. coroutine.wrap(function()
  1292. for i = 1, 30, 1 do
  1293. wm1.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1294. wave3.Size = wm1.Scale
  1295. wave3.CFrame = HandCF
  1296. wave3.Transparency = i/30
  1297. wait()
  1298. end
  1299. wait()
  1300. wave3:Destroy()
  1301. end)()
  1302. end
  1303. GroundWave3 = function()
  1304. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1305. Colors = {"White", "White"}
  1306. local wave2 = Instance.new("Part", char)
  1307. wave2.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1308. wave2.Anchored = true
  1309. wave2.Name = "Wave"
  1310. wave2.CanCollide = false
  1311. wave2.Locked = true
  1312. wave2.Size = Vector3.new(1, 1, 1)
  1313. wave2.TopSurface = "Smooth"
  1314. wave2.BottomSurface = "Smooth"
  1315. wave2.Transparency = 0.35
  1316. wave2.CFrame = HandCF
  1317. wm2 = Instance.new("SpecialMesh", wave2)
  1318. wm2.MeshId = "rbxassetid://3270017"
  1319. coroutine.wrap(function()
  1320. for i = 1, 30, 1 do
  1321. wm2.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1322. wave2.Size = wm2.Scale
  1323. wave2.CFrame = HandCF
  1324. wave2.Transparency = i/30
  1325. wait()
  1326. end
  1327. wait()
  1328. wave2:Destroy()
  1329. end)()
  1330. end
  1331. GroundWave4 = function()
  1332. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  1333. Colors = {"White", "White"}
  1334. local wave1 = Instance.new("Part", char)
  1335. wave1.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1336. wave1.Anchored = true
  1337. wave1.Name = "Wave"
  1338. wave1.CanCollide = false
  1339. wave1.Locked = true
  1340. wave1.Size = Vector3.new(1, 1, 1)
  1341. wave1.TopSurface = "Smooth"
  1342. wave1.BottomSurface = "Smooth"
  1343. wave1.Transparency = 0.35
  1344. wave1.CFrame = HandCF
  1345. wm3 = Instance.new("SpecialMesh", wave1)
  1346. wm3.MeshId = "rbxassetid://3270017"
  1347. coroutine.wrap(function()
  1348. for i = 1, 30, 1 do
  1349. wm3.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1350. wave1.Size = wm3.Scale
  1351. wave1.CFrame = HandCF
  1352. wave1.Transparency = i/30
  1353. wait()
  1354. end
  1355. wait()
  1356. wave1:Destroy()
  1357. end)()
  1358. end
  1359. --------------------------------------------------------------------------
  1360. --transform
  1361. GroundWave5 = function()
  1362. local HandCF = root.CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  1363.  
  1364. Colors = {"Lime green", "Lime green"}
  1365.  
  1366.  
  1367. local wave11 = Instance.new("Part", char)
  1368. wave11.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1369. wave11.Anchored = true
  1370. wave11.Name = "Wave"
  1371. wave11.CanCollide = false
  1372. wave11.Locked = true
  1373. wave11.Size = Vector3.new(1, 1, 1)
  1374. wave11.TopSurface = "Smooth"
  1375. wave11.BottomSurface = "Smooth"
  1376. wave11.Transparency = 0.35
  1377. wave11.CFrame = HandCF
  1378. wm31 = Instance.new("SpecialMesh", wave11)
  1379. wm31.MeshId = "rbxassetid://3270017"
  1380. coroutine.wrap(function()
  1381. for i = 1, 30, 1 do
  1382. wm31.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1383. wave11.Size = wm31.Scale
  1384. wave11.CFrame = HandCF
  1385. wave11.Transparency = i/30
  1386. wait()
  1387. end
  1388. wait()
  1389. wave11:Destroy()
  1390. end)()
  1391. end
  1392. GroundWave6 = function()
  1393. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1394.  
  1395. Colors = {"Lime green", "Lime green"}
  1396.  
  1397. local wave111 = Instance.new("Part", char)
  1398. wave111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1399. wave111.Anchored = true
  1400. wave111.Name = "Wave"
  1401. wave111.CanCollide = false
  1402. wave111.Locked = true
  1403. wave111.Size = Vector3.new(1, 1, 1)
  1404. wave111.TopSurface = "Smooth"
  1405. wave111.BottomSurface = "Smooth"
  1406. wave111.Transparency = 0.35
  1407. wave111.CFrame = HandCF
  1408. wm311 = Instance.new("SpecialMesh", wave111)
  1409. wm311.MeshId = "rbxassetid://3270017"
  1410. coroutine.wrap(function()
  1411. for i = 1, 30, 1 do
  1412. wm311.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1413. wave111.Size = wm311.Scale
  1414. wave111.CFrame = HandCF
  1415. wave111.Transparency = i/30
  1416. wait()
  1417. end
  1418. wait()
  1419. wave111:Destroy()
  1420. end)()
  1421. end
  1422. GroundWave7 = function()
  1423. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1424.  
  1425. Colors = {"Lime green", "Lime green"}
  1426. local wave1111 = Instance.new("Part", char)
  1427. wave1111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1428. wave1111.Anchored = true
  1429. wave1111.Name = "Wave"
  1430. wave1111.CanCollide = false
  1431. wave1111.Locked = true
  1432. wave1111.Size = Vector3.new(1, 1, 1)
  1433. wave1111.TopSurface = "Smooth"
  1434. wave1111.BottomSurface = "Smooth"
  1435. wave1111.Transparency = 0.35
  1436. wave1111.CFrame = HandCF
  1437. wm3111 = Instance.new("SpecialMesh", wave1111)
  1438. wm3111.MeshId = "rbxassetid://3270017"
  1439. coroutine.wrap(function()
  1440. for i = 1, 30, 1 do
  1441. wm3111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1442. wave1111.Size = wm3111.Scale
  1443. wave1111.CFrame = HandCF
  1444. wave1111.Transparency = i/30
  1445. wait()
  1446. end
  1447. wait()
  1448. wave1111:Destroy()
  1449. end)()
  1450. end
  1451. GroundWave8 = function()
  1452. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1453.  
  1454. Colors = {"Lime green", "Lime green"}
  1455. local wave11111 = Instance.new("Part", char)
  1456. wave11111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1457. wave11111.Anchored = true
  1458. wave11111.Name = "Wave"
  1459. wave11111.CanCollide = false
  1460. wave11111.Locked = true
  1461. wave11111.Size = Vector3.new(1, 1, 1)
  1462. wave11111.TopSurface = "Smooth"
  1463. wave11111.BottomSurface = "Smooth"
  1464. wave11111.Transparency = 0.35
  1465. wave11111.CFrame = HandCF
  1466. wm31111 = Instance.new("SpecialMesh", wave11111)
  1467. wm31111.MeshId = "rbxassetid://3270017"
  1468. coroutine.wrap(function()
  1469. for i = 1, 30, 1 do
  1470. wm31111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1471. wave11111.Size = wm31111.Scale
  1472. wave11111.CFrame = HandCF
  1473. wave11111.Transparency = i/30
  1474. wait()
  1475. end
  1476. wait()
  1477. wave11111:Destroy()
  1478. end)()
  1479. end
  1480. GroundWave9 = function()
  1481. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1482.  
  1483. Colors = {"Lime green", "Lime green"}
  1484. local wave111111 = Instance.new("Part", char)
  1485. wave111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1486. wave111111.Anchored = true
  1487. wave111111.Name = "Wave"
  1488. wave111111.CanCollide = false
  1489. wave111111.Locked = true
  1490. wave111111.Size = Vector3.new(1, 1, 1)
  1491. wave111111.TopSurface = "Smooth"
  1492. wave111111.BottomSurface = "Smooth"
  1493. wave111111.Transparency = 0.35
  1494. wave111111.CFrame = HandCF
  1495. wm311111 = Instance.new("SpecialMesh", wave111111)
  1496. wm311111.MeshId = "rbxassetid://3270017"
  1497. coroutine.wrap(function()
  1498. for i = 1, 30, 1 do
  1499. wm311111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1500. wave111111.Size = wm311111.Scale
  1501. wave111111.CFrame = HandCF
  1502. wave111111.Transparency = i/30
  1503. wait()
  1504. end
  1505. wait()
  1506. wave111111:Destroy()
  1507. end)()
  1508. end
  1509. GroundWave10 = function()
  1510. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1511.  
  1512. Colors = {"Lime green", "Lime green"}
  1513. local wave1111111 = Instance.new("Part", char)
  1514. wave1111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1515. wave1111111.Anchored = true
  1516. wave1111111.Name = "Wave"
  1517. wave1111111.CanCollide = false
  1518. wave1111111.Locked = true
  1519. wave1111111.Size = Vector3.new(1, 1, 1)
  1520. wave1111111.TopSurface = "Smooth"
  1521. wave1111111.BottomSurface = "Smooth"
  1522. wave1111111.Transparency = 0.35
  1523. wave1111111.CFrame = HandCF
  1524. wm3111111 = Instance.new("SpecialMesh", wave1111111)
  1525. wm3111111.MeshId = "rbxassetid://3270017"
  1526. coroutine.wrap(function()
  1527. for i = 1, 30, 1 do
  1528. wm3111111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1529. wave1111111.Size = wm3111111.Scale
  1530. wave1111111.CFrame = HandCF
  1531. wave1111111.Transparency = i/30
  1532. wait()
  1533. end
  1534. wait()
  1535. wave1111111:Destroy()
  1536. end)()
  1537. end
  1538.  
  1539.  
  1540. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1541.  
  1542. function nooutline(part)
  1543. part.TopSurface, part.BottomSurface, part.RightSurface, part.LeftSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  1544. end
  1545.  
  1546. function debris(cfremz, thepart, amt)
  1547. for j = 1, amt do
  1548. do
  1549. local pr = Instance.new("Part")
  1550. nooutline(pr)
  1551. pr.Name = "debrisobeb"
  1552. pr.Anchored = true
  1553. pr.BrickColor = thepart.BrickColor
  1554. pr.CanCollide = true
  1555. pr.Material = thepart.Material
  1556. pr.Transparency = thepart.Transparency
  1557. pr.Size = Vector3.new(math.random(16, 24), math.random(12, 16), math.random(16, 24))
  1558. 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)))
  1559. pr.Parent = workspace
  1560. game.Debris:AddItem(pr, 25)
  1561. delay(15, function()
  1562. if pr then
  1563. pr.CanCollide = false
  1564. pr.Anchored = false
  1565. end
  1566. end)
  1567. end
  1568. end
  1569. for c = 1, amt do
  1570. do
  1571. local pr2 = Instance.new("Part")
  1572. nooutline(pr2)
  1573. pr2.Name = "moredebr"
  1574. pr2.Anchored = false
  1575. pr2.BrickColor = thepart.BrickColor
  1576. pr2.CanCollide = false
  1577. pr2.Material = thepart.Material
  1578. pr2.Transparency = thepart.Transparency
  1579. pr2.Size = Vector3.new(math.random(8, 18), math.random(6, 18), math.random(8, 18))
  1580. 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)))
  1581. pr2.Parent = workspace
  1582. pr2.Velocity = Vector3.new(math.random(-75, 75), math.random(120, 240), math.random(-75, 75))
  1583. pr2.RotVelocity = Vector3.new(math.random(-35, 35), math.random(-35, 35), math.random(-35, 35))
  1584. game.Debris:AddItem(pr2, 45)
  1585. delay(2, function()
  1586. pr2.CanCollide = true
  1587. wait(10)
  1588. if pr2 then
  1589. pr2.CanCollide = false
  1590. end
  1591. end)
  1592. end
  1593. end
  1594. end
  1595.  
  1596.  
  1597. function weld5(part0, part1, c0, c1)
  1598. weeld=Instance.new("Weld", part0)
  1599. weeld.Part0=part0
  1600. weeld.Part1=part1
  1601. weeld.C0=c0
  1602. weeld.C1=c1
  1603. return weeld
  1604. end
  1605.  
  1606.  
  1607. par,loc=workspace:FindPartOnRay(Ray.new(root.Position,(root.Position-(root.Position-Vector3.new(0,2,0))).unit*-500),root)
  1608.  
  1609.  
  1610. local acos = math.acos
  1611. local sqrt = math.sqrt
  1612. local Vec3 = Vector3.new
  1613. local fromAxisAngle = CFrame.fromAxisAngle
  1614.  
  1615. local function toAxisAngle(CFr)
  1616. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1617. local Angle = math.acos((R00+R11+R22-1)/2)
  1618. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1619. A = A == 0 and 0.00001 or A
  1620. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1621. B = B == 0 and 0.00001 or B
  1622. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1623. C = C == 0 and 0.00001 or C
  1624. local x = (R21-R12)/sqrt(A)
  1625. local y = (R02-R20)/sqrt(B)
  1626. local z = (R10-R01)/sqrt(C)
  1627. return Vec3(x,y,z),Angle
  1628. end
  1629.  
  1630. function ApplyTrig(Num,Func)
  1631. local Min,Max = Func(0),Func(1)
  1632. local i = Func(Num)
  1633. return (i-Min)/(Max-Min)
  1634. end
  1635.  
  1636. function LerpCFrame(CFrame1,CFrame2,Num)
  1637. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1638. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1639. end
  1640.  
  1641. function Crater(Torso,Radius)
  1642. Spawn(function()
  1643. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1644. local Ignore = {}
  1645. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1646. if v.Character ~= nil then
  1647. Ignore[#Ignore+1] = v.Character
  1648. end
  1649. end
  1650. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1651. if Hit == nil then return end
  1652. local Parts = {}
  1653. for i = 1,360,10 do
  1654. local P = Instance.new("Part",Torso.Parent)
  1655. P.Anchored = true
  1656. P.FormFactor = "Custom"
  1657. P.BrickColor = Hit.BrickColor
  1658. P.Material = Hit.Material
  1659. P.TopSurface = "Smooth"
  1660. P.BottomSurface = "Smooth"
  1661. P.CanCollide = false
  1662. P.Size = Vector3.new(10,20,20)*(math.random(80,100)/100)
  1663. 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)))
  1664. 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}
  1665. if math.random(0,5) == 0 then -- rubble
  1666. local P = Instance.new("Part",Torso.Parent)
  1667. P.Anchored = true
  1668. P.FormFactor = "Custom"
  1669. P.BrickColor = Hit.BrickColor
  1670. P.Material = Hit.Material
  1671. P.TopSurface = "Smooth"
  1672. P.CanCollide = false
  1673. P.BottomSurface = "Smooth"
  1674. P.Size = Vector3.new(4,4,4)*(math.random(80,100)/100)
  1675. 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)))
  1676. 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}
  1677. end
  1678. end
  1679. for i = 0,1,0.05 do
  1680. for i2,v in pairs(Parts) do
  1681. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1682. end
  1683. wait(0.02)
  1684. end
  1685. for i,v in pairs(Parts) do
  1686. if v[1].Size.X > 2.1 then
  1687. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1688. end
  1689. v[1].Anchored = false
  1690. end
  1691. for i = 0,1,0.05 do
  1692. for i2,v in pairs(Parts) do
  1693. v[1].Transparency = i
  1694. if i == 1 then
  1695. v[1]:Destroy()
  1696. elseif i >= 0.25 then
  1697. v[1].CanCollide = false
  1698. end
  1699. end
  1700. wait(0.02)
  1701. end
  1702. Parts = nil
  1703. end)
  1704. end
  1705.  
  1706.  
  1707.  
  1708.  
  1709.  
  1710. function FindNearestTorso(Position,Distance,SinglePlayer)
  1711. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1712. local List = {}
  1713. for i,v in pairs(workspace:GetChildren())do
  1714. if v:IsA("Model")then
  1715. if v:findFirstChild("Torso")then
  1716. if v ~= char then
  1717. if(v.Torso.Position -Position).magnitude <= Distance then
  1718. table.insert(List,v)
  1719. end
  1720. end
  1721. end
  1722. end
  1723. end
  1724. return List
  1725. end
  1726.  
  1727.  
  1728.  
  1729. function FindNearestHead(Position,Distance,SinglePlayer)
  1730. if SinglePlayer then return(SinglePlayer.Head.CFrame.p -Position).magnitude < Distance end
  1731. local List = {}
  1732. for i,v in pairs(workspace:GetChildren())do
  1733. if v:IsA("Model")then
  1734. if v:findFirstChild("Head")then
  1735. if v ~= char then
  1736. if(v.Head.Position -Position).magnitude <= Distance then
  1737. table.insert(List,v)
  1738. end
  1739. end
  1740. end
  1741. end
  1742. end
  1743. return List
  1744. end
  1745.  
  1746.  
  1747.  
  1748. function FindNearestRightArm(Position,Distance,SinglePlayer)
  1749. if SinglePlayer then return(SinglePlayer.RightArm.CFrame.p -Position).magnitude < Distance end
  1750. local List = {}
  1751. for i,v in pairs(workspace:GetChildren())do
  1752. if v:IsA("Model")then
  1753. if v:findFirstChild("Right Arm")then
  1754. if v ~= char then
  1755. if(v.RightArm.Position -Position).magnitude <= Distance then
  1756. table.insert(List,v)
  1757. end
  1758. end
  1759. end
  1760. end
  1761. end
  1762. return List
  1763. end
  1764.  
  1765.  
  1766. function FindNearestLeftArm(Position,Distance,SinglePlayer)
  1767. if SinglePlayer then return(SinglePlayer.LeftArm.CFrame.p -Position).magnitude < Distance end
  1768. local List = {}
  1769. for i,v in pairs(workspace:GetChildren())do
  1770. if v:IsA("Model")then
  1771. if v:findFirstChild("Left Arm")then
  1772. if v ~= char then
  1773. if(v.LeftArm.Position -Position).magnitude <= Distance then
  1774. table.insert(List,v)
  1775. end
  1776. end
  1777. end
  1778. end
  1779. end
  1780. return List
  1781. end
  1782.  
  1783.  
  1784.  
  1785. function FindNearestRightLeg(Position,Distance,SinglePlayer)
  1786. if SinglePlayer then return(SinglePlayer.RightLeg.CFrame.p -Position).magnitude < Distance end
  1787. local List = {}
  1788. for i,v in pairs(workspace:GetChildren())do
  1789. if v:IsA("Model")then
  1790. if v:findFirstChild("Right Leg")then
  1791. if v ~= char then
  1792. if(v.RightLeg.Position -Position).magnitude <= Distance then
  1793. table.insert(List,v)
  1794. end
  1795. end
  1796. end
  1797. end
  1798. end
  1799. return List
  1800. end
  1801.  
  1802.  
  1803. function FindNearestLeftLeg(Position,Distance,SinglePlayer)
  1804. if SinglePlayer then return(SinglePlayer.LeftLeg.CFrame.p -Position).magnitude < Distance end
  1805. local List = {}
  1806. for i,v in pairs(workspace:GetChildren())do
  1807. if v:IsA("Model")then
  1808. if v:findFirstChild("Left Leg")then
  1809. if v ~= char then
  1810. if(v.LeftLeg.Position -Position).magnitude <= Distance then
  1811. table.insert(List,v)
  1812. end
  1813. end
  1814. end
  1815. end
  1816. end
  1817. return List
  1818. end
  1819.  
  1820.  
  1821.  
  1822.  
  1823.  
  1824.  
  1825. mouse.KeyDown:connect(function(key)--------------------------------------------Roar
  1826. if key == "q" then
  1827. hum.WalkSpeed = 0
  1828. if Debounces.CanAttack == true then
  1829. Debounces.CanAttack = false
  1830. Debounces.NoIdl = true
  1831. Debounces.on = true
  1832. for i = 1, 30 do
  1833. 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)
  1834. 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)
  1835. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  1836. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  1837. 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)
  1838. 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)
  1839. if Debounces.on == false then break end
  1840. rs:wait(6)
  1841. end
  1842. v = Instance.new("Sound")
  1843. v.SoundId = "rbxassetid://800952230"
  1844. v.Parent = char
  1845. v.Looped = false
  1846. v.Pitch = 1
  1847. v.Volume = 500
  1848. wait(.01)
  1849. v:Play()
  1850.  
  1851.  
  1852. local Shockwave = function()
  1853. local rng1 = Instance.new("Part", char)
  1854. rng1.Anchored = true
  1855. rng1.BrickColor = BrickColor.new("Lime green")
  1856. rng1.CanCollide = false
  1857. rng1.FormFactor = 3
  1858. rng1.Name = "Ring"
  1859. rng1.Size = Vector3.new(1, 1, 1)
  1860. rng1.Transparency = 0.35
  1861. rng1.TopSurface = 0
  1862. rng1.BottomSurface = 0
  1863. local rngm1 = Instance.new("SpecialMesh", rng1)
  1864. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1865. rngm1.Scale = Vector3.new(10, 10, 1)
  1866. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  1867. local Wave = Instance.new("Part", game.Workspace--[[?]])
  1868. Wave.Name = "Shockwave"
  1869. Wave.BrickColor = BrickColor.new("Lime green")
  1870. Wave.Size = Vector3.new(1, 1, 1)
  1871. Wave.Shape = "Ball"
  1872. Wave.CanCollide = false
  1873. Wave.Anchored = true
  1874. Wave.TopSurface = 0
  1875. Wave.BottomSurface = 0
  1876. Wave.Touched:connect(function(hit)
  1877. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  1878. local Occlude = true
  1879. local NotOccludes = {
  1880. char.Name;
  1881. "Wings";
  1882. "Scythe";
  1883. "Thingy";
  1884. "Thingy2"; -- put all of the names in a table pls
  1885. }
  1886. for i,v in pairs(NotOccludes) do
  1887. if hit.Parent.Name == v then
  1888. Occlude = false
  1889. end
  1890. end
  1891. --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
  1892. if Occlude then
  1893. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  1894. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  1895. end
  1896. end
  1897. end)
  1898.  
  1899. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  1900.  
  1901. coroutine.wrap(function()
  1902. for i = 1, 20, 0.2 do
  1903. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  1904. rng1.Transparency = i/20
  1905. rng1.CFrame = Wave.CFrame
  1906. wait()
  1907. end
  1908. wait()
  1909. rng1:Destroy()
  1910. end)()
  1911.  
  1912. Delay(0, function()
  1913.  
  1914.  
  1915. for i = 1, 50, 1 do
  1916. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  1917. Wave.CFrame = char.Torso.CFrame
  1918. local t = i / 50
  1919. Wave.Transparency = t
  1920. wait()
  1921. end
  1922.  
  1923. Wave:Destroy()
  1924. end)
  1925. Delay(0, function()
  1926. while wait() do
  1927. if Wave ~= nil then
  1928. Wave.CFrame = char.Torso.CFrame
  1929. else
  1930. break
  1931. end
  1932. end
  1933. end)
  1934. end
  1935.  
  1936.  
  1937. new = Instance.new
  1938.  
  1939. v3 = Vector3.new
  1940.  
  1941.  
  1942. a21e = new("Part",char)
  1943. a21e.Name = "Beam"..num
  1944. a21e.Locked = true
  1945. a21e.Size = v3(1,1,1)
  1946. a21e.CanCollide = false
  1947. a21e.Position = v3(999,999,999)
  1948. a21e.BrickColor = BrickColor.new("Lime green")
  1949. a21e.Material = "Neon"
  1950. a21e.Transparency = 0
  1951. aa21e = new("SpecialMesh",a21e)
  1952. a21e.Anchored = true
  1953. a21e.Position = root.Position
  1954. aa21e.MeshType = "Sphere"
  1955. aa21e.Scale = v3(1,1,1)
  1956.  
  1957.  
  1958. coroutine.resume(coroutine.create(function()
  1959. BurningEff(FindNearestTorso(root.CFrame.p,35))
  1960. BurningEff(FindNearestHead(root.CFrame.p,35))
  1961. BurningEff(FindNearestRightArm(root.CFrame.p,35))
  1962. BurningEff(FindNearestLeftArm(root.CFrame.p,35))
  1963. BurningEff(FindNearestRightLeg(root.CFrame.p,35))
  1964. BurningEff(FindNearestLeftLeg(root.CFrame.p,35))
  1965.  
  1966. end))
  1967.  
  1968. for i,v in pairs(FindNearestTorso(root.CFrame.p,25))do
  1969. if v:FindFirstChild('Humanoid') then
  1970. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1971. v.Humanoid.PlatformStand = true
  1972. v:FindFirstChild("Torso").Velocity = torso.CFrame.lookVector * 200
  1973. BurningEff(v:FindFirstChild('Torso'))
  1974.  
  1975. end
  1976. end
  1977.  
  1978.  
  1979. coroutine.resume(coroutine.create(function()
  1980.  
  1981. for i,v in pairs(workspace:children()) do
  1982. charr = v:FindFirstChild('Character')
  1983. for i = 1, 40 do
  1984. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1985. wait()
  1986. end
  1987.  
  1988. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  1989. end
  1990. end))
  1991.  
  1992.  
  1993.  
  1994.  
  1995. coroutine.resume(coroutine.create(function()
  1996. for i = 1, 40 do
  1997. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1998. wait()
  1999. end
  2000. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2001. end))
  2002.  
  2003. coroutine.resume(coroutine.create(function()
  2004. par,loc=workspace:FindPartOnRay(Ray.new(char.Torso.Position,(char.Torso.Position-(char.Torso.Position-Vector3.new(0,2,0))).unit*-500),char)
  2005. if par then
  2006. local cfremz = CFrame.new(loc)
  2007. debris(cfremz, par, 50)
  2008. end
  2009. end))
  2010.  
  2011.  
  2012. Crater(root,155)
  2013. GroundWave5()
  2014. GroundWave6()
  2015. GroundWave7()
  2016. GroundWave8()
  2017. GroundWave9()
  2018. GroundWave10()
  2019.  
  2020. coroutine.resume(coroutine.create(function()
  2021. for i = 1,25 do
  2022. wait()
  2023. aa21e.Scale = aa21e.Scale + v3(5,5,5)
  2024. a21e.Transparency = a21e.Transparency + 0.04
  2025. end
  2026. end))
  2027.  
  2028.  
  2029.  
  2030.  
  2031. for i = 1, 30 do
  2032. 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)
  2033. 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)
  2034. 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)
  2035. 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)
  2036. 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)
  2037. 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)
  2038. if Debounces.on == false then break end
  2039. rs:wait()
  2040. end
  2041. wait(4.4)
  2042. Debounces.NoIdl = false
  2043. hum.WalkSpeed = 5
  2044. Debounces.on = false
  2045. wait()
  2046. if Debounces.CanAttack == false then
  2047. Debounces.CanAttack = true
  2048. v:Destroy()
  2049. end
  2050. end
  2051. end
  2052. end)
  2053.  
  2054.  
  2055.  
  2056.  
  2057.  
  2058.  
  2059.  
  2060. ----------------------------------------------------
  2061. function weld5(part0, part1, c0, c1)
  2062. weeld=Instance.new("Weld", part0)
  2063. weeld.Part0=part0
  2064. weeld.Part1=part1
  2065. weeld.C0=c0
  2066. weeld.C1=c1
  2067. return weeld
  2068. end
  2069.  
  2070.  
  2071.  
  2072.  
  2073.  
  2074. Grab = false
  2075. mouse.KeyDown:connect(function(key)-----------------------------------------Grab
  2076. if key == "z" then
  2077. Debounces.on = true
  2078. Debounces.NoIdl = true
  2079. if Grab == false then
  2080. gp = nil
  2081. con1=larm.Touched:connect(function(hit) -- this is grab
  2082. ht = hit.Parent
  2083. hum1=ht:FindFirstChild('Humanoid')
  2084. if hum1 ~= nil then
  2085. hum1.PlatformStand=true
  2086. gp = ht
  2087. Grab = true
  2088. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  2089. asd.Parent = larm
  2090. asd.Name = "asd"
  2091. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  2092. elseif hum1 == nil then
  2093. con1:disconnect()
  2094. wait() return
  2095. end
  2096. end)
  2097.  
  2098.  
  2099. for i = 1, 18 do
  2100. 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)
  2101. 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)
  2102. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2103. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  2104. 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)
  2105. 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)
  2106. if Debounces.on == false then break end
  2107. wait()
  2108. end
  2109. con1:disconnect()
  2110. Debounces.on = false
  2111. Debounces.NoIdl = false
  2112. wait(0.1)
  2113. ht:FindFirstChild("Torso").CanCollide = true
  2114. ht:FindFirstChild("RightArm").CanCollide = true
  2115. ht:FindFirstChild("LeftArm").CanCollide = true
  2116. ht:FindFirstChild("RightLeg").CanCollide = true
  2117. ht:FindFirstChild("LeftLeg").CanCollide = true
  2118. ht:FindFirstChild("Head").CanCollide = true elseif Grab == true then
  2119. Grab = false
  2120. for i = 1, 20 do
  2121. 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)
  2122. 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)
  2123. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2124. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2125. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2126. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2127. if Debounces.on == false then end
  2128. wait()
  2129. end
  2130. if gp ~= nil then
  2131. for i,v in pairs(larm:GetChildren()) do
  2132. if v.Name == "asd" and v:IsA("Weld") then
  2133. v:Remove()
  2134. end
  2135. end
  2136. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  2137. bv.maxForce = Vector3.new(400000, 400000, 400000)
  2138. bv.P = 125000000000000
  2139. bv.velocity = char.Head.CFrame.lookVector * 1000
  2140. for i = 1, 12 do
  2141. 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)
  2142. if Debounces.on == false then end
  2143. wait()
  2144. end
  2145. ht=nil
  2146. Spawn(function()
  2147. wait(0.5)
  2148. bv:Destroy()
  2149. end)
  2150. Debounces.on = false
  2151. Debounces.NoIdl = false
  2152. elseif ht == nil then wait()
  2153. Grab = false
  2154. Debounces.on = false
  2155. Debounces.NoIdl = false
  2156. end
  2157. end
  2158. end
  2159. end)
  2160.  
  2161.  
  2162.  
  2163.  
  2164. mouse.KeyDown:connect(function(key)
  2165. if key == "c" then
  2166. if Debounces.CanAttack == true then
  2167. Debounces.CanAttack = false
  2168. Debounces.NoIdl = true
  2169. Debounces.on = true
  2170.  
  2171.  
  2172.  
  2173.  
  2174. GroundWaves5 = function()
  2175. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  2176.  
  2177. Colors = {"Lime green", "Lime green"}
  2178.  
  2179.  
  2180. local wave11 = Instance.new("Part", char)
  2181. wave11.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2182. wave11.Anchored = true
  2183. wave11.Name = "Wave"
  2184. wave11.CanCollide = false
  2185. wave11.Locked = true
  2186. wave11.Size = Vector3.new(1, 1, 1)
  2187. wave11.TopSurface = "Smooth"
  2188. wave11.BottomSurface = "Smooth"
  2189. wave11.Transparency = 0.35
  2190. wave11.CFrame = HandCF
  2191. wm31 = Instance.new("SpecialMesh", wave11)
  2192. wm31.MeshId = "rbxassetid://3270017"
  2193. coroutine.wrap(function()
  2194. for i = 1, 30, 1 do
  2195. wm31.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2196. wave11.Size = wm31.Scale
  2197. wave11.CFrame = HandCF
  2198. wave11.Transparency = i/30
  2199. wait()
  2200. end
  2201. wait()
  2202. wave11:Destroy()
  2203. end)()
  2204. end
  2205. GroundWaves6 = function()
  2206. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2207.  
  2208. Colors = {"Lime green", "Lime green"}
  2209.  
  2210. local wave111 = Instance.new("Part", char)
  2211. wave111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2212. wave111.Anchored = true
  2213. wave111.Name = "Wave"
  2214. wave111.CanCollide = false
  2215. wave111.Locked = true
  2216. wave111.Size = Vector3.new(1, 1, 1)
  2217. wave111.TopSurface = "Smooth"
  2218. wave111.BottomSurface = "Smooth"
  2219. wave111.Transparency = 0.35
  2220. wave111.CFrame = HandCF
  2221. wm311 = Instance.new("SpecialMesh", wave111)
  2222. wm311.MeshId = "rbxassetid://3270017"
  2223. coroutine.wrap(function()
  2224. for i = 1, 30, 1 do
  2225. wm311.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2226. wave111.Size = wm311.Scale
  2227. wave111.CFrame = HandCF
  2228. wave111.Transparency = i/30
  2229. wait()
  2230. end
  2231. wait()
  2232. wave111:Destroy()
  2233. end)()
  2234. end
  2235. GroundWaves7 = function()
  2236. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2237.  
  2238. Colors = {"Lime green", "Lime green"}
  2239. local wave1111 = Instance.new("Part", char)
  2240. wave1111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2241. wave1111.Anchored = true
  2242. wave1111.Name = "Wave"
  2243. wave1111.CanCollide = false
  2244. wave1111.Locked = true
  2245. wave1111.Size = Vector3.new(1, 1, 1)
  2246. wave1111.TopSurface = "Smooth"
  2247. wave1111.BottomSurface = "Smooth"
  2248. wave1111.Transparency = 0.35
  2249. wave1111.CFrame = HandCF
  2250. wm3111 = Instance.new("SpecialMesh", wave1111)
  2251. wm3111.MeshId = "rbxassetid://3270017"
  2252. coroutine.wrap(function()
  2253. for i = 1, 30, 1 do
  2254. wm3111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2255. wave1111.Size = wm3111.Scale
  2256. wave1111.CFrame = HandCF
  2257. wave1111.Transparency = i/30
  2258. wait()
  2259. end
  2260. wait()
  2261. wave1111:Destroy()
  2262. end)()
  2263. end
  2264. GroundWaves8 = function()
  2265. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2266.  
  2267. Colors = {"Lime green", "Lime green"}
  2268. local wave11111 = Instance.new("Part", char)
  2269. wave11111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2270. wave11111.Anchored = true
  2271. wave11111.Name = "Wave"
  2272. wave11111.CanCollide = false
  2273. wave11111.Locked = true
  2274. wave11111.Size = Vector3.new(1, 1, 1)
  2275. wave11111.TopSurface = "Smooth"
  2276. wave11111.BottomSurface = "Smooth"
  2277. wave11111.Transparency = 0.35
  2278. wave11111.CFrame = HandCF
  2279. wm31111 = Instance.new("SpecialMesh", wave11111)
  2280. wm31111.MeshId = "rbxassetid://3270017"
  2281. coroutine.wrap(function()
  2282. for i = 1, 30, 1 do
  2283. wm31111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2284. wave11111.Size = wm31111.Scale
  2285. wave11111.CFrame = HandCF
  2286. wave11111.Transparency = i/30
  2287. wait()
  2288. end
  2289. wait()
  2290. wave11111:Destroy()
  2291. end)()
  2292. end
  2293. GroundWaves9 = function()
  2294. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2295.  
  2296. Colors = {"Lime green", "Lime green"}
  2297. local wave111111 = Instance.new("Part", char)
  2298. wave111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2299. wave111111.Anchored = true
  2300. wave111111.Name = "Wave"
  2301. wave111111.CanCollide = false
  2302. wave111111.Locked = true
  2303. wave111111.Size = Vector3.new(1, 1, 1)
  2304. wave111111.TopSurface = "Smooth"
  2305. wave111111.BottomSurface = "Smooth"
  2306. wave111111.Transparency = 0.35
  2307. wave111111.CFrame = HandCF
  2308. wm311111 = Instance.new("SpecialMesh", wave111111)
  2309. wm311111.MeshId = "rbxassetid://3270017"
  2310. coroutine.wrap(function()
  2311. for i = 1, 30, 1 do
  2312. wm311111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2313. wave111111.Size = wm311111.Scale
  2314. wave111111.CFrame = HandCF
  2315. wave111111.Transparency = i/30
  2316. wait()
  2317. end
  2318. wait()
  2319. wave111111:Destroy()
  2320. end)()
  2321. end
  2322. GroundWaves10 = function()
  2323. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2324.  
  2325. Colors = {"Lime green", "Lime green"}
  2326. local wave1111111 = Instance.new("Part", char)
  2327. wave1111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2328. wave1111111.Anchored = true
  2329. wave1111111.Name = "Wave"
  2330. wave1111111.CanCollide = false
  2331. wave1111111.Locked = true
  2332. wave1111111.Size = Vector3.new(1, 1, 1)
  2333. wave1111111.TopSurface = "Smooth"
  2334. wave1111111.BottomSurface = "Smooth"
  2335. wave1111111.Transparency = 0.35
  2336. wave1111111.CFrame = HandCF
  2337. wm3111111 = Instance.new("SpecialMesh", wave1111111)
  2338. wm3111111.MeshId = "rbxassetid://3270017"
  2339. coroutine.wrap(function()
  2340. for i = 1, 30, 1 do
  2341. wm3111111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2342. wave1111111.Size = wm3111111.Scale
  2343. wave1111111.CFrame = HandCF
  2344. wave1111111.Transparency = i/30
  2345. wait()
  2346. end
  2347. wait()
  2348. wave1111111:Destroy()
  2349. end)()
  2350. end
  2351.  
  2352.  
  2353.  
  2354. for i = 1, 40 do
  2355. 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)
  2356. 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)
  2357. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2358. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2359. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2360. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2361. if Debounces.on == false then break end
  2362. wait()
  2363. end
  2364.  
  2365.  
  2366.  
  2367.  
  2368. coroutine.resume(coroutine.create(function()
  2369. for i=1, 5 do
  2370. p=Instance.new("Part")
  2371. p.FrontSurface=par.TopSurface
  2372. p.Material=par.Material
  2373. p.BottomSurface=0
  2374. p.Anchored=true p.CanCollide=false
  2375. p.BrickColor=par.BrickColor
  2376. p.Size=Vector3.new(math.random(15,35)/5,math.random(15,35)/5,math.random(4,5))
  2377. 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)
  2378. p.Parent=char
  2379. game:GetService("Debris"):AddItem(p,2+i*.1)
  2380. if math.random(1,5)==5 then
  2381. 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)
  2382. end
  2383. end
  2384. for i=1, 5 do
  2385. for i=1, 1 do
  2386. p=Instance.new("Part")
  2387. p.TopSurface=par.TopSurface
  2388. p.BottomSurface=par.BottomSurface
  2389. p.Material=par.Material
  2390. p.BottomSurface=0
  2391. p.Anchored=false p.CanCollide=true
  2392. p.BrickColor=par.BrickColor
  2393. p.formFactor="Custom"
  2394. p.Size=Vector3.new(math.random(15,35)/12,math.random(13,35)/12,math.random(15,35)/12)
  2395. 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)
  2396. p.Parent=char
  2397. game:GetService("Debris"):AddItem(p,3+i*.1)
  2398. p.Velocity=Vector3.new(math.random(-10,10)*4,math.random(40,80),math.random(-10,10)*4)
  2399. p.RotVelocity=p.Velocity
  2400. if math.random(1,5)==5 then
  2401. 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)
  2402. end
  2403. end
  2404. end
  2405. end))
  2406.  
  2407.  
  2408.  
  2409.  
  2410. coroutine.resume(coroutine.create(function()
  2411. wait(0.2)
  2412. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2413. if v:FindFirstChild('Humanoid') then
  2414. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2415. v.Humanoid.PlatformStand = true
  2416. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2417. end
  2418. end
  2419.  
  2420. GroundWaves5()
  2421. GroundWaves6()
  2422. GroundWaves7()
  2423. GroundWaves8()
  2424. GroundWaves9()
  2425. GroundWaves10()
  2426. end))
  2427. for i = 1, 20 do
  2428. 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)
  2429. 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)
  2430. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2431. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2432. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2433. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2434. if Debounces.on == false then break end
  2435. wait()
  2436. end
  2437.  
  2438.  
  2439.  
  2440.  
  2441. if Debounces.CanAttack == false then
  2442. Debounces.CanAttack = true
  2443. Debounces.on = false
  2444. Debounces.NoIdl = false
  2445.  
  2446. end
  2447. end
  2448. end
  2449. end)
  2450.  
  2451.  
  2452. function newRay(start,face,range,wat)
  2453. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  2454. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  2455. return rey,hit,pos
  2456. end
  2457.  
  2458.  
  2459.  
  2460. fat = Instance.new("BindableEvent",script)
  2461. fat.Name = "Heartbeat"
  2462.  
  2463. script:WaitForChild("Heartbeat")
  2464.  
  2465. frame = 1/30
  2466. tf = 0
  2467. 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.
  2468. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  2469. lastframe = tick()
  2470. script.Heartbeat:Fire() --ayy lmao
  2471.  
  2472. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  2473. tf = tf + s
  2474. if tf >= frame then
  2475. if allowframeloss then
  2476. script.Heartbeat:Fire()
  2477. lastframe=tick()
  2478. else
  2479. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  2480. for i=1, math.floor(tf/frame) do
  2481. script.Heartbeat:Fire()
  2482. end
  2483. lastframe=tick()
  2484. end
  2485. if tossremainder then
  2486. tf = 0
  2487. else
  2488. tf = tf - frame * math.floor(tf/frame)
  2489. end
  2490. end
  2491. end)
  2492.  
  2493. function Swait(NUMBER)
  2494. if NUMBER == 0 or NUMBER == nil then
  2495. fat.Event:wait()
  2496. else
  2497. for i = 1, NUMBER do
  2498. fat.Event:wait()
  2499. end
  2500. end
  2501. end
  2502.  
  2503. function Landing2()
  2504. local rng = Instance.new("Part", char)
  2505. rng.Anchored = true
  2506. rng.BrickColor = BrickColor.new("Lime green")
  2507. rng.CanCollide = false
  2508. rng.FormFactor = 3
  2509. rng.Name = "Ring"
  2510. rng.Size = Vector3.new(1, 1, 1)
  2511. rng.Transparency = 0
  2512. rng.TopSurface = 0
  2513. rng.BottomSurface = 0
  2514. rng.Position = root.Position
  2515. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2516. local rngm = Instance.new("SpecialMesh", rng)
  2517. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2518. local rng2 = rng:Clone()
  2519. rng2.Parent = char
  2520. local rng2m = rng2.Mesh
  2521. local rng3 = rng:Clone()
  2522. rng3.Parent = char
  2523. local rng3m = rng3.Mesh
  2524. local rng4 = rng:Clone()
  2525. rng4.Parent = char
  2526. local rng4m = rng4.Mesh
  2527. local rng5 = rng:Clone()
  2528. rng5.Parent = char
  2529. local rng5m = rng5.Mesh
  2530. for i,v in pairs(FindNearestTorso(torso.CFrame.p,905))do
  2531. if v:FindFirstChild('Humanoid') then
  2532. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2533. v.Humanoid.PlatformStand = true
  2534. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2535. end
  2536. end
  2537. --MagicBlock(BrickColor.new("Lime green"),root.CFrame,15,15,15,5,5,5,0.015)
  2538. -- CFuncs["Sound"].Create("rbxassetid://187137517", rng, 10, 1)
  2539. --CFuncs["Sound"].Create("rbxassetid://597291504", rng, 5, 0.85)
  2540. ---CFuncs["Sound"].Create("rbxassetid://144699494", rng, 10, 1)
  2541. wait()
  2542. local scaler = 10
  2543. local scaler2 = 10
  2544. for i = 0,10,0.1 do
  2545. Swait()
  2546. rng.Transparency = rng.Transparency + 0.01
  2547. rng2.Transparency = rng2.Transparency + 0.01
  2548. rng3.Transparency = rng3.Transparency + 0.01
  2549. rng4.Transparency = rng4.Transparency + 0.01
  2550. rng5.Transparency = rng5.Transparency + 0.01
  2551. scaler = scaler - 0.125
  2552. scaler2 = scaler2 - 0.1
  2553. rng2m.Scale = rng2m.Scale + Vector3.new(scaler2/1.75, scaler2/1.75, 4)
  2554. rng3m.Scale = rng3m.Scale + Vector3.new(scaler2/1.5, scaler2/1.5, 3)
  2555. rng4m.Scale = rng4m.Scale + Vector3.new(scaler2/1.25, scaler2/1.25, 2)
  2556. rng5m.Scale = rng5m.Scale + Vector3.new(scaler2, scaler2, 1)
  2557. rng5.Size = rng5m.Scale
  2558. rng5.CFrame = rng.CFrame
  2559. rngm.Scale = rngm.Scale + Vector3.new(scaler2/2, scaler2/2, 5)
  2560. end
  2561. end
  2562. function Landing()
  2563. Grabee = torso
  2564. par,loc=workspace:FindPartOnRay(Ray.new(char.Torso.Position,(char.Torso.Position-(char.Torso.Position-Vector3.new(0,2,0))).unit*-500),char)
  2565. if par then
  2566. local cfremz = CFrame.new(loc)
  2567. debris(cfremz, par, 50)
  2568. end
  2569. for i=1, 50 do
  2570. p=Instance.new("Part")
  2571. p.FrontSurface=par.TopSurface
  2572. p.Material=par.Material
  2573. p.BottomSurface=0
  2574. p.Anchored=true p.CanCollide=false
  2575. p.BrickColor=par.BrickColor
  2576. p.Size=Vector3.new(math.random(15,35)/5,math.random(15,35)/5,math.random(4,5))
  2577. 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)
  2578. p.Parent=char
  2579. game:GetService("Debris"):AddItem(p,2+i*.1)
  2580. if math.random(1,5)==5 then
  2581. 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)
  2582. end
  2583. end
  2584. for i=1, 50 do
  2585. for i=1, 1 do
  2586. p=Instance.new("Part")
  2587. p.TopSurface=par.TopSurface
  2588. p.BottomSurface=par.BottomSurface
  2589. p.Material=par.Material
  2590. p.BottomSurface=0
  2591. p.Anchored=false p.CanCollide=true
  2592. p.BrickColor=par.BrickColor
  2593. p.formFactor="Custom"
  2594. p.Size=Vector3.new(math.random(15,35)/12,math.random(13,35)/12,math.random(15,35)/12)
  2595. 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)
  2596. p.Parent=char
  2597. game:GetService("Debris"):AddItem(p,3+i*.1)
  2598. p.Velocity=Vector3.new(math.random(-10,10)*4,math.random(40,80),math.random(-10,10)*4)
  2599. p.RotVelocity=p.Velocity
  2600. if math.random(1,5)==5 then
  2601. 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)
  2602. end
  2603. end
  2604. Swait(.025)
  2605. end
  2606. end
  2607.  
  2608.  
  2609.  
  2610.  
  2611.  
  2612.  
  2613.  
  2614.  
  2615.  
  2616.  
  2617. mouse.KeyDown:connect(function(key)
  2618. if key == "m" then
  2619. hum.WalkSpeed = 0
  2620. if Debounces.CanAttack == true then
  2621. Debounces.CanAttack = false
  2622. Debounces.on = true
  2623. Debounces.NoIdl = true
  2624.  
  2625. for i = 1, 20 do
  2626. 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)
  2627. 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)
  2628. 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)
  2629. 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)
  2630. 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)
  2631. 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)
  2632. if Debounces.on == false then break end
  2633. wait()
  2634.  
  2635. end
  2636. wait(1)
  2637. local rng = Instance.new("Part", char)
  2638. rng.Anchored = true
  2639. rng.BrickColor = BrickColor.new("Lime green")
  2640. rng.CanCollide = false
  2641. rng.FormFactor = 3
  2642. rng.Name = "Ring"
  2643. rng.Size = Vector3.new(1, 1, 1)
  2644. rng.Transparency = 0.35
  2645. rng.TopSurface = 0
  2646. rng.BottomSurface = 0
  2647. rng.Position = torso.Position - Vector3.new(0,2,0)
  2648. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2649. local rngm = Instance.new("SpecialMesh", rng)
  2650. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2651. rngm.Scale = Vector3.new(1, 1, 2)
  2652. l = Instance.new("Sound",char)
  2653. l.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2654. l.Looped = false
  2655. l.Pitch = .7
  2656. l.Volume = 1
  2657. l:Play()
  2658. coroutine.wrap(function()
  2659. for i = 1, 60, 2 do
  2660. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2661. rng.Transparency = i/60
  2662. wait()
  2663. end
  2664. wait()
  2665. rng:Destroy()
  2666. end)()
  2667. hum.WalkSpeed = 50
  2668. BV = Instance.new("BodyVelocity", torso)
  2669. BV.maxForce = Vector3.new(0,100000,0)
  2670. BV.P = 100000
  2671. BV.velocity = Vector3.new(0,999999,0)
  2672. for i = 1, 145 do
  2673. 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)
  2674. 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)
  2675. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  2676. 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)
  2677. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  2678. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  2679. if Debounces.on == false then break end
  2680. wait()
  2681. end
  2682. l:Destroy()
  2683. BV:Destroy()
  2684. coroutine.resume(coroutine.create(function()
  2685. wait(0.01)
  2686. l = Instance.new("Sound",char)
  2687. l.SoundId = "http://www.roblox.com/asset/?id=938838122"
  2688. l.Looped = false
  2689. l.Pitch = 1
  2690. l.Volume = 80
  2691. l:Play()
  2692. end))
  2693. for i = 1, 60 do
  2694. 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)
  2695. 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)
  2696. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2697. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2698. 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)
  2699. 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)
  2700. if Debounces.on == false then break end
  2701. wait()
  2702. end
  2703. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  2704. for i = 1, 30 do
  2705. 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)
  2706. 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)
  2707. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2708. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2709. 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)
  2710. 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)
  2711. if Debounces.on == false then break end
  2712. wait()
  2713. end
  2714. end
  2715. Debounces.on = false
  2716. Debounces.NoIdl = false
  2717. local ry,ht,ps=nil,nil,nil
  2718. while ht==nil do
  2719. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  2720. wait()
  2721. end
  2722.  
  2723.  
  2724. coroutine.resume(coroutine.create(function()
  2725.  
  2726. for i,v in pairs(workspace:children()) do
  2727. charr = v:FindFirstChild('Character')
  2728. for i = 1, 15 do
  2729. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2730. wait()
  2731. end
  2732.  
  2733. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2734. end
  2735. end))
  2736.  
  2737.  
  2738.  
  2739.  
  2740. coroutine.resume(coroutine.create(function()
  2741. for i = 1, 15 do
  2742. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2743. wait()
  2744. end
  2745. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2746. end))
  2747.  
  2748.  
  2749. coroutine.resume(coroutine.create(function()
  2750. Landing2()
  2751. end))
  2752. Landing()
  2753. game:GetService("Debris"):AddItem(rng, 1)
  2754. game:GetService("Debris"):AddItem(rng2, 1)
  2755. game:GetService("Debris"):AddItem(rng3, 1)
  2756. game:GetService("Debris"):AddItem(rng4, 1)
  2757. game:GetService("Debris"):AddItem(rng5, 1)
  2758. hum.WalkSpeed = 5
  2759. if Debounces.CanAttack == false then
  2760. Debounces.CanAttack = true
  2761. end
  2762. end
  2763. end
  2764. end)
  2765.  
  2766.  
  2767.  
  2768. ptez = {0.7, 0.8, 0.9, 1}
  2769.  
  2770. function GroundPound()
  2771. local rng = Instance.new("Part", char)
  2772. rng.Anchored = true
  2773. rng.BrickColor = BrickColor.new("Lime green")
  2774. rng.CanCollide = false
  2775. rng.FormFactor = 3
  2776. rng.Name = "Ring"
  2777. rng.Size = Vector3.new(1, 1, 1)
  2778. rng.Transparency = 0.35
  2779. rng.TopSurface = 0
  2780. rng.BottomSurface = 0
  2781. rng.Position = larm.Position - Vector3.new(0,4,0)
  2782. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2783. local rngm = Instance.new("SpecialMesh", rng)
  2784. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2785. rngm.Scale = Vector3.new(1, 1, 2)
  2786. coroutine.resume(coroutine.create(function()
  2787. t = Instance.new("Sound",char)
  2788. t.SoundId = "http://www.roblox.com/asset/?id=142070127"
  2789. t.Pitch = ptez[math.random(1,#ptez)]
  2790. t.Volume = 1
  2791. wait(.1)
  2792. t:Play()
  2793. end))
  2794. coroutine.wrap(function()
  2795. for i = 1, 60, 2 do
  2796. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2797. rng.Transparency = i/60
  2798. wait()
  2799. end
  2800. wait()
  2801. rng:Destroy()
  2802. end)()
  2803.  
  2804. end
  2805.  
  2806.  
  2807. function GroundPound2()
  2808. local rng = Instance.new("Part", char)
  2809. rng.Anchored = true
  2810. rng.BrickColor = BrickColor.new("Lime green")
  2811. rng.CanCollide = false
  2812. rng.FormFactor = 3
  2813. rng.Name = "Ring"
  2814. rng.Size = Vector3.new(1, 1, 1)
  2815. rng.Transparency = 0.35
  2816. rng.TopSurface = 0
  2817. rng.BottomSurface = 0
  2818. rng.Position = rarm.Position - Vector3.new(0,4,0)
  2819. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2820. local rngm = Instance.new("SpecialMesh", rng)
  2821. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2822. rngm.Scale = Vector3.new(1, 1, 2)
  2823. coroutine.resume(coroutine.create(function()
  2824. t = Instance.new("Sound",char)
  2825. t.SoundId = "http://www.roblox.com/asset/?id=142070127"
  2826. t.Pitch = ptez[math.random(1,#ptez)]
  2827. t.Volume = 1
  2828. wait(.1)
  2829. t:Play()
  2830. end))
  2831. coroutine.wrap(function()
  2832. for i = 1, 60, 2 do
  2833. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2834. rng.Transparency = i/60
  2835. wait()
  2836. end
  2837. wait()
  2838. rng:Destroy()
  2839. end)()
  2840. end
  2841.  
  2842.  
  2843.  
  2844.  
  2845. mouse.KeyDown:connect(function(key)
  2846. if key == "e" then
  2847. if Debounces.CanAttack == true then
  2848. Debounces.CanAttack = false
  2849. Debounces.NoIdl = true
  2850. Debounces.on = true
  2851.  
  2852.  
  2853.  
  2854.  
  2855. coroutine.resume(coroutine.create(function()
  2856.  
  2857. for i,v in pairs(workspace:children()) do
  2858. charr = v:FindFirstChild('Character')
  2859. for i = 1, 48 do
  2860. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2861. wait()
  2862. end
  2863.  
  2864. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2865. end
  2866. end))
  2867.  
  2868.  
  2869.  
  2870.  
  2871. coroutine.resume(coroutine.create(function()
  2872. for i = 1, 78 do
  2873. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2874. wait()
  2875. end
  2876. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2877. end))
  2878.  
  2879.  
  2880. coroutine.resume(coroutine.create(function()
  2881. wait(0.1)
  2882. for i = 1,78 do
  2883. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2884. if v:FindFirstChild('Humanoid') then
  2885. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2886. v.Humanoid.PlatformStand = true
  2887. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2888. end
  2889. end
  2890. end
  2891. end))
  2892.  
  2893. GroundPound()
  2894. for i = 1, 5 do
  2895. 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)
  2896. 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)
  2897. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2898. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2899. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2900. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2901. if Debounces.on == false then break end
  2902. wait()
  2903. end
  2904. GroundPound2()
  2905. for i = 1, 5 do
  2906. 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)
  2907. 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)
  2908. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2909. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2910. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2911. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2912. if Debounces.on == false then break end
  2913. wait()
  2914. end
  2915. GroundPound()
  2916. for i = 1, 5 do
  2917. 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)
  2918. 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)
  2919. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2920. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2921. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2922. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2923. if Debounces.on == false then break end
  2924. wait()
  2925. end
  2926. GroundPound2()
  2927. for i = 1, 5 do
  2928. 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)
  2929. 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)
  2930. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2931. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2932. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2933. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2934. if Debounces.on == false then break end
  2935. wait()
  2936. end
  2937. GroundPound()
  2938. for i = 1, 5 do
  2939. 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)
  2940. 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)
  2941. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2942. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2943. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2944. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2945. if Debounces.on == false then break end
  2946. wait()
  2947. end
  2948. GroundPound2()
  2949. for i = 1, 5 do
  2950. 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)
  2951. 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)
  2952. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2953. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2954. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2955. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2956. if Debounces.on == false then break end
  2957. wait()
  2958. end
  2959. GroundPound()
  2960. for i = 1, 5 do
  2961. 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)
  2962. 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)
  2963. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2964. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2965. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2966. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2967. if Debounces.on == false then break end
  2968. wait()
  2969. end
  2970. GroundPound2()
  2971. for i = 1, 5 do
  2972. 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)
  2973. 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)
  2974. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2975. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2976. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2977. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2978. if Debounces.on == false then break end
  2979. wait()
  2980. end
  2981. GroundPound()
  2982. for i = 1, 5 do
  2983. 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)
  2984. 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)
  2985. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2986. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2987. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2988. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2989. if Debounces.on == false then break end
  2990. wait()
  2991. end
  2992. GroundPound2()
  2993. for i = 1, 5 do
  2994. 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)
  2995. 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)
  2996. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2997. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2998. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2999. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  3000. if Debounces.on == false then break end
  3001. wait()
  3002. end
  3003. GroundPound()
  3004. for i = 1, 5 do
  3005. 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)
  3006. 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)
  3007. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  3008. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  3009. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  3010. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3011. if Debounces.on == false then break end
  3012. wait()
  3013. end
  3014. GroundPound2()
  3015. for i = 1, 5 do
  3016. 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)
  3017. 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)
  3018. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  3019. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  3020. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3021. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  3022. if Debounces.on == false then break end
  3023. wait()
  3024. end
  3025. GroundPound()
  3026. for i = 1, 5 do
  3027. 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)
  3028. 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)
  3029. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  3030. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  3031. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  3032. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3033. if Debounces.on == false then break end
  3034. wait()
  3035. end
  3036. GroundPound2()
  3037. for i = 1, 5 do
  3038. 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)
  3039. 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)
  3040. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  3041. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  3042. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3043. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  3044. if Debounces.on == false then break end
  3045. wait()
  3046. end
  3047. GroundPound()
  3048. for i = 1, 5 do
  3049. 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)
  3050. 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)
  3051. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  3052. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  3053. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  3054. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3055. if Debounces.on == false then break end
  3056. wait()
  3057. end
  3058. GroundPound2()
  3059. for i = 1, 5 do
  3060. 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)
  3061. 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)
  3062. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  3063. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  3064. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3065. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  3066. if Debounces.on == false then break end
  3067. wait()
  3068. end
  3069.  
  3070.  
  3071.  
  3072. if Debounces.CanAttack == false then
  3073. Debounces.CanAttack = true
  3074. Debounces.on = false
  3075. Debounces.NoIdl = false
  3076.  
  3077. end
  3078. end
  3079. end
  3080. end)
  3081.  
  3082.  
  3083.  
  3084.  
  3085. local animpose = "Idle"
  3086. local lastanimpose = "Idle"
  3087. local sine = 0
  3088. local change = 1
  3089. local val = 0
  3090. local ffing = false
  3091. ----------------------------------------------------
  3092. x = Instance.new("Sound", char)
  3093. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  3094. x.Looped = true
  3095. x.Volume = 30
  3096. x.Pitch = 1
  3097. local footsteps = false
  3098. -------------------------------
  3099. game:GetService("RunService").RenderStepped:connect(function()
  3100. if char.Humanoid.Jump == true then
  3101. jump = true
  3102. else
  3103. jump = false
  3104. end
  3105. char.Humanoid.FreeFalling:connect(function(f)
  3106. if f then
  3107. ffing = true
  3108. else
  3109. ffing = false
  3110. end
  3111. end)
  3112. sine = sine + change
  3113. if jumpn == true then
  3114. animpose = "Jumping"
  3115. elseif ffing == true then
  3116. animpose = "Freefalling"
  3117. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3118. animpose = "Idle"
  3119. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3120. animpose = "Walking"
  3121. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3122. animpose = "Running"
  3123. end
  3124. if animpose ~= lastanimpose then
  3125. sine = 0
  3126. if Debounces.NoIdl == false then
  3127. if animpose == "Idle" then
  3128. for i = 1, 2 do
  3129. 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)
  3130. 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)
  3131. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3132. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3133. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3134. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3135. end
  3136. elseif animpose == "Walking" then
  3137. for i = 1, 2 do
  3138. 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)
  3139. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  3140. 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)
  3141. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  3142. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3143. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3144. end
  3145. elseif animpose == "Running" then
  3146. for i = 1, 2 do
  3147. 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)
  3148. 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)
  3149. 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)
  3150. 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)
  3151. 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)
  3152. 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)
  3153. end
  3154. wait()
  3155. end
  3156. else
  3157. end
  3158. end
  3159. lastanimpose = animpose
  3160. if Debounces.NoIdl == false then
  3161. if animpose == "Idle" then
  3162. if stanceToggle == "Normal" then
  3163. change = 0.5
  3164. 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)
  3165. 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)
  3166. 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)
  3167. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3168. 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)
  3169. 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)
  3170. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3171. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3172. elseif stanceToggle == "Sitting" then
  3173. 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)
  3174. 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)
  3175. 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)
  3176. 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)
  3177. 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)
  3178. 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)
  3179. end
  3180. elseif animpose == "Walking" then
  3181. if stanceToggle == "Normal" then
  3182. change = 1
  3183. 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)
  3184. 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)
  3185. 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)
  3186. 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)
  3187. 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)
  3188. 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)
  3189. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3190. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3191. end
  3192. elseif animpose == "Running" then
  3193. change = 1
  3194. 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)
  3195. 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)
  3196. 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)
  3197. 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)
  3198. 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)
  3199. 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)
  3200. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3201. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3202. end
  3203. end
  3204. if animpose == "Walking" then
  3205. if footsteps == false then
  3206. x:Play()
  3207. footsteps = true
  3208. end
  3209. x.Pitch = 0.9
  3210. elseif animpose == "Idle" then
  3211. x:Stop()
  3212. footsteps = false
  3213. elseif animpose == "Running" then
  3214. x.Pitch = 1.2
  3215. if footsteps == false then
  3216. x:Play()
  3217. footsteps = true
  3218. end
  3219. end
  3220. end)
  3221. -------Radioactive party boi by goodguyaiden-------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement