Advertisement
Orangeplayer1431

good enough

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