Advertisement
Spiritualz

Untitled

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