Advertisement
hecknes

Titan

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