Advertisement
Orangeplayer1431

pirate titan

May 12th, 2019
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 164.22 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,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153. --Made by OpTic Null--
  154. -- based off of light titan--
  155. local p = game.Players.LocalPlayer
  156. local char = p.Character
  157. local mouse = p:GetMouse()
  158. local larm = char["Left Arm"]
  159. local rarm = char["Right Arm"]
  160. local lleg = char["Left Leg"]
  161. local rleg = char["Right Leg"]
  162. local hed = char.Head
  163. local torso = char.Torso
  164. local hum = char.Humanoid
  165. local cam = game.Workspace.CurrentCamera
  166. local root = char.HumanoidRootPart
  167. local deb = false
  168. local shot = 0
  169. local l = game:GetService("Lighting")
  170. local rs = game:GetService("RunService").RenderStepped
  171. local stanceToggle = "Normal"
  172. math.randomseed(os.time())
  173. hum.WalkSpeed = 50
  174. char.Health:Destroy()
  175. hum.MaxHealth = 9999999999999999999999999999999999999999999999999999999999999
  176. wait(0.1)
  177. hum.Health = 9999999999999999999999999999999999999999999999999999999999999
  178. ----------------------------------------------------
  179. pcall(function()char.Shirt:Destroy()
  180. char.Pants:Destroy()
  181. end)
  182. shirt = Instance.new("Shirt", char)
  183. shirt.Name = "Shirt"
  184. pants = Instance.new("Pants", char)
  185. pants.Name = "Pants"
  186. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=320604115"
  187. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=320604107"
  188. ----------------------------------------------------
  189. Debounces = {
  190. on = false;
  191. ks = false;
  192. CanAttack = true;
  193. CanJoke = true;
  194. NoIdl = false;
  195. Slashing = false;
  196. Slashed = false;
  197. Grabbing = false;
  198. Grabbed = false;
  199. }
  200. local Touche = {char.Name, }
  201. ----------------------------------------------------
  202. function lerp(a, b, t) -- Linear interpolation
  203. return a + (b - a)*t
  204. end
  205.  
  206. function slerp(a, b, t) --Spherical interpolation
  207. dot = a:Dot(b)
  208. if dot > 0.99999 or dot < -0.99999 then
  209. return t <= 0.5 and a or b
  210. else
  211. r = math.acos(dot)
  212. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  213. end
  214. end
  215.  
  216. function matrixInterpolate(a, b, t)
  217. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  218. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  219. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  220. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  221. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  222. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  223. local t = v1:Dot(v2)
  224. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  225. return CFrame.new()
  226. end
  227. return CFrame.new(
  228. v0.x, v0.y, v0.z,
  229. v1.x, v1.y, v1.z,
  230. v2.x, v2.y, v2.z,
  231. v3.x, v3.y, v3.z)
  232. end
  233. ----------------------------------------------------
  234. function genWeld(a,b)
  235. local w = Instance.new("Weld",a)
  236. w.Part0 = a
  237. w.Part1 = b
  238. return w
  239. end
  240. function weld(a, b)
  241. local weld = Instance.new("Weld")
  242. weld.Name = "W"
  243. weld.Part0 = a
  244. weld.Part1 = b
  245. weld.C0 = a.CFrame:inverse() * b.CFrame
  246. weld.Parent = a
  247. return weld;
  248. end
  249. ----------------------------------------------------
  250. function Lerp(c1,c2,al)
  251. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  252. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  253. for i,v in pairs(com1) do
  254. com1[i] = v+(com2[i]-v)*al
  255. end
  256. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  257. end
  258. ----------------------------------------------------
  259. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  260. local wld = Instance.new("Weld", wp1)
  261. wld.Part0 = wp0
  262. wld.Part1 = wp1
  263. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  264. end
  265. ----------------------------------------------------
  266. for i,v in pairs(char:children()) do
  267. if v:IsA("Hat") then
  268. v:Destroy()
  269. end
  270. end
  271. for i,v in pairs(hed:children()) do
  272. if v:IsA("Sound") then
  273. v:Destroy()
  274. end
  275. end
  276. ----------------------------------------------------
  277. function HasntTouched(plrname)
  278. local ret = true
  279. for _, v in pairs(Touche) do
  280. if v == plrname then
  281. ret = false
  282. end
  283. end
  284. return ret
  285. end
  286. ----------------------------------------------------
  287. larm.Size = larm.Size * 2
  288. rarm.Size = rarm.Size * 2
  289. lleg.Size = lleg.Size * 2
  290. rleg.Size = rleg.Size * 2
  291. torso.Size = torso.Size * 2
  292. hed.Size = hed.Size * 2
  293. root.Size = root.Size * 2
  294. ----------------------------------------------------
  295. newWeld(torso, larm, -1.5, 0.5, 0)
  296. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  297. newWeld(torso, rarm, 1.5, 0.5, 0)
  298. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  299. newWeld(torso, hed, 0, 1.5, 0)
  300. newWeld(torso, lleg, -0.5, -1, 0)
  301. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  302. newWeld(torso, rleg, 0.5, -1, 0)
  303. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  304. newWeld(root, torso, 0, -1, 0)
  305. torso.Weld.C1 = CFrame.new(0, -1, 0)
  306. ----------------------------------------------------
  307. game:service'InsertService':LoadAsset(1028859):children()[1].Parent=char
  308. char.PirateHat.Handle.Mesh.Scale = char.PirateHat.Handle.Mesh.Scale * 2.5
  309. char.PirateHat.Handle.Mesh.VertexColor = Vector3.new(1,1,1)
  310. hed.face.Texture = "rbxassetid://127498555"
  311. z=Instance.new('Decal',hed)
  312. z.Face = 'Front'
  313. z.Texture='rbxassetid://50696198'
  314. hed.BrickColor = BrickColor.new("Really black")
  315. lite = Instance.new("PointLight", torso)
  316. lite.Brightness = 14
  317. lite.Range = 10
  318. lite.Color = Color3.new(1, 0, 0)
  319. --[[local hed2 = hed:Clone()
  320. hed2.CanCollide = false
  321. hed2.Parent = char
  322. hed2:ClearAllChildren()
  323. hed2.Transparency = 1
  324. hed2.Name = "DARP"
  325. local w = Instance.new("Weld",hed2)
  326. w.Part0 = hed
  327. w.Part1 = hed2
  328. w.C0 = CFrame.new(0,0,-0.175)
  329. z=Instance.new("SurfaceGui",hed2)
  330. z.Enabled = true
  331. z.Face = "Front"
  332. z.Adornee = hed2
  333. z.CanvasSize = Vector2.new(100,100)
  334. local face = Instance.new("ImageLabel",z)
  335. face.Size = UDim2.new(1,-30,1,0)
  336. face.Position = UDim2.new(0,15,0,0)
  337. face.BackgroundTransparency = 1
  338. face.Image='rbxassetid://46282671']]--
  339. ----------------------------------------------------
  340. ----------------------------------------------------
  341.  
  342. z = Instance.new("Sound", char)
  343. z.SoundId = "rbxassetid://150575966 "--242463565
  344. z.Looped = true
  345. z.Pitch = 1
  346. z.Volume = 1
  347. wait(.01)
  348. z:Play()
  349. ----------------------------------------------------
  350. local m = Instance.new("Model")
  351. m.Name = "Absolution"
  352. p1 = Instance.new("Part", m)
  353. p1.BrickColor = BrickColor.new("Bright Orange")
  354. p1.FormFactor = Enum.FormFactor.Custom
  355. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  356. 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)
  357. p1.CanCollide = false
  358. p1.Locked = true
  359. p1.Elasticity = 0
  360. p1.BottomSurface = Enum.SurfaceType.Smooth
  361. p1.TopSurface = Enum.SurfaceType.Smooth
  362. b1 = Instance.new("SpecialMesh", p1)
  363. b1.MeshType = Enum.MeshType.Wedge
  364. b1.Name = "Mesh"
  365. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  366. p2 = Instance.new("Part", m)
  367. p2.BrickColor = BrickColor.new("Really black")
  368. p2.FormFactor = Enum.FormFactor.Custom
  369. p2.Size = Vector3.new(1, 2.9000001, 1)
  370. 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)
  371. p2.CanCollide = false
  372. p2.Locked = true
  373. p2.Elasticity = 0
  374. p2.BottomSurface = Enum.SurfaceType.Smooth
  375. p2.TopSurface = Enum.SurfaceType.Smooth
  376. b2 = Instance.new("BlockMesh", p2)
  377. b2.Name = "Mesh"
  378. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  379. p3 = Instance.new("Part", m)
  380. p3.BrickColor = BrickColor.new("Bright Orange")
  381. p3.FormFactor = Enum.FormFactor.Custom
  382. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  383. 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)
  384. p3.CanCollide = false
  385. p3.Locked = true
  386. p3.Elasticity = 0
  387. p3.BottomSurface = Enum.SurfaceType.Smooth
  388. p3.TopSurface = Enum.SurfaceType.Smooth
  389. b3 = Instance.new("SpecialMesh", p3)
  390. b3.MeshType = Enum.MeshType.Wedge
  391. b3.Name = "Mesh"
  392. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  393. p4 = Instance.new("Part", m)
  394. p4.BrickColor = BrickColor.new("Bright Orange")
  395. p4.FormFactor = Enum.FormFactor.Custom
  396. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  397. 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)
  398. p4.CanCollide = false
  399. p4.Locked = true
  400. p4.Elasticity = 0
  401. p4.BottomSurface = Enum.SurfaceType.Smooth
  402. p4.TopSurface = Enum.SurfaceType.Smooth
  403. b4 = Instance.new("SpecialMesh", p4)
  404. b4.MeshType = Enum.MeshType.Wedge
  405. b4.Name = "Mesh"
  406. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  407. p5 = Instance.new("Part", m)
  408. p5.BrickColor = BrickColor.new("Bright Orange")
  409. p5.FormFactor = Enum.FormFactor.Custom
  410. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  411. 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)
  412. p5.CanCollide = false
  413. p5.Locked = true
  414. p5.Elasticity = 0
  415. p5.BottomSurface = Enum.SurfaceType.Smooth
  416. p5.TopSurface = Enum.SurfaceType.Smooth
  417. b5 = Instance.new("SpecialMesh", p5)
  418. b5.MeshType = Enum.MeshType.Wedge
  419. b5.Name = "Mesh"
  420. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  421. p6 = Instance.new("Part", m)
  422. p6.Name = "Handle"
  423. p6.BrickColor = BrickColor.new("Really black")
  424. p6.FormFactor = Enum.FormFactor.Custom
  425. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  426. 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)
  427. p6.CanCollide = false
  428. p6.Locked = true
  429. p6.Elasticity = 0
  430. p6.BottomSurface = Enum.SurfaceType.Smooth
  431. p6.TopSurface = Enum.SurfaceType.Smooth
  432. b6 = Instance.new("BlockMesh", p6)
  433. b6.Name = "Mesh"
  434. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  435. p7 = Instance.new("Part", m)
  436. p7.BrickColor = BrickColor.new("Bright Orange")
  437. p7.FormFactor = Enum.FormFactor.Custom
  438. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  439. 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)
  440. p7.CanCollide = false
  441. p7.Locked = true
  442. p7.Elasticity = 0
  443. p7.BottomSurface = Enum.SurfaceType.Smooth
  444. p7.TopSurface = Enum.SurfaceType.Smooth
  445. b7 = Instance.new("SpecialMesh", p7)
  446. b7.MeshType = Enum.MeshType.Wedge
  447. b7.Name = "Mesh"
  448. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  449. p8 = Instance.new("Part", m)
  450. p8.BrickColor = BrickColor.new("Bright Orange")
  451. p8.FormFactor = Enum.FormFactor.Custom
  452. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  453. 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)
  454. p8.CanCollide = false
  455. p8.Locked = true
  456. p8.Elasticity = 0
  457. p8.BottomSurface = Enum.SurfaceType.Smooth
  458. p8.TopSurface = Enum.SurfaceType.Smooth
  459. b8 = Instance.new("SpecialMesh", p8)
  460. b8.MeshType = Enum.MeshType.Wedge
  461. b8.Name = "Mesh"
  462. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  463. p9 = Instance.new("Part", m)
  464. p9.BrickColor = BrickColor.new("Really black")
  465. p9.FormFactor = Enum.FormFactor.Custom
  466. p9.Size = Vector3.new(1, 1.07999957, 1)
  467. 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)
  468. p9.CanCollide = false
  469. p9.Locked = true
  470. p9.Elasticity = 0
  471. p9.BottomSurface = Enum.SurfaceType.Smooth
  472. p9.TopSurface = Enum.SurfaceType.Smooth
  473. b9 = Instance.new("BlockMesh", p9)
  474. b9.Name = "Mesh"
  475. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  476. p10 = Instance.new("Part", m)
  477. p10.BrickColor = BrickColor.new("Really black")
  478. p10.FormFactor = Enum.FormFactor.Custom
  479. p10.Size = Vector3.new(1, 1.41999948, 1)
  480. 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)
  481. p10.CanCollide = false
  482. p10.Locked = true
  483. p10.Elasticity = 0
  484. p10.BottomSurface = Enum.SurfaceType.Smooth
  485. p10.TopSurface = Enum.SurfaceType.Smooth
  486. b10 = Instance.new("BlockMesh", p10)
  487. b10.Name = "Mesh"
  488. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  489. p11 = Instance.new("Part", m)
  490. p11.BrickColor = BrickColor.new("Really black")
  491. p11.FormFactor = Enum.FormFactor.Custom
  492. p11.Size = Vector3.new(1, 1.50999951, 1)
  493. 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)
  494. p11.CanCollide = false
  495. p11.Locked = true
  496. p11.Elasticity = 0
  497. p11.BottomSurface = Enum.SurfaceType.Smooth
  498. p11.TopSurface = Enum.SurfaceType.Smooth
  499. b11 = Instance.new("BlockMesh", p11)
  500. b11.Name = "Mesh"
  501. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  502. p12 = Instance.new("Part", m)
  503. p12.Name = "BladeCenter"
  504. p12.BrickColor = BrickColor.new("Dark stone grey")
  505. p12.Material = Enum.Material.Concrete
  506. p12.FormFactor = Enum.FormFactor.Symmetric
  507. p12.Size = Vector3.new(1, 2, 2)
  508. 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)
  509. p12.CanCollide = false
  510. p12.Locked = true
  511. p12.BottomSurface = Enum.SurfaceType.Smooth
  512. p12.TopSurface = Enum.SurfaceType.Smooth
  513. b12 = Instance.new("SpecialMesh", p12)
  514. b12.MeshType = Enum.MeshType.Brick
  515. b12.Name = "Mesh"
  516. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  517. p13 = Instance.new("Part", m)
  518. p13.BrickColor = BrickColor.new("Really black")
  519. p13.FormFactor = Enum.FormFactor.Custom
  520. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  521. 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)
  522. p13.CanCollide = false
  523. p13.Locked = true
  524. p13.Elasticity = 0
  525. p13.BottomSurface = Enum.SurfaceType.Smooth
  526. p13.TopSurface = Enum.SurfaceType.Smooth
  527. b13 = Instance.new("BlockMesh", p13)
  528. b13.Name = "Mesh"
  529. b13.Scale = Vector3.new(1, 1, 0.400000006)
  530. p14 = Instance.new("Part", m)
  531. p14.BrickColor = BrickColor.new("Really black")
  532. p14.FormFactor = Enum.FormFactor.Custom
  533. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  534. 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)
  535. p14.CanCollide = false
  536. p14.Locked = true
  537. p14.Elasticity = 0
  538. p14.BottomSurface = Enum.SurfaceType.Smooth
  539. p14.TopSurface = Enum.SurfaceType.Smooth
  540. b14 = Instance.new("BlockMesh", p14)
  541. b14.Name = "Mesh"
  542. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  543. p15 = Instance.new("Part", m)
  544. p15.BrickColor = BrickColor.new("Really black")
  545. p15.FormFactor = Enum.FormFactor.Custom
  546. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  547. 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)
  548. p15.CanCollide = false
  549. p15.Locked = true
  550. p15.Elasticity = 0
  551. p15.BottomSurface = Enum.SurfaceType.Smooth
  552. p15.TopSurface = Enum.SurfaceType.Smooth
  553. b15 = Instance.new("BlockMesh", p15)
  554. b15.Name = "Mesh"
  555. b15.Scale = Vector3.new(1, 1, 0.400000006)
  556. p16 = Instance.new("Part", m)
  557. p16.BrickColor = BrickColor.new("Really black")
  558. p16.FormFactor = Enum.FormFactor.Custom
  559. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  560. 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)
  561. p16.CanCollide = false
  562. p16.Locked = true
  563. p16.Elasticity = 0
  564. p16.BottomSurface = Enum.SurfaceType.Smooth
  565. p16.TopSurface = Enum.SurfaceType.Smooth
  566. b16 = Instance.new("BlockMesh", p16)
  567. b16.Name = "Mesh"
  568. b16.Scale = Vector3.new(1, 1, 0.400000006)
  569. p17 = Instance.new("Part", m)
  570. p17.BrickColor = BrickColor.new("Really black")
  571. p17.FormFactor = Enum.FormFactor.Custom
  572. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  573. 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)
  574. p17.CanCollide = false
  575. p17.Locked = true
  576. p17.Elasticity = 0
  577. p17.BottomSurface = Enum.SurfaceType.Smooth
  578. p17.TopSurface = Enum.SurfaceType.Smooth
  579. b17 = Instance.new("BlockMesh", p17)
  580. b17.Name = "Mesh"
  581. b17.Scale = Vector3.new(1, 1, 0.400000006)
  582. p18 = Instance.new("WedgePart", m)
  583. p18.BrickColor = BrickColor.new("Dark stone grey")
  584. p18.Name = "BladePart1"
  585. p18.Material = Enum.Material.Concrete
  586. p18.Name = "Wedge"
  587. p18.FormFactor = Enum.FormFactor.Symmetric
  588. p18.Size = Vector3.new(1, 4, 2)
  589. 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)
  590. p18.CanCollide = false
  591. p18.Locked = true
  592. p18.BottomSurface = Enum.SurfaceType.Smooth
  593. p18.TopSurface = Enum.SurfaceType.Smooth
  594. b18 = Instance.new("SpecialMesh", p18)
  595. b18.MeshType = Enum.MeshType.Wedge
  596. b18.Name = "Mesh"
  597. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  598. p19 = Instance.new("WedgePart", m)
  599. p19.BrickColor = BrickColor.new("Dark stone grey")
  600. p19.Name = "BladePart2"
  601. p19.Material = Enum.Material.Concrete
  602. p19.Name = "Wedge"
  603. p19.FormFactor = Enum.FormFactor.Symmetric
  604. p19.Size = Vector3.new(1, 4, 2)
  605. 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)
  606. p19.CanCollide = false
  607. p19.Locked = true
  608. p19.BottomSurface = Enum.SurfaceType.Smooth
  609. p19.TopSurface = Enum.SurfaceType.Smooth
  610. b19 = Instance.new("SpecialMesh", p19)
  611. b19.MeshType = Enum.MeshType.Wedge
  612. b19.Name = "Mesh"
  613. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  614. p20 = Instance.new("Part", m)
  615. p20.BrickColor = BrickColor.new("Really black")
  616. p20.FormFactor = Enum.FormFactor.Custom
  617. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  618. 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)
  619. p20.CanCollide = false
  620. p20.Locked = true
  621. p20.Elasticity = 0
  622. p20.BottomSurface = Enum.SurfaceType.Smooth
  623. p20.TopSurface = Enum.SurfaceType.Smooth
  624. b20 = Instance.new("BlockMesh", p20)
  625. b20.Name = "Mesh"
  626. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  627. p21 = Instance.new("Part", m)
  628. p21.BrickColor = BrickColor.new("Bright Orange")
  629. p21.FormFactor = Enum.FormFactor.Custom
  630. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  631. 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)
  632. p21.CanCollide = false
  633. p21.Locked = true
  634. p21.Elasticity = 0
  635. p21.BottomSurface = Enum.SurfaceType.Smooth
  636. p21.TopSurface = Enum.SurfaceType.Smooth
  637. b21 = Instance.new("SpecialMesh", p21)
  638. b21.MeshType = Enum.MeshType.Wedge
  639. b21.Name = "Mesh"
  640. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  641. w1 = Instance.new("Weld", p1)
  642. w1.Name = "Part_Weld"
  643. w1.Part0 = p1
  644. 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)
  645. w1.Part1 = p2
  646. 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)
  647. w2 = Instance.new("Weld", p2)
  648. w2.Name = "Part_Weld"
  649. w2.Part0 = p2
  650. 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)
  651. w2.Part1 = p3
  652. 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)
  653. w3 = Instance.new("Weld", p3)
  654. w3.Name = "Part_Weld"
  655. w3.Part0 = p3
  656. 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)
  657. w3.Part1 = p4
  658. 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)
  659. w4 = Instance.new("Weld", p4)
  660. w4.Name = "Part_Weld"
  661. w4.Part0 = p4
  662. 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)
  663. w4.Part1 = p5
  664. 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)
  665. w5 = Instance.new("Weld", p5)
  666. w5.Name = "Part_Weld"
  667. w5.Part0 = p5
  668. 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)
  669. w5.Part1 = p6
  670. 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)
  671. w6 = Instance.new("Weld", p6)
  672. w6.Name = "Part_Weld"
  673. w6.Part0 = p6
  674. 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)
  675. w6.Part1 = p7
  676. 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)
  677. w7 = Instance.new("Weld", p7)
  678. w7.Name = "Part_Weld"
  679. w7.Part0 = p7
  680. 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)
  681. w7.Part1 = p8
  682. 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)
  683. w8 = Instance.new("Weld", p8)
  684. w8.Name = "Part_Weld"
  685. w8.Part0 = p8
  686. 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)
  687. w8.Part1 = p9
  688. 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)
  689. w9 = Instance.new("Weld", p9)
  690. w9.Name = "Part_Weld"
  691. w9.Part0 = p9
  692. 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)
  693. w9.Part1 = p10
  694. 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)
  695. w10 = Instance.new("Weld", p10)
  696. w10.Name = "Part_Weld"
  697. w10.Part0 = p10
  698. 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)
  699. w10.Part1 = p11
  700. 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)
  701. w11 = Instance.new("Weld", p11)
  702. w11.Name = "Part_Weld"
  703. w11.Part0 = p11
  704. 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)
  705. w11.Part1 = p12
  706. 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)
  707. w12 = Instance.new("Weld", p12)
  708. w12.Name = "Part_Weld"
  709. w12.Part0 = p12
  710. 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)
  711. w12.Part1 = p13
  712. 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)
  713. w13 = Instance.new("Weld", p13)
  714. w13.Name = "Part_Weld"
  715. w13.Part0 = p13
  716. 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)
  717. w13.Part1 = p14
  718. 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)
  719. w14 = Instance.new("Weld", p14)
  720. w14.Name = "Part_Weld"
  721. w14.Part0 = p14
  722. 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)
  723. w14.Part1 = p15
  724. 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)
  725. w15 = Instance.new("Weld", p15)
  726. w15.Name = "Part_Weld"
  727. w15.Part0 = p15
  728. 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)
  729. w15.Part1 = p16
  730. 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)
  731. w16 = Instance.new("Weld", p16)
  732. w16.Name = "Part_Weld"
  733. w16.Part0 = p16
  734. 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)
  735. w16.Part1 = p17
  736. 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)
  737. w17 = Instance.new("Weld", p17)
  738. w17.Name = "Wedge_Weld"
  739. w17.Part0 = p17
  740. 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)
  741. w17.Part1 = p18
  742. 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)
  743. w18 = Instance.new("Weld", p18)
  744. w18.Name = "Wedge_Weld"
  745. w18.Part0 = p18
  746. 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)
  747. w18.Part1 = p19
  748. 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)
  749. w19 = Instance.new("Weld", p19)
  750. w19.Name = "Part_Weld"
  751. w19.Part0 = p19
  752. 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)
  753. w19.Part1 = p20
  754. 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)
  755. w20 = Instance.new("Weld", p20)
  756. w20.Name = "Part_Weld"
  757. w20.Part0 = p20
  758. 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)
  759. w20.Part1 = p21
  760. 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)
  761. m.Parent = char
  762. m:MakeJoints()
  763. ----------------------------------------------------
  764. local cor = Instance.new("Part", char.Absolution)
  765. cor.Name = "Thingy"
  766. cor.Locked = true
  767. cor.BottomSurface = 0
  768. cor.CanCollide = false
  769. cor.Size = Vector3.new(1, 13, 1)
  770. cor.Transparency = 1
  771. cor.TopSurface = 0
  772. corw = Instance.new("Weld", cor)
  773. corw.Part0 = rarm
  774. corw.Part1 = cor
  775. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  776. corw.C1 = CFrame.new(0, 0, 0)
  777. weld1 = Instance.new("Weld", char.Absolution)
  778. weld1.Part0 = cor
  779. weld1.Part1 = p6
  780. weld1.C0 = CFrame.new(0, 0, 0)
  781. ----------------------------------------------------
  782. hitb = Instance.new("Part", char.Absolution)
  783. hitb.Name = "Thingy2"
  784. hitb.Locked = true
  785. hitb.BottomSurface = 0
  786. hitb.CanCollide = false
  787. hitb.Size = Vector3.new(0, 8, 6)
  788. hitb.Transparency = 1
  789. hitb.TopSurface = 0
  790. weld2 = Instance.new("Weld", char.Absolution)
  791. weld2.Part0 = hitb
  792. weld2.Part1 = p12
  793. weld2.C0 = CFrame.new(0, .6, 1)
  794. ----------------------------------------------------
  795. local m = Instance.new("Model")
  796. m.Name = "Claw"
  797. p1 = Instance.new("Part", m)
  798. p1.BrickColor = BrickColor.new("Really black")
  799. p1.FormFactor = Enum.FormFactor.Custom
  800. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  801. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  802. p1.CanCollide = false
  803. p1.Locked = true
  804. p1.BottomSurface = Enum.SurfaceType.Smooth
  805. p1.TopSurface = Enum.SurfaceType.Smooth
  806. b1 = Instance.new("BlockMesh", p1)
  807. b1.Name = "Mesh"
  808. p2 = Instance.new("WedgePart", m)
  809. p2.BrickColor = BrickColor.new("Really black")
  810. p2.Name = "Wedge"
  811. p2.FormFactor = Enum.FormFactor.Custom
  812. p2.Size = Vector3.new(3, 1, 0.5)
  813. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  814. p2.CanCollide = false
  815. p2.Locked = true
  816. p2.BottomSurface = Enum.SurfaceType.Smooth
  817. p2.TopSurface = Enum.SurfaceType.Smooth
  818. p3 = Instance.new("Part", m)
  819. p3.BrickColor = BrickColor.new("Really black")
  820. p3.FormFactor = Enum.FormFactor.Custom
  821. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  822. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  823. p3.CanCollide = false
  824. p3.Locked = true
  825. p3.BottomSurface = Enum.SurfaceType.Smooth
  826. p3.TopSurface = Enum.SurfaceType.Smooth
  827. b2 = Instance.new("BlockMesh", p3)
  828. b2.Name = "Mesh"
  829. p4 = Instance.new("WedgePart", m)
  830. p4.BrickColor = BrickColor.new("Really black")
  831. p4.Name = "Wedge"
  832. p4.FormFactor = Enum.FormFactor.Custom
  833. p4.Size = Vector3.new(3, 1, 0.5)
  834. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  835. p4.CanCollide = false
  836. p4.Locked = true
  837. p4.BottomSurface = Enum.SurfaceType.Smooth
  838. p4.TopSurface = Enum.SurfaceType.Smooth
  839. p5 = Instance.new("Part", m)
  840. p5.BrickColor = BrickColor.new("Really black")
  841. p5.FormFactor = Enum.FormFactor.Custom
  842. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  843. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  844. p5.CanCollide = false
  845. p5.Locked = true
  846. p5.BottomSurface = Enum.SurfaceType.Smooth
  847. p5.TopSurface = Enum.SurfaceType.Smooth
  848. b3 = Instance.new("BlockMesh", p5)
  849. b3.Name = "Mesh"
  850. p6 = Instance.new("Part", m)
  851. p6.BrickColor = BrickColor.new("Really black")
  852. p6.FormFactor = Enum.FormFactor.Custom
  853. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  854. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  855. p6.CanCollide = false
  856. p6.Locked = true
  857. p6.BottomSurface = Enum.SurfaceType.Smooth
  858. p6.TopSurface = Enum.SurfaceType.Smooth
  859. b4 = Instance.new("BlockMesh", p6)
  860. b4.Name = "Mesh"
  861. p7 = Instance.new("Part", m)
  862. p7.BrickColor = BrickColor.new("Really black")
  863. p7.FormFactor = Enum.FormFactor.Custom
  864. p7.Size = Vector3.new(3, 1, 1.20000005)
  865. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  866. p7.CanCollide = false
  867. p7.Locked = true
  868. p7.BottomSurface = Enum.SurfaceType.Smooth
  869. p7.TopSurface = Enum.SurfaceType.Smooth
  870. b5 = Instance.new("BlockMesh", p7)
  871. b5.Name = "Mesh"
  872. p8 = Instance.new("Part", m)
  873. p8.BrickColor = BrickColor.new("Bright Orange")
  874. p8.FormFactor = Enum.FormFactor.Symmetric
  875. p8.Size = Vector3.new(1, 1, 1)
  876. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  877. p8.CanCollide = false
  878. p8.Locked = true
  879. b6 = Instance.new("SpecialMesh", p8)
  880. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  881. b6.TextureId = ""
  882. b6.MeshType = Enum.MeshType.FileMesh
  883. b6.Name = "Mesh"
  884. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  885. p9 = Instance.new("Part", m)
  886. p9.BrickColor = BrickColor.new("Really black")
  887. p9.FormFactor = Enum.FormFactor.Custom
  888. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  889. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  890. p9.CanCollide = false
  891. p9.Locked = true
  892. p9.BottomSurface = Enum.SurfaceType.Smooth
  893. p9.TopSurface = Enum.SurfaceType.Smooth
  894. b7 = Instance.new("BlockMesh", p9)
  895. b7.Name = "Mesh"
  896. p10 = Instance.new("Part", m)
  897. p10.BrickColor = BrickColor.new("Bright Orange")
  898. p10.FormFactor = Enum.FormFactor.Symmetric
  899. p10.Size = Vector3.new(1, 1, 1)
  900. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  901. p10.CanCollide = false
  902. p10.Locked = true
  903. b8 = Instance.new("SpecialMesh", p10)
  904. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  905. b8.TextureId = ""
  906. b8.MeshType = Enum.MeshType.FileMesh
  907. b8.Name = "Mesh"
  908. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  909. p11 = Instance.new("Part", m)
  910. p11.BrickColor = BrickColor.new("Really black")
  911. p11.FormFactor = Enum.FormFactor.Custom
  912. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  913. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  914. p11.CanCollide = false
  915. p11.Locked = true
  916. p11.BottomSurface = Enum.SurfaceType.Smooth
  917. p11.TopSurface = Enum.SurfaceType.Smooth
  918. b9 = Instance.new("BlockMesh", p11)
  919. b9.Name = "Mesh"
  920. p12 = Instance.new("Part", m)
  921. p12.BrickColor = BrickColor.new("Really black")
  922. p12.FormFactor = Enum.FormFactor.Custom
  923. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  924. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  925. p12.CanCollide = false
  926. p12.Locked = true
  927. p12.BottomSurface = Enum.SurfaceType.Smooth
  928. p12.TopSurface = Enum.SurfaceType.Smooth
  929. b10 = Instance.new("BlockMesh", p12)
  930. b10.Name = "Mesh"
  931. p13 = Instance.new("Part", m)
  932. p13.BrickColor = BrickColor.new("Really black")
  933. p13.FormFactor = Enum.FormFactor.Custom
  934. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  935. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  936. p13.CanCollide = false
  937. p13.Locked = true
  938. p13.BottomSurface = Enum.SurfaceType.Smooth
  939. p13.TopSurface = Enum.SurfaceType.Smooth
  940. b11 = Instance.new("BlockMesh", p13)
  941. b11.Name = "Mesh"
  942. p14 = Instance.new("Part", m)
  943. p14.BrickColor = BrickColor.new("Bright Orange")
  944. p14.FormFactor = Enum.FormFactor.Symmetric
  945. p14.Size = Vector3.new(1, 1, 1)
  946. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  947. p14.CanCollide = false
  948. p14.Locked = true
  949. b12 = Instance.new("SpecialMesh", p14)
  950. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  951. b12.TextureId = ""
  952. b12.MeshType = Enum.MeshType.FileMesh
  953. b12.Name = "Mesh"
  954. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  955. p15 = Instance.new("Part", m)
  956. p15.BrickColor = BrickColor.new("Medium stone grey")
  957. p15.Transparency = 1
  958. p15.Name = "ArmPart"
  959. p15.FormFactor = Enum.FormFactor.Custom
  960. p15.Size = Vector3.new(2, 1, 1)
  961. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  962. p15.CanCollide = false
  963. p15.Locked = true
  964. p15.BottomSurface = Enum.SurfaceType.Smooth
  965. p15.TopSurface = Enum.SurfaceType.Smooth
  966. b13 = Instance.new("BlockMesh", p15)
  967. b13.Name = "Mesh"
  968. p16 = Instance.new("Part", m)
  969. p16.BrickColor = BrickColor.new("Really black")
  970. p16.FormFactor = Enum.FormFactor.Custom
  971. p16.Size = Vector3.new(3, 1, 2.4000001)
  972. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  973. p16.CanCollide = false
  974. p16.Locked = true
  975. p16.BottomSurface = Enum.SurfaceType.Smooth
  976. p16.TopSurface = Enum.SurfaceType.Smooth
  977. b14 = Instance.new("BlockMesh", p16)
  978. b14.Name = "Mesh"
  979. p17 = Instance.new("Part", m)
  980. p17.BrickColor = BrickColor.new("Really black")
  981. p17.FormFactor = Enum.FormFactor.Custom
  982. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  983. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  984. p17.CanCollide = false
  985. p17.Locked = true
  986. p17.BottomSurface = Enum.SurfaceType.Smooth
  987. p17.TopSurface = Enum.SurfaceType.Smooth
  988. b15 = Instance.new("BlockMesh", p17)
  989. b15.Name = "Mesh"
  990. p18 = Instance.new("Part", m)
  991. p18.BrickColor = BrickColor.new("Bright Orange")
  992. p18.FormFactor = Enum.FormFactor.Symmetric
  993. p18.Size = Vector3.new(1, 1, 1)
  994. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  995. p18.CanCollide = false
  996. p18.Locked = true
  997. b16 = Instance.new("SpecialMesh", p18)
  998. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  999. b16.TextureId = ""
  1000. b16.MeshType = Enum.MeshType.FileMesh
  1001. b16.Name = "Mesh"
  1002. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1003. p19 = Instance.new("Part", m)
  1004. p19.BrickColor = BrickColor.new("Bright Orange")
  1005. p19.FormFactor = Enum.FormFactor.Symmetric
  1006. p19.Size = Vector3.new(1, 1, 1)
  1007. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  1008. p19.CanCollide = false
  1009. p19.Locked = true
  1010. b17 = Instance.new("SpecialMesh", p19)
  1011. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1012. b17.TextureId = ""
  1013. b17.MeshType = Enum.MeshType.FileMesh
  1014. b17.Name = "Mesh"
  1015. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1016. p20 = Instance.new("Part", m)
  1017. p20.BrickColor = BrickColor.new("Really black")
  1018. p20.FormFactor = Enum.FormFactor.Custom
  1019. p20.Size = Vector3.new(3, 1, 2.4000001)
  1020. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  1021. p20.CanCollide = false
  1022. p20.Locked = true
  1023. p20.BottomSurface = Enum.SurfaceType.Smooth
  1024. p20.TopSurface = Enum.SurfaceType.Smooth
  1025. b18 = Instance.new("BlockMesh", p20)
  1026. b18.Name = "Mesh"
  1027. p21 = Instance.new("Part", m)
  1028. p21.BrickColor = BrickColor.new("Really black")
  1029. p21.FormFactor = Enum.FormFactor.Custom
  1030. p21.Size = Vector3.new(3, 1, 1.19999993)
  1031. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  1032. p21.CanCollide = false
  1033. p21.Locked = true
  1034. p21.BottomSurface = Enum.SurfaceType.Smooth
  1035. p21.TopSurface = Enum.SurfaceType.Smooth
  1036. b19 = Instance.new("BlockMesh", p21)
  1037. b19.Name = "Mesh"
  1038. p22 = Instance.new("WedgePart", m)
  1039. p22.BrickColor = BrickColor.new("Really black")
  1040. p22.Name = "Wedge"
  1041. p22.FormFactor = Enum.FormFactor.Custom
  1042. p22.Size = Vector3.new(3, 1, 0.5)
  1043. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  1044. p22.CanCollide = false
  1045. p22.Locked = true
  1046. p22.BottomSurface = Enum.SurfaceType.Smooth
  1047. p22.TopSurface = Enum.SurfaceType.Smooth
  1048. p23 = Instance.new("Part", m)
  1049. p23.BrickColor = BrickColor.new("Really black")
  1050. p23.FormFactor = Enum.FormFactor.Custom
  1051. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  1052. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  1053. p23.CanCollide = false
  1054. p23.Locked = true
  1055. p23.BottomSurface = Enum.SurfaceType.Smooth
  1056. p23.TopSurface = Enum.SurfaceType.Smooth
  1057. b20 = Instance.new("BlockMesh", p23)
  1058. b20.Name = "Mesh"
  1059. p24 = Instance.new("WedgePart", m)
  1060. p24.BrickColor = BrickColor.new("Really black")
  1061. p24.Name = "Wedge"
  1062. p24.FormFactor = Enum.FormFactor.Custom
  1063. p24.Size = Vector3.new(3, 1, 0.5)
  1064. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  1065. p24.CanCollide = false
  1066. p24.Locked = true
  1067. p24.BottomSurface = Enum.SurfaceType.Smooth
  1068. p24.TopSurface = Enum.SurfaceType.Smooth
  1069. p25 = Instance.new("Part", m)
  1070. p25.BrickColor = BrickColor.new("Bright Orange")
  1071. p25.FormFactor = Enum.FormFactor.Symmetric
  1072. p25.Size = Vector3.new(1, 1, 1)
  1073. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  1074. p25.CanCollide = false
  1075. p25.Locked = true
  1076. p25.BottomSurface = Enum.SurfaceType.Smooth
  1077. p25.TopSurface = Enum.SurfaceType.Smooth
  1078. b21 = Instance.new("SpecialMesh", p25)
  1079. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1080. b21.TextureId = ""
  1081. b21.MeshType = Enum.MeshType.FileMesh
  1082. b21.Name = "Mesh"
  1083. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1084. p26 = Instance.new("Part", m)
  1085. p26.BrickColor = BrickColor.new("Really black")
  1086. p26.FormFactor = Enum.FormFactor.Symmetric
  1087. p26.Size = Vector3.new(1, 1, 1)
  1088. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  1089. p26.CanCollide = false
  1090. p26.Locked = true
  1091. p26.BottomSurface = Enum.SurfaceType.Smooth
  1092. p26.TopSurface = Enum.SurfaceType.Smooth
  1093. b22 = Instance.new("SpecialMesh", p26)
  1094. b22.MeshType = Enum.MeshType.Brick
  1095. b22.Name = "Mesh"
  1096. w1 = Instance.new("Weld", p1)
  1097. w1.Name = "Wedge_Weld"
  1098. w1.Part0 = p1
  1099. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  1100. w1.Part1 = p2
  1101. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  1102. w2 = Instance.new("Weld", p2)
  1103. w2.Name = "Part_Weld"
  1104. w2.Part0 = p2
  1105. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  1106. w2.Part1 = p3
  1107. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  1108. w3 = Instance.new("Weld", p3)
  1109. w3.Name = "Wedge_Weld"
  1110. w3.Part0 = p3
  1111. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  1112. w3.Part1 = p4
  1113. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  1114. w4 = Instance.new("Weld", p4)
  1115. w4.Name = "Part_Weld"
  1116. w4.Part0 = p4
  1117. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  1118. w4.Part1 = p5
  1119. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  1120. w5 = Instance.new("Weld", p5)
  1121. w5.Name = "Part_Weld"
  1122. w5.Part0 = p5
  1123. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  1124. w5.Part1 = p6
  1125. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  1126. w6 = Instance.new("Weld", p6)
  1127. w6.Name = "Part_Weld"
  1128. w6.Part0 = p6
  1129. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  1130. w6.Part1 = p7
  1131. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  1132. w7 = Instance.new("Weld", p7)
  1133. w7.Name = "Part_Weld"
  1134. w7.Part0 = p7
  1135. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  1136. w7.Part1 = p8
  1137. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  1138. w8 = Instance.new("Weld", p8)
  1139. w8.Name = "Part_Weld"
  1140. w8.Part0 = p8
  1141. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  1142. w8.Part1 = p9
  1143. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  1144. w9 = Instance.new("Weld", p9)
  1145. w9.Name = "Part_Weld"
  1146. w9.Part0 = p9
  1147. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  1148. w9.Part1 = p10
  1149. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  1150. w10 = Instance.new("Weld", p10)
  1151. w10.Name = "Part_Weld"
  1152. w10.Part0 = p10
  1153. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  1154. w10.Part1 = p11
  1155. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  1156. w11 = Instance.new("Weld", p11)
  1157. w11.Name = "Part_Weld"
  1158. w11.Part0 = p11
  1159. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  1160. w11.Part1 = p12
  1161. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  1162. w12 = Instance.new("Weld", p12)
  1163. w12.Name = "Part_Weld"
  1164. w12.Part0 = p12
  1165. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  1166. w12.Part1 = p13
  1167. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  1168. w13 = Instance.new("Weld", p13)
  1169. w13.Name = "Part_Weld"
  1170. w13.Part0 = p13
  1171. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  1172. w13.Part1 = p14
  1173. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  1174. w14 = Instance.new("Weld", p14)
  1175. w14.Name = "ArmPart_Weld"
  1176. w14.Part0 = p14
  1177. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  1178. w14.Part1 = p15
  1179. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1180. w15 = Instance.new("Weld", p15)
  1181. w15.Name = "Part_Weld"
  1182. w15.Part0 = p15
  1183. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  1184. w15.Part1 = p16
  1185. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1186. w16 = Instance.new("Weld", p16)
  1187. w16.Name = "Part_Weld"
  1188. w16.Part0 = p16
  1189. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  1190. w16.Part1 = p17
  1191. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  1192. w17 = Instance.new("Weld", p17)
  1193. w17.Name = "Part_Weld"
  1194. w17.Part0 = p17
  1195. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  1196. w17.Part1 = p18
  1197. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  1198. w18 = Instance.new("Weld", p18)
  1199. w18.Name = "Part_Weld"
  1200. w18.Part0 = p18
  1201. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  1202. w18.Part1 = p19
  1203. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  1204. w19 = Instance.new("Weld", p19)
  1205. w19.Name = "Part_Weld"
  1206. w19.Part0 = p19
  1207. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  1208. w19.Part1 = p20
  1209. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1210. w20 = Instance.new("Weld", p20)
  1211. w20.Name = "Part_Weld"
  1212. w20.Part0 = p20
  1213. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  1214. w20.Part1 = p21
  1215. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1216. w21 = Instance.new("Weld", p21)
  1217. w21.Name = "Wedge_Weld"
  1218. w21.Part0 = p21
  1219. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  1220. w21.Part1 = p22
  1221. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  1222. w22 = Instance.new("Weld", p22)
  1223. w22.Name = "Part_Weld"
  1224. w22.Part0 = p22
  1225. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  1226. w22.Part1 = p23
  1227. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  1228. w23 = Instance.new("Weld", p23)
  1229. w23.Name = "Wedge_Weld"
  1230. w23.Part0 = p23
  1231. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  1232. w23.Part1 = p24
  1233. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  1234. w24 = Instance.new("Weld", p24)
  1235. w24.Name = "Part_Weld"
  1236. w24.Part0 = p24
  1237. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  1238. w24.Part1 = p25
  1239. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  1240. w25 = Instance.new("Weld", p25)
  1241. w25.Name = "Part_Weld"
  1242. w25.Part0 = p25
  1243. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  1244. w25.Part1 = p26
  1245. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  1246. m.Parent = char
  1247. m:MakeJoints()
  1248. ----------------------------------------------------
  1249. local cor2 = Instance.new("Part", char.Claw)
  1250. cor2.Name = "Thingy"
  1251. cor2.Locked = true
  1252. cor2.BottomSurface = 0
  1253. cor2.CanCollide = false
  1254. cor2.Size = Vector3.new(2, 1, 1)
  1255. cor2.Transparency = 1
  1256. cor2.TopSurface = 0
  1257. corw2 = Instance.new("Weld", cor2)
  1258. corw2.Part0 = larm
  1259. corw2.Part1 = cor2
  1260. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1261. corw2.C1 = CFrame.new(0, 0, 0)
  1262. weld2 = Instance.new("Weld", char.Claw)
  1263. weld2.Part0 = cor2
  1264. weld2.Part1 = char.Claw.ArmPart
  1265. weld2.C0 = CFrame.new(0, 0, 0)
  1266. ----------------------------------------------------
  1267. function weld5(part0, part1, c0, c1)
  1268. weeld=Instance.new("Weld", part0)
  1269. weeld.Part0=part0
  1270. weeld.Part1=part1
  1271. weeld.C0=c0
  1272. weeld.C1=c1
  1273. return weeld
  1274. end
  1275. ----------------------------------------------------
  1276. function newRay(start,face,range,wat)
  1277. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1278. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1279. return rey,hit,pos
  1280. end
  1281. ----------------------------------------------------
  1282. mod5 = Instance.new("Model",char)
  1283.  
  1284. function FindNearestTorso(Position,Distance,SinglePlayer)
  1285. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1286. local List = {}
  1287. for i,v in pairs(workspace:GetChildren())do
  1288. if v:IsA("Model")then
  1289. if v:findFirstChild("Torso")then
  1290. if v ~= char then
  1291. if(v.Torso.Position -Position).magnitude <= Distance then
  1292. table.insert(List,v)
  1293. end
  1294. end
  1295. end
  1296. end
  1297. end
  1298. return List
  1299. end
  1300.  
  1301. function Landing()
  1302. part=Instance.new('Part',mod5)
  1303. part.Anchored=true
  1304. part.CanCollide=false
  1305. part.FormFactor='Custom'
  1306. part.Size=Vector3.new(.2,.2,.2)
  1307. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  1308. part.Transparency=.7
  1309. part.BrickColor=BrickColor.new('Really black')
  1310. mesh=Instance.new('SpecialMesh',part)
  1311. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1312. mesh.Scale=Vector3.new(10,5,10)
  1313.  
  1314. for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  1315. if v:FindFirstChild('Humanoid') then
  1316. v.Humanoid:TakeDamage(math.random(1000000000,1000000000))
  1317. v.Humanoid.PlatformStand = true
  1318. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1319. end
  1320. end
  1321.  
  1322. coroutine.resume(coroutine.create(function()
  1323. for i=0,3.8,0.05 do
  1324. wait()
  1325. part.CFrame=part.CFrame
  1326. part.Transparency=i
  1327. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  1328. end
  1329. part.Parent = nil
  1330. end))
  1331. end
  1332. ----------------------------------------------------
  1333. mod4 = Instance.new("Model",char)
  1334.  
  1335. ptez = {0.7, 0.8, 0.9, 1}
  1336.  
  1337. function FindNearestTorso(Position,Distance,SinglePlayer)
  1338. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1339. local List = {}
  1340. for i,v in pairs(workspace:GetChildren())do
  1341. if v:IsA("Model")then
  1342. if v:findFirstChild("Torso")then
  1343. if v ~= char then
  1344. if(v.Torso.Position -Position).magnitude <= Distance then
  1345. table.insert(List,v)
  1346. end
  1347. end
  1348. end
  1349. end
  1350. end
  1351. return List
  1352. end
  1353.  
  1354. function GroundPound()
  1355. part=Instance.new('Part',mod4)
  1356. part.Anchored=true
  1357. part.CanCollide=false
  1358. part.FormFactor='Custom'
  1359. part.Size=Vector3.new(.2,.2,.2)
  1360. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1361. part.Transparency=.7
  1362. part.BrickColor=BrickColor.new('Really black')
  1363. mesh=Instance.new('SpecialMesh',part)
  1364. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1365. mesh.Scale=Vector3.new(3,3,3)
  1366. part2=Instance.new('Part',mod4)
  1367. part2.Anchored=true
  1368. part2.CanCollide=false
  1369. part2.FormFactor='Custom'
  1370. part2.Size=Vector3.new(.2,.2,.2)
  1371. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  1372. part2.Transparency=.7
  1373. part2.BrickColor=BrickColor.new('Really red')
  1374. mesh2=Instance.new('SpecialMesh',part2)
  1375. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  1376. mesh2.Scale=Vector3.new(3,1.5,3)
  1377. x = Instance.new("Sound",char)
  1378. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1379. x.Pitch = ptez[math.random(1,#ptez)]
  1380. x.Volume = 1
  1381. wait(.1)
  1382. x:Play()
  1383. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  1384. if v:FindFirstChild('Humanoid') then
  1385. v.Humanoid:TakeDamage(math.random(1000000000,1000000000))
  1386. end
  1387. end
  1388. coroutine.resume(coroutine.create(function()
  1389. for i=0,0.62,0.13 do
  1390. wait()
  1391. part.CFrame=part.CFrame
  1392. part.Transparency=i
  1393. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  1394. part2.CFrame=part2.CFrame
  1395. part2.Transparency=i
  1396. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  1397. end
  1398. part.Parent=nil
  1399. part2.Parent=nil
  1400. x:Destroy()
  1401. end))
  1402. end
  1403. ----------------------------------------------------
  1404. mod=Instance.new('Model',char)
  1405.  
  1406. function charge()
  1407. hed.Velocity=hed.CFrame.lookVector*200
  1408. part=Instance.new('Part',mod)
  1409. part.Anchored=true
  1410. part.CanCollide=false
  1411. part.FormFactor='Custom'
  1412. part.Size=Vector3.new(.2,.2,.2)
  1413. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  1414. part.Transparency=.7
  1415. part.BrickColor=BrickColor.new('Bright Orange')
  1416. mesh=Instance.new('SpecialMesh',part)
  1417. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1418. mesh.Scale=Vector3.new(10,5,10)
  1419. part2=part:clone()
  1420. part2.Parent=mod
  1421. part2.BrickColor=BrickColor.new('Bright red')
  1422. mesh2=mesh:clone()
  1423. mesh2.Parent=part2
  1424. mesh2.Scale=Vector3.new(20,10,20)
  1425. part3=part2:clone()
  1426. part3.Parent = mod
  1427. part3.BrickColor=BrickColor.new('Really black')
  1428. mesh3=mesh2:clone()
  1429. mesh2.Parent=part3
  1430. mesh3.Scale=Vector3.new(30,15,30)
  1431. coroutine.resume(coroutine.create(function()
  1432. for i=0,1,0.1 do
  1433. wait()
  1434. part.CFrame=part.CFrame
  1435. part.Transparency=i
  1436. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  1437. part2.CFrame=part2.CFrame
  1438. part2.Transparency=i
  1439. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1440. part3.CFrame=part3.CFrame
  1441. part3.Transparency=i
  1442. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  1443. end
  1444. part.Parent=nil
  1445. part2.Parent=nil
  1446. part3.Parent = nil
  1447. end))
  1448. end
  1449. ----------------------------------------------------
  1450. function FindNearestTorso(Position,Distance,SinglePlayer)
  1451. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1452. local List = {}
  1453. for i,v in pairs(workspace:GetChildren())do
  1454. if v:IsA("Model")then
  1455. if v:findFirstChild("Torso")then
  1456. if v ~= char then
  1457. if(v.Torso.Position -Position).magnitude <= Distance then
  1458. table.insert(List,v)
  1459. end
  1460. end
  1461. end
  1462. end
  1463. end
  1464. return List
  1465. end
  1466.  
  1467. mod3 = Instance.new("Model",rleg)
  1468.  
  1469. function Stomp()
  1470. part=Instance.new('Part',mod3)
  1471. part.Anchored=true
  1472. part.CanCollide=false
  1473. part.FormFactor='Custom'
  1474. part.Size=Vector3.new(.2,.2,.2)
  1475. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1476. part.Transparency=.7
  1477. part.BrickColor=BrickColor.new('Bright green')
  1478. mesh=Instance.new('SpecialMesh',part)
  1479. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1480. mesh.Scale=Vector3.new(25,25,25)
  1481. part2=part:clone()
  1482. part2.Parent=mod3
  1483. part2.BrickColor=BrickColor.new('Bright green')
  1484. mesh2=mesh:clone()
  1485. mesh2.Parent=part2
  1486. mesh2.Scale=Vector3.new(15,15,15)
  1487. part3=part:clone()
  1488. part3.Parent=mod3
  1489. part3.TopSurface=0
  1490. part3.BottomSurface=0
  1491. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1492. mesh3=Instance.new('SpecialMesh',part3)
  1493. mesh3.MeshType = 3
  1494. mesh3.Scale=Vector3.new(12,12,12)
  1495. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  1496. if v:FindFirstChild('Humanoid') then
  1497. v.Humanoid:TakeDamage(math.random(1000000000,1000000000))
  1498. v.Humanoid.PlatformStand = true
  1499. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1500. end
  1501. end
  1502. coroutine.resume(coroutine.create(function()
  1503. for i=0,3.8,0.05 do
  1504. wait()
  1505. part.CFrame=part.CFrame
  1506. part.Transparency=i
  1507. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  1508. part2.CFrame=part2.CFrame
  1509. part2.Transparency=i
  1510. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1511. part3.CFrame=part3.CFrame
  1512. part3.Transparency=i
  1513. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  1514. end
  1515. end))
  1516. end
  1517. ----------------------------------------------------
  1518.  
  1519. local acos = math.acos
  1520. local sqrt = math.sqrt
  1521. local Vec3 = Vector3.new
  1522. local fromAxisAngle = CFrame.fromAxisAngle
  1523.  
  1524. local function toAxisAngle(CFr)
  1525. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1526. local Angle = math.acos((R00+R11+R22-1)/2)
  1527. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1528. A = A == 0 and 0.00001 or A
  1529. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1530. B = B == 0 and 0.00001 or B
  1531. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1532. C = C == 0 and 0.00001 or C
  1533. local x = (R21-R12)/sqrt(A)
  1534. local y = (R02-R20)/sqrt(B)
  1535. local z = (R10-R01)/sqrt(C)
  1536. return Vec3(x,y,z),Angle
  1537. end
  1538.  
  1539. function ApplyTrig(Num,Func)
  1540. local Min,Max = Func(0),Func(1)
  1541. local i = Func(Num)
  1542. return (i-Min)/(Max-Min)
  1543. --[[if Func == "sin" then
  1544. return (math.sin((1-Num)*math.pi)+1)/2
  1545. elseif Func == "cos" then
  1546. return (math.cos((1-Num)*math.pi)+1)/2
  1547. end]]
  1548. end
  1549.  
  1550. function LerpCFrame(CFrame1,CFrame2,Num)
  1551. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1552. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1553. end
  1554.  
  1555. function Crater(Torso,Radius)
  1556. Spawn(function()
  1557. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1558. local Ignore = {}
  1559. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1560. if v.Character ~= nil then
  1561. Ignore[#Ignore+1] = v.Character
  1562. end
  1563. end
  1564. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1565. if Hit == nil then return end
  1566. local Parts = {}
  1567. for i = 1,360,10 do
  1568. local P = Instance.new("Part",Torso.Parent)
  1569. P.Anchored = true
  1570. P.FormFactor = "Custom"
  1571. P.BrickColor = Hit.BrickColor
  1572. P.Material = Hit.Material
  1573. P.TopSurface = "Smooth"
  1574. P.BottomSurface = "Smooth"
  1575. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1576. 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)))
  1577. 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}
  1578. if math.random(0,5) == 0 then -- rubble
  1579. local P = Instance.new("Part",Torso.Parent)
  1580. P.Anchored = true
  1581. P.FormFactor = "Custom"
  1582. P.BrickColor = Hit.BrickColor
  1583. P.Material = Hit.Material
  1584. P.TopSurface = "Smooth"
  1585. P.BottomSurface = "Smooth"
  1586. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1587. 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)))
  1588. 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}
  1589. end
  1590. end
  1591. for i = 0,1,0.05 do
  1592. for i2,v in pairs(Parts) do
  1593. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1594. end
  1595. wait(0.02)
  1596. end
  1597. for i,v in pairs(Parts) do
  1598. if v[1].Size.X > 2.1 then
  1599. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1600. end
  1601. v[1].Anchored = false
  1602. end
  1603. for i = 0,1,0.05 do
  1604. for i2,v in pairs(Parts) do
  1605. v[1].Transparency = i
  1606. if i == 1 then
  1607. v[1]:Destroy()
  1608. elseif i >= 0.25 then
  1609. v[1].CanCollide = false
  1610. end
  1611. end
  1612. wait(0.02)
  1613. end
  1614. Parts = nil
  1615. end)
  1616. end
  1617.  
  1618. ----------------------------------------------------
  1619. mouse.KeyDown:connect(function(key)
  1620. if key == "r" then
  1621. larm.BrickColor = BrickColor.new("Bright red")
  1622. rarm.BrickColor = BrickColor.new("Bright red")
  1623. if Debounces.CanAttack == true then
  1624. Debounces.CanAttack = false
  1625. Debounces.on = true
  1626. Debounces.NoIdl = true
  1627. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1628. hit = ht.Parent
  1629. if ht and hit:IsA("Model") then
  1630. if hit:FindFirstChild("Humanoid") then
  1631. if hit.Name ~= p.Name then
  1632. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1633. Debounces.Slashed = true]]--
  1634. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  1635. wait(1)
  1636. --Debounces.Slashed = false
  1637. --end
  1638. end
  1639. end
  1640. elseif ht and hit:IsA("Hat") then
  1641. if hit.Parent.Name ~= p.Name then
  1642. if hit.Parent:FindFirstChild("Humanoid") then
  1643. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1644. Debounces.Slashed = true]]--
  1645. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  1646. wait(1)
  1647. --Debounces.Slashed = false
  1648. end
  1649. end
  1650. end
  1651. end)
  1652. q = Instance.new("Sound",hed)
  1653. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1654. q.Pitch = 0.85
  1655. q.Looped = false
  1656. q1 = Instance.new("Sound",hed)
  1657. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1658. q1.Pitch = 0.85
  1659. q1.Looped = false
  1660. q:Play()
  1661. q1:Play()
  1662. for i = 1,20 do
  1663. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1664. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1665. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1666. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1667. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1668. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1669. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
  1670. if Debounces.on == false then break end
  1671. wait()
  1672. end
  1673. n = Instance.new("Sound",hed)
  1674. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1675. n.Pitch = 0.94
  1676. n.Looped = false
  1677. n1 = Instance.new("Sound",hed)
  1678. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1679. n1.Pitch = 0.94
  1680. n1.Looped = false
  1681. n:Play()
  1682. n1:Play()
  1683. b = Instance.new("Sound",hed)
  1684. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1685. b.Pitch = 0.94
  1686. b.Looped = false
  1687. b1 = Instance.new("Sound",hed)
  1688. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1689. b1.Pitch = 0.94
  1690. b1.Looped = false
  1691. b:Play()
  1692. b1:Play()
  1693. for i = 1,26 do
  1694. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
  1695. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
  1696. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  1697. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  1698. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  1699. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  1700. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
  1701. if Debounces.on == false then break end
  1702. wait()
  1703. end
  1704. wait(.5)
  1705. to:disconnect()
  1706. q:Destroy()
  1707. q1:Destroy()
  1708. n:Destroy()
  1709. n1:Destroy()
  1710. larm.BrickColor = BrickColor.new("Really black")
  1711. rarm.BrickColor = BrickColor.new("Really black")
  1712. if Debounces.CanAttack == false then
  1713. Debounces.CanAttack = true
  1714. Debounces.on = false
  1715. Debounces.NoIdl = false
  1716. end
  1717. end
  1718. end
  1719. end)
  1720. ----------------------------------------------------
  1721. mouse.KeyDown:connect(function(key)
  1722. if key == "q" then
  1723. larm.BrickColor = BrickColor.new("Bright red")
  1724. rarm.BrickColor = BrickColor.new("Bright red")
  1725. if Debounces.CanAttack == true then
  1726. Debounces.CanAttack = false
  1727. Debounces.on = true
  1728. Debounces.NoIdl = true
  1729. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1730. hit = ht.Parent
  1731. if ht and hit:IsA("Model") then
  1732. if hit:FindFirstChild("Humanoid") then
  1733. if hit.Name ~= p.Name then
  1734. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1735. Debounces.Slashed = true]]--
  1736. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  1737. wait(1)
  1738. --Debounces.Slashed = false
  1739. --end
  1740. end
  1741. end
  1742. elseif ht and hit:IsA("Hat") then
  1743. if hit.Parent.Name ~= p.Name then
  1744. if hit.Parent:FindFirstChild("Humanoid") then
  1745. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1746. Debounces.Slashed = true]]--
  1747. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  1748. wait(1)
  1749. --Debounces.Slashed = false
  1750. end
  1751. end
  1752. end
  1753. end)
  1754. for i = 1, 20 do
  1755. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  1756. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  1757. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  1758. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  1759. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1760. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1761. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1762. if Debounces.on == false then break end
  1763. wait()
  1764. end
  1765. z = Instance.new("Sound",hed)
  1766. z.SoundId = "rbxassetid://160069154"
  1767. z.Looped = false
  1768. z.Pitch = .9
  1769. z1 = Instance.new("Sound",hed)
  1770. z1.SoundId = "rbxassetid://160069154"
  1771. z1.Looped = false
  1772. z1.Pitch = .9
  1773. wait(0.01)
  1774. z:Play()
  1775. z1:Play()
  1776. for i = 1, 12 do
  1777. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  1778. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  1779. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  1780. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  1781. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  1782. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  1783. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1784. if Debounces.on == false then break end
  1785. wait()
  1786. end
  1787. for i = 1, 12 do
  1788. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  1789. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  1790. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  1791. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  1792. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1793. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1794. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1795. if Debounces.on == false then break end
  1796. wait()
  1797. end
  1798. z = Instance.new("Sound",hed)
  1799. z.SoundId = "rbxassetid://168586621"
  1800. z.Looped = false
  1801. z.Pitch = 1
  1802. z1 = Instance.new("Sound",hed)
  1803. z1.SoundId = "rbxassetid://168586621"
  1804. z1.Looped = false
  1805. z1.Pitch = 1
  1806. wait(0.01)
  1807. z:Play()
  1808. z1:Play()
  1809. for i = 1, 12 do
  1810. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  1811. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  1812. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  1813. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  1814. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  1815. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  1816. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  1817. if Debounces.on == false then break end
  1818. wait()
  1819. end
  1820. to:disconnect()
  1821. larm.BrickColor = BrickColor.new("Really black")
  1822. rarm.BrickColor = BrickColor.new("Really black")
  1823. if Debounces.CanAttack == false then
  1824. Debounces.CanAttack = true
  1825. Debounces.on = false
  1826. Debounces.NoIdl = false
  1827. end
  1828. end
  1829. end
  1830. end)
  1831. ----------------------------------------------------
  1832. Sit = false
  1833. mouse.KeyDown:connect(function(key)
  1834. if key == "v" then
  1835. if Sit == false then
  1836. Sit = true
  1837. hum.WalkSpeed = 0.001
  1838. stanceToggle = "Sitting"
  1839. elseif Sit == true then
  1840. Sit = false
  1841. hum.WalkSpeed = 50
  1842. stanceToggle = "Normal"
  1843. end
  1844. end
  1845. end)
  1846. ----------------------------------------------------
  1847. mouse.KeyDown:connect(function(key)
  1848. if key == "t" then
  1849. if Debounces.CanAttack == true then
  1850. Debounces.CanAttack = false
  1851. Debounces.on = true
  1852. Debounces.NoIdl = true
  1853. for i = 1, 20 do
  1854. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1855. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1856. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1857. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1858. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  1859. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  1860. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1861. if Debounces.on == false then break end
  1862. wait()
  1863. end
  1864. Spawn(function()
  1865. local Parts = {}
  1866. for Y = -5,5 do
  1867. local P = Instance.new("Part",char)
  1868. P.Anchored = true
  1869. P.FormFactor = "Custom"
  1870. P.CanCollide = false
  1871. P.Size = Vector3.new(1,2,1)
  1872. P.TopSurface = "SmoothNoOutlines"
  1873. P.BottomSurface = "SmoothNoOutlines"
  1874. P.BrickColor = BrickColor.new("Really black")
  1875. P.Name = tostring(Y)
  1876. local i = (Y+5)/(10)
  1877. i = 1-math.cos(math.pi*i-(math.pi/2))
  1878. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  1879. --[[P.Touched:connect(function(ht)
  1880. local hit = ht.Parent
  1881. if hit:FindFirstChild("Humanoid") then
  1882. hit.Humanoid:TakeDamage(math.random(1000000000,1000000000))
  1883. end
  1884. end)]]--
  1885. s = Instance.new("Sound",P)
  1886. s.SoundId = "rbxassetid://228343271"
  1887. s.Volume = .7
  1888. s.Pitch = 0.9
  1889. s:Play()
  1890. P.Touched:connect(function(ht)
  1891. hit = ht.Parent
  1892. if ht and hit:IsA("Model") then
  1893. if hit:FindFirstChild("Humanoid") then
  1894. if hit.Name ~= p.Name then
  1895. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1896. Debounces.Slashed = true]]--
  1897. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1000000000,1000000000))
  1898. hit:FindFirstChild("Humanoid").PlatformStand = true
  1899. wait(1)
  1900. --Debounces.Slashed = false
  1901. --end
  1902. end
  1903. end
  1904. elseif ht and hit:IsA("Hat") then
  1905. if hit.Parent.Name ~= p.Name then
  1906. if hit.Parent:FindFirstChild("Humanoid") then
  1907. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1908. Debounces.Slashed = true]]--
  1909. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1000000000,1000000000))
  1910. hit:FindFirstChild("Humanoid").PlatformStand = true
  1911. wait(1)
  1912. --Debounces.Slashed = false
  1913. --end
  1914. end
  1915. end
  1916. end
  1917. end)
  1918. Parts[#Parts+1] = P
  1919. end
  1920. local BREAKIT = false
  1921. local CParts = {}
  1922. local Rocks = {}
  1923. local LastPos = nil
  1924. for i = 1,70 do
  1925. for i2,v in pairs(Parts) do
  1926. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  1927. local cf = v.CFrame
  1928. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  1929. v.CFrame = cf
  1930. v.Transparency = v.Transparency+0.02
  1931. if v.Transparency >= 0.975 then BREAKIT = true end
  1932. if v.Name == "0" then
  1933. local Ignore = {}
  1934. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1935. if v.Character ~= nil then
  1936. Ignore[#Ignore+1] = v.Character
  1937. end
  1938. end
  1939. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  1940. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  1941. if Hit ~= nil then
  1942. if #Rocks == 0 then
  1943. for i = 1,5 do
  1944. local P = Instance.new("Part",char)
  1945. Rocks[#Rocks+1] = P
  1946. P.Anchored = true
  1947. P.FormFactor = "Custom"
  1948. P.BrickColor = Hit.BrickColor
  1949. P.Material = Hit.Material
  1950. P.TopSurface = "Smooth"
  1951. P.BottomSurface = "Smooth"
  1952. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  1953. end
  1954. end
  1955. for i,P in pairs(Rocks) do
  1956. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1957. end
  1958. local P = Instance.new("Part",char)
  1959. CParts[#CParts+1] = {P,tick()}
  1960. P.Anchored = true
  1961. P.FormFactor = "Custom"
  1962. P.BrickColor = Hit.BrickColor
  1963. P.Material = Hit.Material
  1964. P.TopSurface = "Smooth"
  1965. P.BottomSurface = "Smooth"
  1966. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  1967. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1968. Pos = Pos.p
  1969. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1970. local P = P:Clone()
  1971. CParts[#CParts+1] = {P,tick()}
  1972. P.Parent = char
  1973. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  1974. Pos = Pos.p
  1975. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  1976. if LastPos ~= nil then
  1977. local P = P:Clone()
  1978. CParts[#CParts+1] = {P,tick()}
  1979. P.Parent = char
  1980. P.BrickColor = BrickColor.new("Really black")
  1981. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1982. Pos = Pos.p
  1983. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1984. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  1985. --P.Velocity = Vector3.new(0,-1000,0)
  1986. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  1987. end
  1988. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1989. end
  1990. end
  1991. end
  1992. if BREAKIT then break end
  1993. wait(0.002)
  1994. end
  1995. for i,v in pairs(Rocks) do
  1996. CParts[#CParts+1] = {v,tick()}
  1997. end
  1998. for i,v in pairs(Parts) do
  1999. v:Destroy()
  2000. end
  2001. Parts = nil
  2002. while true do
  2003. local t = tick()
  2004. local p = nil
  2005. for i,v in pairs(CParts) do
  2006. if t-v[2] > 4 then
  2007. v[1].Transparency = v[1].Transparency+0.05
  2008. if v[1].Transparency >= 1 then
  2009. v[1]:Destroy()
  2010. CParts[i] = nil
  2011. end
  2012. end
  2013. p = v
  2014. end
  2015. if p == nil then break end
  2016. wait(0.002)
  2017. end
  2018. for i,v in pairs(CParts) do
  2019. v:Destroy()
  2020. end
  2021. CParts = {}
  2022. end)
  2023. for i = 1, 20 do
  2024. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  2025. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  2026. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  2027. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  2028. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  2029. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  2030. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  2031. if Debounces.on == false then break end
  2032. wait()
  2033. end
  2034. if Debounces.CanAttack == false then
  2035. Debounces.CanAttack = true
  2036. Debounces.on = false
  2037. Debounces.NoIdl = false
  2038. end
  2039. end
  2040. end
  2041. end)
  2042. ----------------------------------------------------
  2043. mouse.KeyDown:connect(function(key)
  2044. if key == "e" then
  2045. larm.BrickColor = BrickColor.new("Bright red")
  2046. rarm.BrickColor = BrickColor.new("Bright red")
  2047. if Debounces.CanAttack == true then
  2048. Debounces.CanAttack = false
  2049. Debounces.on = true
  2050. Debounces.NoIdl = true
  2051. for i = 1, 18 do
  2052. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  2053. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  2054. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2055. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2056. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2057. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2058. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2059. if Debounces.on == false then break end
  2060. wait()
  2061. end
  2062. local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2063. local rng = Instance.new("Part", char.Absolution.Handle)
  2064. rng.Anchored = true
  2065. rng.BrickColor = BrickColor.new("Really black")
  2066. rng.CanCollide = true
  2067. rng.FormFactor = 3
  2068. rng.Name = "Ring"
  2069. rng.Size = Vector3.new(1, 1, 1)
  2070. rng.CanCollide = false
  2071. rng.Transparency = 0.35
  2072. rng.TopSurface = 0
  2073. rng.BottomSurface = 0
  2074. rng.CFrame = HandCF
  2075. local rngm = Instance.new("SpecialMesh", rng)
  2076. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2077. rngm.Scale = Vector3.new(1, 1, 2)
  2078. x = Instance.new("Sound", hed)
  2079. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2080. x.Looped = false
  2081. x.Pitch = .7
  2082. x.Volume = 1
  2083. x1 = Instance.new("Sound", hed)
  2084. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2085. x1.Looped = false
  2086. x1.Pitch = .7
  2087. x1.Volume = 1
  2088. x:Play()
  2089. x1:Play()
  2090. rngto = rng.Touched:connect(function(ht)
  2091. hit = ht.Parent
  2092. if ht and hit:IsA("Model") then
  2093. if hit:FindFirstChild("Humanoid") then
  2094. if hit.Name ~= p.Name then
  2095. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2096. Debounces.Slashed = true]]--
  2097. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  2098. hit:FindFirstChild("Humanoid").PlatformStand = true
  2099. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2100. --Debounces.Slashed = false
  2101. --end
  2102. end
  2103. end
  2104. elseif ht and hit:IsA("Hat") then
  2105. if hit.Parent.Name ~= p.Name then
  2106. if hit.Parent:FindFirstChild("Humanoid") then
  2107. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2108. Debounces.Slashed = true]]--
  2109. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  2110. hit:FindFirstChild("Humanoid").PlatformStand = true
  2111. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2112. --Debounces.Slashed = false
  2113. end
  2114. end
  2115. end
  2116. end)
  2117. coroutine.wrap(function()
  2118. for i = 1, 60, 2 do
  2119. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2120. rng.Size = rngm.Scale
  2121. rng.CFrame = HandCF
  2122. rng.Transparency = i/60
  2123. wait()
  2124. end
  2125. wait()
  2126. rng:Destroy()
  2127. end)()
  2128. for i = 1, 18 do
  2129. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  2130. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  2131. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2132. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2133. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2134. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2135. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2136. if Debounces.on == false then break end
  2137. wait()
  2138. end
  2139. larm.BrickColor = BrickColor.new("Really black")
  2140. rarm.BrickColor = BrickColor.new("Really black")
  2141. x:Destroy()
  2142. x1:Destroy()
  2143. if Debounces.CanAttack == false then
  2144. Debounces.CanAttack = true
  2145. Debounces.on = false
  2146. Debounces.NoIdl = false
  2147. end
  2148. end
  2149. end
  2150. end)
  2151. ----------------------------------------------------
  2152. mouse.KeyDown:connect(function(key)
  2153. if key == "y" then
  2154. if Debounces.CanAttack == true then
  2155. Debounces.CanAttack = false
  2156. Debounces.on = true
  2157. Debounces.NoIdl = true
  2158. for i = 1, 15 do
  2159. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  2160. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  2161. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2162. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2163. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2164. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2165. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2166. if Debounces.on == false then break end
  2167. wait()
  2168. end
  2169. x = Instance.new("Sound",char)
  2170. x.SoundId = "rbxassetid://228343271"
  2171. x.Pitch = 1
  2172. x.Volume = .8
  2173. wait(.1)
  2174. x:Play()
  2175. Debounces.on = false
  2176. Debounces.Here = false
  2177. shot = shot + 1
  2178. local rng = Instance.new("Part", char)
  2179. rng.Anchored = true
  2180. rng.BrickColor = BrickColor.new("Really black")
  2181. rng.CanCollide = false
  2182. rng.FormFactor = 3
  2183. rng.Name = "Ring"
  2184. rng.Size = Vector3.new(1, 1, 1)
  2185. rng.Transparency = 0.35
  2186. rng.TopSurface = 0
  2187. rng.BottomSurface = 0
  2188. rng2 = rng:clone()
  2189. rng3 = rng2:clone()
  2190. rng4 = rng2:clone()
  2191. local rngm = Instance.new("SpecialMesh", rng)
  2192. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2193. rngm.Scale = Vector3.new(10, 10, 1)
  2194. rngm2 = rngm:clone()
  2195. rngm2.Scale = Vector3.new(5, 5, 1)
  2196. rngm3=rngm2:clone()
  2197. rngm3.Parent = rng3
  2198. rngm3.Scale = Vector3.new(8, 8, 1)
  2199. rngm4 = rngm2:clone()
  2200. rngm4.Parent = rng4
  2201. rngm4.Scale = Vector3.new(6, 6, 1)
  2202. local bem = Instance.new("Part", char)
  2203. bem.Anchored = true
  2204. bem.BrickColor = BrickColor.new("Really black")
  2205. bem.CanCollide = false
  2206. bem.FormFactor = 3
  2207. bem.Name = "Beam" .. shot
  2208. bem.Size = Vector3.new(1, 1, 1)
  2209. bem.Transparency = 0.35
  2210. bem.TopSurface = 0
  2211. bem.BottomSurface = 0
  2212. local bemm = Instance.new("SpecialMesh", bem)
  2213. bemm.MeshType = 4
  2214. bemm.Scale = Vector3.new(1, 4, 4)
  2215. local out = Instance.new("Part", char)
  2216. out.Anchored = true
  2217. out.BrickColor = BrickColor.new("Really black")
  2218. out.CanCollide = false
  2219. out.FormFactor = 3
  2220. out.Name = "Out"
  2221. out.Size = Vector3.new(4, 4, 4)
  2222. out.Transparency = 0.35
  2223. out.TopSurface = 0
  2224. out.BottomSurface = 0
  2225. local outm = Instance.new("SpecialMesh", out)
  2226. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2227. outm.Scale = Vector3.new(4, 4, 4)
  2228. local bnd = Instance.new("Part", char)
  2229. bnd.Anchored = true
  2230. bnd.BrickColor = BrickColor.new("Really black")
  2231. bnd.CanCollide = false
  2232. bnd.FormFactor = 3
  2233. bnd.Name = "Bend"
  2234. bnd.Size = Vector3.new(1, 1, 1)
  2235. bnd.Transparency = 1
  2236. bnd.TopSurface = 0
  2237. bnd.BottomSurface = 0
  2238. local bndm = Instance.new("SpecialMesh", bnd)
  2239. bndm.MeshType = 3
  2240. bndm.Scale = Vector3.new(8, 8, 8)
  2241. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2242. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2243. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2244. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2245. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2246. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2247. Debounces.Shewt = true
  2248. coroutine.wrap(function()
  2249. for i = 1, 20, 0.2 do
  2250. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2251. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2252. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2253. rng.Transparency = i/20
  2254. rng3.Transparency = 1/16
  2255. rng4.Transparency = i/12
  2256. wait()
  2257. end
  2258. wait()
  2259. rng:Destroy()
  2260. end)()
  2261. if Debounces.Shewt == true then
  2262. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2263. hit = ht.Parent
  2264. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2265. if HasntTouched(hit.Name) == true and deb == false then
  2266. deb = true
  2267. coroutine.wrap(function()
  2268. hit:FindFirstChild("Humanoid").PlatformStand = true
  2269. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2270. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1000000000,1000000000))
  2271. end)()
  2272. table.insert(Touche, hit.Name)
  2273. deb = false
  2274. end
  2275. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2276. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2277. deb = true
  2278. coroutine.wrap(function()
  2279. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2280. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2281. wait(1)
  2282. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2283. end)()
  2284. table.insert(Touche, hit.Parent.Name)
  2285. deb = false
  2286. for i, v in pairs(Touche) do
  2287. print(v)
  2288. end
  2289. end
  2290. end
  2291. end)
  2292. end
  2293. for i = 0, 260, 8 do
  2294. bem.Size = Vector3.new(i, 2, 2)
  2295. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2296. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2297. bnd.Size = Vector3.new(1,1,1)
  2298. bndm.Scale = Vector3.new(8,8,8)
  2299. if i % 10 == 0 then
  2300. local newRng = rng2:Clone()
  2301. newRng.Parent = char
  2302. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2303. local newRngm = rngm2:clone()
  2304. newRngm.Parent=newRng
  2305. coroutine.wrap(function()
  2306. for i = 1, 10, 0.2 do
  2307. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2308. newRng.Transparency = i/10
  2309. wait()
  2310. end
  2311. wait()
  2312. newRng:Destroy()
  2313. end)()
  2314. end
  2315. wait()
  2316. end
  2317. wait()
  2318. Debounces.Shewt = false
  2319. bem:Destroy()
  2320. out:Destroy()
  2321. bnd:Destroy()
  2322. Debounces.Ready = false
  2323. for i, v in pairs(Touche) do
  2324. table.remove(Touche, i)
  2325. end
  2326. wait()
  2327. table.insert(Touche, char.Name)
  2328. Debounces.NoIdl = false
  2329. if Debounces.CanAttack == false then
  2330. Debounces.CanAttack = true
  2331. end
  2332. end
  2333. end
  2334. end)
  2335. ----------------------------------------------------
  2336. sidz = {"231917888", "231917845", "231917806"}
  2337. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  2338. mouse.KeyDown:connect(function(key)
  2339. if key == "f" then
  2340. larm.BrickColor = BrickColor.new("Bright red")
  2341. rarm.BrickColor = BrickColor.new("Bright red")
  2342. if Debounces.CanAttack == true then
  2343. Debounces.CanAttack = false
  2344. Debounces.on = true
  2345. Debounces.NoIdl = true
  2346. for i = 1, 10 do
  2347. 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.4)
  2348. 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.4)
  2349. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2350. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2351. 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)
  2352. 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)
  2353. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2354. if Debounces.on == false then break end
  2355. wait()
  2356. end
  2357. z = Instance.new("Sound",char)
  2358. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  2359. z.Pitch = ptz[math.random(1,#ptz)]
  2360. z.Volume = 1
  2361. z1 = Instance.new("Sound",char)
  2362. z1.SoundId = z.SoundId
  2363. z1.Pitch = z.Pitch
  2364. z1.Volume = 1
  2365. wait(1)
  2366. z:Play()
  2367. z1:Play()
  2368. Stomp()
  2369. for i = 1, 20 do
  2370. 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.6)
  2371. 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.6)
  2372. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2373. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  2374. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2375. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2376. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2377. if Debounces.on == false then break end
  2378. wait()
  2379. end
  2380. if Debounces.CanAttack == false then
  2381. Debounces.CanAttack = true
  2382. Debounces.on = false
  2383. Debounces.NoIdl = false
  2384. larm.BrickColor = BrickColor.new("Really black")
  2385. rarm.BrickColor = BrickColor.new("Really black")
  2386. end
  2387. end
  2388. end
  2389. end)
  2390. ----------------------------------------------------
  2391. mouse.KeyDown:connect(function(key)
  2392. if key == "g" then
  2393. larm.BrickColor = BrickColor.new("Bright red")
  2394. rarm.BrickColor = BrickColor.new("Bright red")
  2395. if Debounces.CanAttack == true then
  2396. Debounces.CanAttack = false
  2397. Debounces.on = true
  2398. Debounces.NoIdl = true
  2399. chrg = lleg.Touched:connect(function(ht)
  2400. hit = ht.Parent
  2401. if ht and hit:IsA("Model") then
  2402. if hit:FindFirstChild("Humanoid") then
  2403. if hit.Name ~= p.Name then
  2404. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2405. Debounces.Slashed = true]]--
  2406. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2407. hit:FindFirstChild("Humanoid").PlatformStand = true
  2408. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2409. --Debounces.Slashed = false
  2410. --end
  2411. end
  2412. end
  2413. elseif ht and hit:IsA("Hat") then
  2414. if hit.Parent.Name ~= p.Name then
  2415. if hit.Parent:FindFirstChild("Humanoid") then
  2416. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2417. Debounces.Slashed = true]]--
  2418. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2419. hit:FindFirstChild("Humanoid").PlatformStand = true
  2420. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2421. --Debounces.Slashed = false
  2422. end
  2423. end
  2424. end
  2425. end)
  2426. for i = 1, 14 do
  2427. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  2428. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  2429. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  2430. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  2431. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2432. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2433. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  2434. if Debounces.on == false then break end
  2435. wait()
  2436. end
  2437. charge()
  2438. z = Instance.new("Sound",char)
  2439. z.SoundId = "rbxassetid://200632875"
  2440. z.Volume = 1
  2441. z.Pitch = .8
  2442. z1 = Instance.new("Sound",char)
  2443. z1.SoundId = "rbxassetid://200632875"
  2444. z1.Volume = 1
  2445. z1.Pitch = .9
  2446. z:Play()
  2447. z1:Play()
  2448. wait(1)
  2449. z:Destroy()
  2450. z1:Destroy()
  2451. chrg:disconnect()
  2452. if Debounces.CanAttack == false then
  2453. Debounces.CanAttack = true
  2454. Debounces.on = false
  2455. Debounces.NoIdl = false
  2456. larm.BrickColor = BrickColor.new("Really black")
  2457. rarm.BrickColor = BrickColor.new("Really black")
  2458. end
  2459. end
  2460. end
  2461. end)
  2462. ----------------------------------------------------
  2463. pt = {0.7, 0.8, 0.9}
  2464. mouse.KeyDown:connect(function(key)
  2465. if key == "h" then
  2466. if Debounces.CanJoke == true then
  2467. Debounces.CanJoke = false
  2468. u = Instance.new("Sound")
  2469. u.SoundId = "http://www.roblox.com/asset/?id=333446256"
  2470. u.Parent = char
  2471. u.Looped = false
  2472. u.Pitch = pt[math.random(1,#pt)]
  2473. u.Volume = 1
  2474. u2 = Instance.new("Sound")
  2475. u2.SoundId = "http://www.roblox.com/asset/?id=333446256"
  2476. u2.Parent = char
  2477. u2.Looped = false
  2478. u2.Pitch = u.Pitch
  2479. u2.Volume = 1
  2480. wait(.01)
  2481. u:Play()
  2482. u2:Play()
  2483. wait(6)
  2484. u:Destroy()
  2485. u2:Destroy()
  2486. if Debounces.CanJoke == false then
  2487. Debounces.CanJoke = true
  2488. end
  2489. end
  2490. end
  2491. end)
  2492. ----------------------------------------------------
  2493. mouse.KeyDown:connect(function(key)
  2494. if key == "l" then
  2495. if Debounces.CanJoke == true then
  2496. Debounces.CanJoke = false
  2497. z = Instance.new("Sound",char)
  2498. z.SoundId = "rbxassetid://233774928"
  2499. z.Pitch = .76
  2500. z.Volume = 1
  2501. wait()
  2502. z:Play()
  2503. wait(6)
  2504. z:Destroy()
  2505. if Debounces.CanJoke == false then
  2506. Debounces.CanJoke = true
  2507. end
  2508. end
  2509. end
  2510. end)
  2511. ----------------------------------------------------
  2512. mouse.KeyDown:connect(function(key)
  2513. if key == "j" then
  2514. if Debounces.CanJoke == true then
  2515. Debounces.CanJoke = false
  2516. z = Instance.new("Sound",char)
  2517. z.SoundId = "rbxassetid://135017456"
  2518. z.Pitch = .76
  2519. z.Volume = 1
  2520. wait()
  2521. z:Play()
  2522. wait(6)
  2523. z:Destroy()
  2524. if Debounces.CanJoke == false then
  2525. Debounces.CanJoke = true
  2526. end
  2527. end
  2528. end
  2529. end)
  2530. ----------------------------------------------------
  2531. mouse.KeyDown:connect(function(key)
  2532. if key == "n" then
  2533. if Debounces.CanJoke == true then
  2534. Debounces.CanJoke = false
  2535. z = Instance.new("Sound",char)
  2536. z.SoundId = "rbxassetid://130792236"
  2537. z.Pitch = .76
  2538. z.Volume = 1
  2539. wait()
  2540. z:Play()
  2541. wait(6)
  2542. z:Destroy()
  2543. if Debounces.CanJoke == false then
  2544. Debounces.CanJoke = true
  2545. end
  2546. end
  2547. end
  2548. end)
  2549. ----------------------------------------------------
  2550. mouse.KeyDown:connect(function(key)
  2551. if key == "k" then
  2552. if Debounces.CanJoke == true then
  2553. Debounces.CanJoke = false
  2554. z = Instance.new("Sound",char)
  2555. z.SoundId = "rbxassetid://135014184"
  2556. z.Pitch = .76
  2557. z.Volume = 1
  2558. wait()
  2559. z:Play()
  2560. wait(4)
  2561. z:Destroy()
  2562. if Debounces.CanJoke == false then
  2563. Debounces.CanJoke = true
  2564. end
  2565. end
  2566. end
  2567. end)
  2568. ----------------------------------------------------
  2569. mouse.KeyDown:connect(function(key)
  2570. if key == "x" then
  2571. if Debounces.CanAttack == true then
  2572. Debounces.CanAttack = false
  2573. Debounces.NoIdl = true
  2574. Debounces.on = true
  2575. Debounces.ks = true
  2576. for i = 1, 10 do
  2577. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2578. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
  2579. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2580. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  2581. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  2582. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
  2583. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2584. if Debounces.on == false then break end
  2585. wait()
  2586. end
  2587. z = Instance.new("Sound",hed)
  2588. z.SoundId = "rbxassetid://169445092"
  2589. z.Volume = 1
  2590. wait(0.1)
  2591. z:Play()
  2592. kik = rleg.Touched:connect(function(ht)
  2593. hit = ht.Parent
  2594. if ht and hit:IsA("Model") then
  2595. if hit:FindFirstChild("Humanoid") then
  2596. if hit.Name ~= p.Name then
  2597. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2598. Debounces.Slashed = true]]--
  2599. if Debounces.ks==true then
  2600. z = Instance.new("Sound",hed)
  2601. z.SoundId = "rbxassetid://169380525"
  2602. z.Volume = 1
  2603. z:Play()
  2604. Debounces.ks=false
  2605. end
  2606. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2607. hit:FindFirstChild("Humanoid").PlatformStand = true
  2608. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2609. --Debounces.Slashed = false
  2610. --end
  2611. end
  2612. end
  2613. elseif ht and hit:IsA("Hat") then
  2614. if hit.Parent.Name ~= p.Name then
  2615. if hit.Parent:FindFirstChild("Humanoid") then
  2616. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2617. Debounces.Slashed = true]]--
  2618. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2619. hit:FindFirstChild("Humanoid").PlatformStand = true
  2620. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2621. --Debounces.Slashed = false
  2622. --end
  2623. end
  2624. end
  2625. end
  2626. end)
  2627. for i = 1, 8 do
  2628. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2629. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  2630. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  2631. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  2632. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2633. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
  2634. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2635. if Debounces.on == false then break end
  2636. wait()
  2637. end
  2638. kik:disconnect()
  2639. if Debounces.CanAttack == false then
  2640. Debounces.CanAttack = true
  2641. Debounces.on = false
  2642. Debounces.NoIdl = false
  2643. end
  2644. end
  2645. end
  2646. end)
  2647. ----------------------------------------------------
  2648. mouse.KeyDown:connect(function(key)
  2649. if key == "c" then
  2650. if Debounces.CanAttack == true then
  2651. Debounces.CanAttack = false
  2652. Debounces.NoIdl = true
  2653. Debounces.on = true
  2654. SIDZ = {"231917744", "231917742"}
  2655. PTZ = {0.7, 0.8, 0.9, 1}
  2656. for i = 1, 20 do
  2657. wait()
  2658. for i,v in pairs(char.Absolution:children()) do
  2659. if v:IsA("Part") or v:IsA("WedgePart") then
  2660. v.Transparency = v.Transparency + 0.05
  2661. end
  2662. end
  2663. end
  2664. function FindNearestTorso(Position,Distance,SinglePlayer)
  2665. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2666. local List = {}
  2667. for i,v in pairs(workspace:GetChildren())do
  2668. if v:IsA("Model")then
  2669. if v:findFirstChild("Torso")then
  2670. if v ~= char then
  2671. if(v.Torso.Position -Position).magnitude <= Distance then
  2672. table.insert(List,v)
  2673. end
  2674. end
  2675. end
  2676. end
  2677. end
  2678. return List
  2679. end
  2680. GroundPound()
  2681. for i = 1, 5 do
  2682. 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)
  2683. 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)
  2684. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2685. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2686. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2687. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2688. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2689. if Debounces.on == false then break end
  2690. wait()
  2691. end
  2692. GroundPound()
  2693. for i = 1, 5 do
  2694. 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)
  2695. 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)
  2696. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2697. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2698. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2699. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2700. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2701. if Debounces.on == false then break end
  2702. wait()
  2703. end
  2704. GroundPound()
  2705. for i = 1, 5 do
  2706. 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)
  2707. 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)
  2708. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2709. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2710. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2711. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2712. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2713. if Debounces.on == false then break end
  2714. wait()
  2715. end
  2716. GroundPound()
  2717. for i = 1, 5 do
  2718. 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)
  2719. 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)
  2720. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2721. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2722. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2723. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2724. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2725. if Debounces.on == false then break end
  2726. wait()
  2727. end
  2728. GroundPound()
  2729. for i = 1, 5 do
  2730. 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)
  2731. 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)
  2732. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2733. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2734. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2735. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2736. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2737. if Debounces.on == false then break end
  2738. wait()
  2739. end
  2740. GroundPound()
  2741. for i = 1, 5 do
  2742. 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)
  2743. 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)
  2744. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2745. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2746. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2747. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2748. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2749. if Debounces.on == false then break end
  2750. wait()
  2751. end
  2752. for i = 1, 18 do
  2753. 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)
  2754. 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)
  2755. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2756. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2757. 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)
  2758. 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)
  2759. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2760. if Debounces.on == false then break end
  2761. wait()
  2762. end
  2763. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2764. if v:FindFirstChild('Humanoid') then
  2765. v.Humanoid:TakeDamage(math.random(1000000000,1000000000))
  2766. v.Humanoid.PlatformStand = true
  2767. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2768. end
  2769. end
  2770. x = Instance.new("Sound",char)
  2771. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  2772. x.Pitch = PTZ[math.random(1,#PTZ)]
  2773. x.Volume = 1
  2774. wait(0.1)
  2775. x:Play()
  2776. Crater(hed,20)
  2777. for i = 1, 14 do
  2778. 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)
  2779. 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)
  2780. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2781. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2782. 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)
  2783. 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)
  2784. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2785. if Debounces.on == false then break end
  2786. wait()
  2787. end
  2788. if Debounces.CanAttack == false then
  2789. Debounces.CanAttack = true
  2790. Debounces.on = false
  2791. Debounces.NoIdl = false
  2792. for i = 1, 20 do
  2793. wait()
  2794. for i,v in pairs(char.Absolution:children()) do
  2795. if v:IsA("Part") or v:IsA("WedgePart") then
  2796. v.Transparency = v.Transparency - 0.05
  2797. end
  2798. end
  2799. end
  2800. end
  2801. end
  2802. end
  2803. end)
  2804. ----------------------------------------------------176349813
  2805. mouse.KeyDown:connect(function(key)
  2806. if key == "b" then
  2807. hum.WalkSpeed = 0.01
  2808. if Debounces.CanAttack == true then
  2809. Debounces.CanAttack = false
  2810. Debounces.NoIdl = true
  2811. Debounces.on = true
  2812. for i = 1,20 do
  2813. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  2814. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  2815. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  2816. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  2817. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  2818. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  2819. 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)
  2820. if Debounces.on == false then break end
  2821. wait()
  2822. end
  2823. wait(1)
  2824. v = Instance.new("Sound")
  2825. v.SoundId = "rbxassetid://181384451"
  2826. v.Parent = char
  2827. v.Looped = false
  2828. v.Pitch = 1.04
  2829. v.Volume = 1
  2830. wait(.01)
  2831. v:Play()
  2832.  
  2833. if Daytime == true then
  2834. Daytime = false
  2835. l.TimeOfDay = 24
  2836. else
  2837. Daytime = true
  2838. l.TimeOfDay = 12
  2839. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  2840. end
  2841.  
  2842. local Shockwave = function()
  2843. local rng1 = Instance.new("Part", char)
  2844. rng1.Anchored = true
  2845. rng1.BrickColor = BrickColor.new("Really black")
  2846. rng1.CanCollide = false
  2847. rng1.FormFactor = 3
  2848. rng1.Name = "Ring"
  2849. rng1.Size = Vector3.new(1, 1, 1)
  2850. rng1.Transparency = 0.35
  2851. rng1.TopSurface = 0
  2852. rng1.BottomSurface = 0
  2853. local rngm1 = Instance.new("SpecialMesh", rng)
  2854. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2855. rngm1.Scale = Vector3.new(10, 10, 1)
  2856. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  2857. local Wave = Instance.new("Part", game.Workspace--[[?]])
  2858. Wave.Name = "Shockwave"
  2859. Wave.BrickColor = BrickColor.new("Really black")
  2860. Wave.Size = Vector3.new(1, 1, 1)
  2861. Wave.Shape = "Ball"
  2862. Wave.CanCollide = false
  2863. Wave.Anchored = true
  2864. Wave.TopSurface = 0
  2865. Wave.BottomSurface = 0
  2866. Wave.Touched:connect(function(hit)
  2867. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  2868. local Occlude = true
  2869. local NotOccludes = {
  2870. char.Name;
  2871. "Wings";
  2872. "Scythe";
  2873. "Thingy";
  2874. "Thingy2"; -- put all of the names in a table pls
  2875. }
  2876. for i,v in pairs(NotOccludes) do
  2877. if hit.Parent.Name == v then
  2878. Occlude = false
  2879. end
  2880. end
  2881. --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
  2882. if Occlude then
  2883. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  2884. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  2885. end
  2886. end
  2887. end)
  2888.  
  2889. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  2890.  
  2891. coroutine.wrap(function()
  2892. for i = 1, 20, 0.2 do
  2893. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2894. rng1.Transparency = i/20
  2895. wait()
  2896. end
  2897. wait()
  2898. rng1:Destroy()
  2899. end)()
  2900.  
  2901. Delay(0, function()
  2902.  
  2903. if Daytime == false then
  2904. for i = 1, 50, 1 do
  2905. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2906. Wave.CFrame = char.Torso.CFrame
  2907. local t = i / 50
  2908. Wave.Transparency = t
  2909. wait()
  2910. end
  2911. else
  2912. for i = 1, 50, 1 do
  2913. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2914. Wave.CFrame = char.Torso.CFrame
  2915. local t = i / 50
  2916. Wave.Transparency = t
  2917. wait()
  2918. end
  2919. end
  2920. Wave:Destroy()
  2921. end)
  2922. Delay(0, function()
  2923. while wait() do
  2924. if Wave ~= nil then
  2925. Wave.CFrame = char.Torso.CFrame
  2926. else
  2927. break
  2928. end
  2929. end
  2930. end)
  2931. end
  2932. Shockwave()
  2933. for i = 1, 15 do
  2934. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2935. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2936. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2937. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2938. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2939. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2940. if Debounces.on == false then break end
  2941. wait()
  2942. end
  2943. for i = 1, 15 do
  2944. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2945. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2946. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2947. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2948. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2949. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2950. if Debounces.on == false then break end
  2951. wait()
  2952. end
  2953. for i = 1, 15 do
  2954. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2955. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2956. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2957. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2958. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2959. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2960. if Debounces.on == false then break end
  2961. wait()
  2962. end
  2963. for i = 1, 15 do
  2964. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2965. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2966. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2967. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2968. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2969. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2970. if Debounces.on == false then break end
  2971. wait()
  2972. end
  2973. for i = 1, 15 do
  2974. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2975. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2976. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2977. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2978. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2979. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2980. if Debounces.on == false then break end
  2981. wait()
  2982. end
  2983. for i = 1, 15 do
  2984. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2985. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2986. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2987. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2988. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2989. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2990. if Debounces.on == false then break end
  2991. wait()
  2992. end
  2993. wait(1.4)
  2994. Debounces.NoIdl = false
  2995. hum.WalkSpeed = 50
  2996. Debounces.on = false
  2997. wait()
  2998. if Debounces.CanAttack == false then
  2999. Debounces.CanAttack = true
  3000. v:Destroy()
  3001. end
  3002. end
  3003. end
  3004. end)
  3005. ----------------------------------------------------
  3006. mouse.KeyDown:connect(function(key)
  3007. if key == "m" then
  3008. hum.WalkSpeed = 0
  3009. if Debounces.CanAttack == true then
  3010. Debounces.CanAttack = false
  3011. Debounces.on = true
  3012. Debounces.NoIdl = true
  3013. --[[x = Instance.new("Sound",char)
  3014. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  3015. x.Looped = false
  3016. x.Pitch = 1.1
  3017. x.Volume = 1
  3018. x:Play()
  3019. x2 = Instance.new("Sound",char)
  3020. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  3021. x2.Looped = false
  3022. x2.Pitch = .7
  3023. x2.Volume = 1
  3024. wait(.1)
  3025. x:Play()
  3026. x2:Play()
  3027. for i = 1, 20 do
  3028. 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)
  3029. 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)
  3030. 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)
  3031. 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)
  3032. 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)
  3033. 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)
  3034. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  3035. if Debounces.on == false then break end
  3036. wait()
  3037. x:Destroy()
  3038. x2:Destroy()
  3039. end
  3040. wait(1)]]--
  3041. local rng = Instance.new("Part", char)
  3042. rng.Anchored = true
  3043. rng.BrickColor = BrickColor.new("Really black")
  3044. rng.CanCollide = false
  3045. rng.FormFactor = 3
  3046. rng.Name = "Ring"
  3047. rng.Size = Vector3.new(1, 1, 1)
  3048. rng.Transparency = 0.35
  3049. rng.TopSurface = 0
  3050. rng.BottomSurface = 0
  3051. rng.Position = torso.Position - Vector3.new(0,2,0)
  3052. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  3053. local rngm = Instance.new("SpecialMesh", rng)
  3054. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3055. rngm.Scale = Vector3.new(1, 1, 2)
  3056. x = Instance.new("Sound",char)
  3057. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3058. x.Looped = false
  3059. x.Pitch = .7
  3060. x.Volume = 1
  3061. x:Play()
  3062. coroutine.wrap(function()
  3063. for i = 1, 60, 2 do
  3064. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3065. rng.Transparency = i/60
  3066. wait()
  3067. end
  3068. wait()
  3069. rng:Destroy()
  3070. end)()
  3071. hum.WalkSpeed = 50
  3072. BV = Instance.new("BodyVelocity", torso)
  3073. BV.maxForce = Vector3.new(0,200000,0)
  3074. BV.P = 100000
  3075. BV.velocity = Vector3.new(0,800,0)
  3076. for i = 1, 20 do
  3077. 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)
  3078. 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)
  3079. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  3080. 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)
  3081. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  3082. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  3083. 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)
  3084. if Debounces.on == false then break end
  3085. wait()
  3086. end
  3087. x:Destroy()
  3088. BV:Destroy()
  3089. --[[for i = 1, 30 do
  3090. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  3091. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  3092. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  3093. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  3094. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  3095. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  3096. if Debounces.on == false then break end
  3097. wait()
  3098. end]]--
  3099. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  3100. for i = 1, 30 do
  3101. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  3102. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3103. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  3104. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  3105. 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)
  3106. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  3107. 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)
  3108. if Debounces.on == false then break end
  3109. wait()
  3110. end
  3111. end
  3112. Debounces.on = false
  3113. Debounces.NoIdl = false
  3114. local ry,ht,ps=nil,nil,nil
  3115. while ht==nil do
  3116. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  3117. wait()
  3118. end
  3119. z = Instance.new("Sound",char)
  3120. z.SoundId = "rbxassetid://142070127"
  3121. z.Volume = 1
  3122. wait(.1)
  3123. z:Play()
  3124. Landing()
  3125. hum.WalkSpeed = 50
  3126. if Debounces.CanAttack == false then
  3127. Debounces.CanAttack = true
  3128. end
  3129. end
  3130. end
  3131. end)
  3132. ----------------------------------------------------
  3133. Grab = false
  3134. mouse.KeyDown:connect(function(key)
  3135. if key == "z" then
  3136. larm.BrickColor = BrickColor.new("Bright red")
  3137. rarm.BrickColor = BrickColor.new("Bright red")
  3138. Debounces.on = true
  3139. Debounces.NoIdl = true
  3140. if Grab == false then
  3141. gp = nil
  3142. con1=larm.Touched:connect(function(hit) -- this is grab
  3143. ht = hit.Parent
  3144. hum1=ht:FindFirstChild('Humanoid')
  3145. if hum1 ~= nil then
  3146. hum1.PlatformStand=true
  3147. gp = ht
  3148. Grab = true
  3149. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  3150. asd.Parent = larm
  3151. asd.Name = "asd"
  3152. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  3153. elseif hum1 == nil then
  3154. con1:disconnect()
  3155. wait() return
  3156. end
  3157. end)
  3158. for i = 1, 18 do
  3159. 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)
  3160. 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)
  3161. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3162. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  3163. 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)
  3164. 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)
  3165. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  3166. if Debounces.on == false then break end
  3167. wait()
  3168. end
  3169. con1:disconnect()
  3170. Debounces.on = false
  3171. Debounces.NoIdl = false
  3172. elseif Grab == true then
  3173. Grab = false
  3174. for i = 1, 20 do
  3175. 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)
  3176. 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)
  3177. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3178. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3179. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3180. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3181. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3182. if Debounces.on == false then end
  3183. wait()
  3184. end
  3185. if gp ~= nil then
  3186. for i,v in pairs(larm:GetChildren()) do
  3187. if v.Name == "asd" and v:IsA("Weld") then
  3188. v:Remove()
  3189. end
  3190. end
  3191. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3192. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3193. bv.P = 125000
  3194. bv.velocity = char.Head.CFrame.lookVector * 200
  3195. for i = 1, 12 do
  3196. 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)
  3197. if Debounces.on == false then end
  3198. wait()
  3199. end
  3200. ht=nil
  3201. Spawn(function()
  3202. wait(0.5)
  3203. bv:Destroy()
  3204. end)
  3205. Debounces.on = false
  3206. Debounces.NoIdl = false
  3207. elseif ht == nil then wait()
  3208. Grab = false
  3209. Debounces.on = false
  3210. Debounces.NoIdl = false
  3211. end
  3212. end
  3213. end
  3214. end)
  3215. ----------------------------------------------------
  3216. mouse.KeyDown:connect(function(key)
  3217. if string.byte(key) == 52 then
  3218. char.Humanoid.WalkSpeed = 21
  3219. end
  3220. end)
  3221. mouse.KeyUp:connect(function(key)
  3222. if string.byte(key) == 52 then
  3223. char.Humanoid.WalkSpeed = 50
  3224. end
  3225. end)
  3226. ----------------------------------------------------
  3227. local animpose = "Idle"
  3228. local lastanimpose = "Idle"
  3229. local sine = 0
  3230. local change = 1
  3231. local val = 0
  3232. local ffing = false
  3233. ----------------------------------------------------
  3234. --[[x = Instance.new("Sound", char)
  3235. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  3236. x.Looped = true
  3237. x.Volume = 1
  3238. x.Pitch = 1
  3239. local footsteps = false]]--
  3240. -------------------------------
  3241. game:GetService("RunService").RenderStepped:connect(function()
  3242. --[[if char.Humanoid.Jump == true then
  3243. jump = true
  3244. else
  3245. jump = false
  3246. end]]
  3247. char.Humanoid.FreeFalling:connect(function(f)
  3248. if f then
  3249. ffing = true
  3250. else
  3251. ffing = false
  3252. end
  3253. end)
  3254. sine = sine + change
  3255. if jumpn == true then
  3256. animpose = "Jumping"
  3257. elseif ffing == true then
  3258. animpose = "Freefalling"
  3259. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3260. animpose = "Idle"
  3261. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3262. animpose = "Walking"
  3263. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3264. animpose = "Running"
  3265. end
  3266. if animpose ~= lastanimpose then
  3267. sine = 0
  3268. if Debounces.NoIdl == false then
  3269. if animpose == "Idle" then
  3270. for i = 1, 2 do
  3271. 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)
  3272. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  3273. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3274. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3275. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3276. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3277. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3278. end
  3279. elseif animpose == "Walking" then
  3280. for i = 1, 2 do
  3281. 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)
  3282. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  3283. 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)
  3284. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  3285. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3286. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3287. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3288. end
  3289. elseif animpose == "Running" then
  3290. for i = 1, 2 do
  3291. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  3292. 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)
  3293. 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)
  3294. 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)
  3295. 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)
  3296. 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)
  3297. 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)
  3298. end
  3299. wait()
  3300. end
  3301. else
  3302. end
  3303. end
  3304. lastanimpose = animpose
  3305. if Debounces.NoIdl == false then
  3306. if animpose == "Idle" then
  3307. if stanceToggle == "Normal" then
  3308. change = 0.5
  3309. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  3310. 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)
  3311. 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)
  3312. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3313. 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)
  3314. 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)
  3315. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3316. elseif stanceToggle == "Sitting" then
  3317. 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)
  3318. 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)
  3319. 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)
  3320. 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)
  3321. 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)
  3322. 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)
  3323. 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)
  3324. end
  3325. elseif animpose == "Walking" then
  3326. if stanceToggle == "Normal" then
  3327. change = 1
  3328. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  3329. 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.2)
  3330. 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)
  3331. 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)
  3332. 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), .4)
  3333. 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), .4)
  3334. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3335. end
  3336. elseif animpose == "Running" then
  3337. change = 1
  3338. 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)
  3339. 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)
  3340. 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)
  3341. 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)
  3342. 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)
  3343. 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)
  3344. 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)
  3345. end
  3346. end
  3347. --[[if animpose == "Walking" then
  3348. if footsteps == false then
  3349. x:Play()
  3350. footsteps = true
  3351. end
  3352. x.Pitch = 1.1
  3353. elseif animpose == "Idle" then
  3354. x:Stop()
  3355. footsteps = false
  3356. elseif animpose == "Running" then
  3357. x.Pitch = 1.2
  3358. if footsteps == false then
  3359. x:Play()
  3360. footsteps = true
  3361. end
  3362. end]]--
  3363. end)
  3364. game.Players.LocalPlayer.Humanoid.MaxHealth = 10000000
  3365. wait()
  3366. game.Players.LocalPlayer.Humanoid.Health = 10000000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement