Advertisement
ghostteen14

Untitled

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