Advertisement
c00lkidd

TheDarkRevenant's Scythe [Read Line #1]

May 21st, 2016
797
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 65.18 KB | None | 0 0
  1. --Attacks disable due to annoying little abusers.
  2. local p = game.Players.LocalPlayer
  3. local m = game.Players.LocalPlayer
  4. local char = p.Character
  5. local mouse = p:GetMouse()
  6. local larm = char["Left Arm"]
  7. local rarm = char["Right Arm"]
  8. local lleg = char["Left Leg"]
  9. local rleg = char["Right Leg"]
  10. local hed = char.Head
  11. local torso = char.Torso
  12. local cam = game.Workspace.CurrentCamera
  13. local root = char.HumanoidRootPart
  14. local deb = false
  15. local shot = 0
  16. local l = game.Lighting
  17. local stanceToggle = "Landed"
  18. local animpose = "Idle"
  19. local lastanimpose = "Idle"
  20.  
  21. ROW = function(out, trans, s, wt, t, ang, plus)
  22. for i = 1, 360, 360/t do
  23. local c = Instance.new("Part", game.Workspace)
  24. c.FormFactor = 3
  25. c.TopSurface = 0
  26. c.BottomSurface = 0
  27. c.Size = s
  28. c.Anchored = true
  29. c.CanCollide = wt
  30. c.Material=workspace.Base.Material
  31. c.Transparency = trans
  32. c.BrickColor = workspace.Base.BrickColor
  33. c.CFrame = CFrame.new(torso.CFrame.x,0,torso.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  34. c.Locked=true
  35. game.Debris:AddItem(c,4+math.random(1,10)/10)
  36. end
  37. end
  38.  
  39.  
  40. Part = function(x,y,z,color,tr,cc,an,parent)
  41. local p = Instance.new('Part',parent or Weapon)
  42. p.formFactor = 'Custom'
  43. p.Size = Vector3.new(x,y,z)
  44. p.BrickColor = BrickColor.new(color)
  45. p.CanCollide = cc
  46. p.Transparency = tr
  47. p.Anchored = an
  48. p.TopSurface,p.BottomSurface = 0,0
  49. p.Locked=true
  50. p:BreakJoints()
  51. return p end
  52.  
  53.  
  54. Mesh = function(par,num,x,y,z)
  55. local msh = _
  56. if num == 1 then msh = Instance.new("CylinderMesh",par)
  57. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  58. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  59. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  60. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  61. end msh.Scale = Vector3.new(x,y,z)
  62. return msh end
  63.  
  64. function explosion(col1,col2,cfr,sz,rng,dmg)
  65. local a= Part(1,1,1,col1,.5,false,true,workspace)
  66. local a2= Part(1,1,1,col2,.5,false,true,workspace)
  67. local a3= Part(1,1,1,col2,.5,false,true,workspace)
  68. v1,v2,v3=sz.x,sz.y,sz.z
  69. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  70. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  71. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  72. a.CFrame=cfr
  73. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  74. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  75. for i,v in pairs(workspace:children()) do
  76. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  77. if v:findFirstChild("Head") and v:findFirstChild("Torso") then
  78. if (v:findFirstChild("Torso").Position - a.Position).magnitude < rng and v.Name ~= char.Name then
  79. local hit=v
  80. hit.Humanoid.Health=v.Humanoid.Health-dmg
  81. hit.Humanoid.PlatformStand=true
  82. hit.Torso.Velocity=Vector3.new(math.random(-100,100),100,math.random(-100,-100))
  83. wait(.1)
  84. Spawn(function()wait(2)hit.Humanoid.PlatformStand=false end)
  85. end
  86. end
  87. end
  88. end
  89. Spawn(function()
  90. while wait() do
  91. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  92. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  93. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  94. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  95. a.Transparency=a.Transparency+0.05
  96. a2.Transparency=a2.Transparency+0.05
  97. a3.Transparency=a3.Transparency+0.05
  98. end
  99. end)
  100. end
  101.  
  102. local keyVectors = {
  103. w = Vector3.new(0, 0, 1);
  104. a = Vector3.new(1, 0, 0);
  105. s = Vector3.new(0, 0, -1);
  106. d = Vector3.new(-1, 0, 0);
  107. }
  108. local keysDown = {}
  109. local flySpeed = 30
  110. local canFly = false
  111. --local flyToggled = false
  112. char.Humanoid.WalkSpeed = 5
  113. ----------------------------------------------------
  114. function lerp(a, b, t) -- Linear interpolation
  115. return a + (b - a)*t
  116. end
  117.  
  118. function slerp(a, b, t) --Spherical interpolation
  119. dot = a:Dot(b)
  120. if dot > 0.99999 or dot < -0.99999 then
  121. return t <= 0.5 and a or b
  122. else
  123. r = math.acos(dot)
  124. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  125. end
  126. end
  127.  
  128. function matrixInterpolate(a, b, t)
  129. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  130. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  131. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  132. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  133. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  134. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  135. local t = v1:Dot(v2)
  136. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  137. return CFrame.new()
  138. end
  139. return CFrame.new(
  140. v0.x, v0.y, v0.z,
  141. v1.x, v1.y, v1.z,
  142. v2.x, v2.y, v2.z,
  143. v3.x, v3.y, v3.z)
  144. end
  145. ----------------------------------------------------
  146. function genWeld(a,b)
  147. local w = Instance.new("Weld",a)
  148. w.Part0 = a
  149. w.Part1 = b
  150. return w
  151. end
  152. function weld(a, b)
  153. local weld = Instance.new("Weld")
  154. weld.Name = "W"
  155. weld.Part0 = a
  156. weld.Part1 = b
  157. weld.C0 = a.CFrame:inverse() * b.CFrame
  158. weld.Parent = a
  159. return weld;
  160. end
  161. ----------------------------------------------------
  162. Debounces = {
  163. on = false;
  164. CanAttack = true;
  165. NoIdl = false;
  166. }
  167. ----------------------------------------------------
  168. function Lerp(c1,c2,al)
  169. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  170. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  171. for i,v in pairs(com1) do
  172. com1[i] = v+(com2[i]-v)*al
  173. end
  174. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  175. end
  176. -----------
  177. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  178. wld = Instance.new("Weld", wp1)
  179. wld.Part0 = wp0
  180. wld.Part1 = wp1
  181. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  182. end
  183. -----------
  184. function HasntTouched(plrname)
  185. local ret = true
  186. for _, v in pairs(Touche) do
  187. if v == plrname then
  188. ret = false
  189. end
  190. end
  191. return ret
  192. end
  193. ----------------------------
  194. newWeld(torso, larm, -1.5, 0.5, 0)
  195. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  196. newWeld(torso, rarm, 1.5, 0.5, 0)
  197. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  198. newWeld(torso, hed, 0, 1.5, 0)
  199. newWeld(torso, lleg, -0.5, -1, 0)
  200. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  201. newWeld(torso, rleg, 0.5, -1, 0)
  202. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  203. newWeld(root, torso, 0, -1, 0)
  204. torso.Weld.C1 = CFrame.new(0, -1, 0)
  205. -----------------------------------------------------
  206. hed.face:Destroy()
  207. for i,v in pairs(hed:children()) do
  208. if v:IsA("Sound") then
  209. v:Destroy()
  210. end
  211. end
  212. ----------------------------------------------------
  213. if (script:FindFirstChild("forCustomRun")~=nil) then
  214. local sc = script["forCustomRun"].Value
  215. assert(loadstring(sc))()
  216. return
  217. elseif (script:FindFirstChild("forCustomRunL")~=nil) then
  218. local locsc = workspace:FindFirstChild("_localrun")
  219. local sc = script["forCustomRunL"]
  220. if (locsc~=nil) then
  221. local loc = locsc:clone()
  222. loc["scrun"].Value = sc.Value
  223. loc.Name = script.Name
  224. for i,v in pairs(script:GetChildren()) do
  225. v:clone().Parent = loc
  226. end
  227. loc.Parent = script.Parent
  228. script:remove()
  229. return
  230. else
  231. assert(loadstring(sc.Value))()
  232. return
  233. end
  234. end
  235. local m = Instance.new("Model")
  236. m.Name = "Wings"
  237. p1 = Instance.new("Part", m)
  238. p1.Name = "Part1"
  239. p1.BrickColor = BrickColor.new("Really black")
  240. p1.Material = "Fabric"
  241. p1.CFrame = CFrame.new(2.23064709, 5.42307234, -12.1674881, -0.707106709, 0.707106888, -
  242. 2.23517389e-007, -0.499999762, -0.499999851, -0.707106233, -0.499999374, -0.499999732,
  243. 0.707105637)
  244. p1.CanCollide = false
  245. p1.FormFactor = Enum.FormFactor.Symmetric
  246. p1.Elasticity = 0
  247. p1.Size = Vector3.new(1, 4, 1)
  248. p1.BottomSurface = Enum.SurfaceType.Smooth
  249. p1.TopSurface = Enum.SurfaceType.Smooth
  250. b1 = Instance.new("BlockMesh", p1)
  251. b1.Name = "Mesh"
  252. b1.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  253. p2 = Instance.new("Part", m)
  254. p2.Name = "Part2"
  255. p2.BrickColor = BrickColor.new("Really black")
  256. p2.Material = "Fabric"
  257. p2.CFrame = CFrame.new(3.99841213, 4.17309284, -13.4174824, 0.707106709, 2.23517418e-007, -
  258. 0.707106829, 0.49999994, 0.707106292, 0.499999851, 0.499999553, -0.707105696, 0.499999791)
  259. p2.CanCollide = false
  260. p2.FormFactor = Enum.FormFactor.Symmetric
  261. p2.Elasticity = 0
  262. p2.Size = Vector3.new(1, 1, 1)
  263. p2.BottomSurface = Enum.SurfaceType.Smooth
  264. p2.TopSurface = Enum.SurfaceType.Smooth
  265. b2 = Instance.new("SpecialMesh", p2)
  266. b2.MeshType = Enum.MeshType.Wedge
  267. b2.Name = "Mesh"
  268. b2.Scale = Vector3.new(0.319999993, 0.299999923, 1)
  269. p3 = Instance.new("Part", m)
  270. p3.Name = "Part3"
  271. p3.BrickColor = BrickColor.new("Really black")
  272. p3.Material = "Fabric"
  273. p3.CFrame = CFrame.new(2.20711732, 3.78849339, -12.3740644, 0.959171534, 0.28168276,
  274. 0.0253876615, -0.282448769, 0.958654881, 0.0346818939, -0.0145691708, -0.0404358432,
  275. 0.999074996)
  276. p3.CanCollide = false
  277. p3.FormFactor = Enum.FormFactor.Symmetric
  278. p3.Elasticity = 0
  279. p3.Size = Vector3.new(1, 3, 1)
  280. p3.BottomSurface = Enum.SurfaceType.Smooth
  281. p3.TopSurface = Enum.SurfaceType.Smooth
  282. b3 = Instance.new("BlockMesh", p3)
  283. b3.Name = "Mesh"
  284. b3.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  285. p4 = Instance.new("Part", m)
  286. p4.Name = "Part4"
  287. p4.BrickColor = BrickColor.new("Really red")
  288. p4.Material = "Fabric"
  289. p4.CFrame = CFrame.new(1.26502275, 5.19090509, -11.4009991, 0.988936007, -0.146727905,
  290. 0.0218264833, 0.14821738, 0.983390749, -0.104755871, -0.00609340565, 0.106832691, 0.994257689)
  291. p4.CanCollide = false
  292. p4.FormFactor = Enum.FormFactor.Symmetric
  293. p4.Elasticity = 0
  294. p4.Size = Vector3.new(1, 2, 1)
  295. p4.BottomSurface = Enum.SurfaceType.Smooth
  296. p4.TopSurface = Enum.SurfaceType.Smooth
  297. b4 = Instance.new("BlockMesh", p4)
  298. b4.Name = "Mesh"
  299. b4.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  300. p5 = Instance.new("Part", m)
  301. p5.Name = "Part5"
  302. p5.BrickColor = BrickColor.new("Really black")
  303. p5.Material = "Fabric"
  304. p5.CFrame = CFrame.new(-4.44179106, 5.13394976, -11.382658, 0.9583143, 0.284877658,
  305. 0.0218711179, -0.281183124, 0.953924894, -0.104703665, -0.0506914668, 0.0941898227,
  306. 0.994262278)
  307. p5.CanCollide = false
  308. p5.FormFactor = Enum.FormFactor.Symmetric
  309. p5.Elasticity = 0
  310. p5.Size = Vector3.new(1, 3, 1)
  311. p5.BottomSurface = Enum.SurfaceType.Smooth
  312. p5.TopSurface = Enum.SurfaceType.Smooth
  313. b5 = Instance.new("BlockMesh", p5)
  314. b5.Name = "Mesh"
  315. b5.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  316. p6 = Instance.new("Part", m)
  317. p6.Name = "Part6"
  318. p6.BrickColor = BrickColor.new("Really red")
  319. p6.Material = "Fabric"
  320. p6.CFrame = CFrame.new(-3.25746775, 4.10252142, -11.1188278, 0.990586162, 0.136166841,
  321. 0.0140535301, -0.122137889, 0.925523639, -0.358451784, -0.0618163571, 0.353361398,
  322. 0.933441639)
  323. p6.CanCollide = false
  324. p6.FormFactor = Enum.FormFactor.Symmetric
  325. p6.Elasticity = 0
  326. p6.Size = Vector3.new(1, 3, 1)
  327. p6.BottomSurface = Enum.SurfaceType.Smooth
  328. p6.TopSurface = Enum.SurfaceType.Smooth
  329. b6 = Instance.new("BlockMesh", p6)
  330. b6.Name = "Mesh"
  331. b6.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  332. p7 = Instance.new("Part", m)
  333. p7.Name = "Part7"
  334. p7.BrickColor = BrickColor.new("Really red")
  335. p7.Material = "Fabric"
  336. p7.CFrame = CFrame.new(-5.3205142, 5.61000919, -11.9814529, -0.656058729, -0.754709721, -
  337. 5.77419996e-008, 0.533660352, -0.463903487, -0.707106411, 0.533660412, -0.463903487,
  338. 0.707106233)
  339. p7.CanCollide = false
  340. p7.FormFactor = Enum.FormFactor.Symmetric
  341. p7.Elasticity = 0
  342. p7.Size = Vector3.new(1, 4, 1)
  343. p7.BottomSurface = Enum.SurfaceType.Smooth
  344. p7.TopSurface = Enum.SurfaceType.Smooth
  345. b7 = Instance.new("BlockMesh", p7)
  346. b7.Name = "Mesh"
  347. b7.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  348. p8 = Instance.new("Part", m)
  349. p8.Name = "Part8"
  350. p8.BrickColor = BrickColor.new("Really red")
  351. p8.Material = "Fabric"
  352. p8.CFrame = CFrame.new(-0.130102158, 4.73467064, -10.7141094, 0.874170661, 0.484677076,
  353. 0.0302294046, -0.475244969, 0.841039479, 0.258445919, 0.0998384058, -0.240292028, 0.96555239)
  354. p8.CanCollide = false
  355. p8.FormFactor = Enum.FormFactor.Symmetric
  356. p8.Elasticity = 0
  357. p8.Size = Vector3.new(1, 4, 1)
  358. p8.BottomSurface = Enum.SurfaceType.Smooth
  359. p8.TopSurface = Enum.SurfaceType.Smooth
  360. b8 = Instance.new("BlockMesh", p8)
  361. b8.Name = "Mesh"
  362. b8.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  363. p9 = Instance.new("Part", m)
  364. p9.Name = "Part9"
  365. p9.BrickColor = BrickColor.new("Really black")
  366. p9.Material = "Fabric"
  367. p9.CFrame = CFrame.new(-2.9284029, 4.80385351, -10.6452761, 0.890645742, -0.453692019,
  368. 0.0302294642, 0.431499481, 0.864299536, 0.258445889, -0.143382162, -0.217139587, 0.965552568)
  369. p9.CanCollide = false
  370. p9.FormFactor = Enum.FormFactor.Symmetric
  371. p9.Elasticity = 0
  372. p9.Size = Vector3.new(1, 4, 1)
  373. p9.BottomSurface = Enum.SurfaceType.Smooth
  374. p9.TopSurface = Enum.SurfaceType.Smooth
  375. b9 = Instance.new("BlockMesh", p9)
  376. b9.Name = "Mesh"
  377. b9.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  378. p10 = Instance.new("Part", m)
  379. p10.Name = "Part10"
  380. p10.BrickColor = BrickColor.new("Really black")
  381. p10.Material = "Fabric"
  382. p10.CFrame = CFrame.new(0.461318254, 4.42153645, -10.9603891, 0.993439734, -0.112256877,
  383. 0.0218180809, 0.113935865, 0.987964332, -0.104616776, -0.00981165841, 0.106416553,
  384. 0.994273067)
  385. p10.CanCollide = false
  386. p10.FormFactor = Enum.FormFactor.Symmetric
  387. p10.Elasticity = 0
  388. p10.Size = Vector3.new(1, 2, 1)
  389. p10.BottomSurface = Enum.SurfaceType.Smooth
  390. p10.TopSurface = Enum.SurfaceType.Smooth
  391. b10 = Instance.new("BlockMesh", p10)
  392. b10.Name = "Mesh"
  393. b10.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  394. p11 = Instance.new("Part", m)
  395. p11.Name = "Part11"
  396. p11.BrickColor = BrickColor.new("Really black")
  397. p11.Material = "Fabric"
  398. p11.CFrame = CFrame.new(-5.58509636, 4.39552546, -12.2391958, 0.973001778, -0.230067,
  399. 0.0183526818, 0.229346812, 0.972725153, 0.034717977, -0.0258396715, -0.0295712873,
  400. 0.999228418)
  401. p11.CanCollide = false
  402. p11.FormFactor = Enum.FormFactor.Symmetric
  403. p11.Elasticity = 0
  404. p11.Size = Vector3.new(1, 2, 1)
  405. p11.BottomSurface = Enum.SurfaceType.Smooth
  406. p11.TopSurface = Enum.SurfaceType.Smooth
  407. b11 = Instance.new("BlockMesh", p11)
  408. b11.Name = "Mesh"
  409. b11.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  410. p12 = Instance.new("Part", m)
  411. p12.Name = "Part12"
  412. p12.BrickColor = BrickColor.new("Really black")
  413. p12.Material = "Fabric"
  414. p12.CFrame = CFrame.new(-7.20725632, 4.45023441, -13.1411486, 0.656056762, 3.7997961e-007,
  415. 0.75470835, -0.53365773, 0.707103908, 0.463900089, -0.533659458, -0.707104445, 0.463902116)
  416. p12.CanCollide = false
  417. p12.FormFactor = Enum.FormFactor.Symmetric
  418. p12.Elasticity = 0
  419. p12.Size = Vector3.new(1, 1, 1)
  420. p12.BottomSurface = Enum.SurfaceType.Smooth
  421. p12.TopSurface = Enum.SurfaceType.Smooth
  422. b12 = Instance.new("SpecialMesh", p12)
  423. b12.MeshType = Enum.MeshType.Wedge
  424. b12.Name = "Mesh"
  425. b12.Scale = Vector3.new(0.319999993, 0.299999923, 1)
  426. p13 = Instance.new("Part", m)
  427. p13.Name = "Part13"
  428. p13.BrickColor = BrickColor.new("Really black")
  429. p13.Material = "Fabric"
  430. p13.CFrame = CFrame.new(-1.16246319, 3.02499151, -10.4305, 0.685088575, 0.728258491,
  431. 0.0168257058, -0.696930826, 0.661988258, -0.27575165, -0.211958379, 0.177188307, 0.961075842)
  432. p13.CanCollide = false
  433. p13.FormFactor = Enum.FormFactor.Symmetric
  434. p13.Elasticity = 0
  435. p13.Size = Vector3.new(1, 1, 1)
  436. p13.BottomSurface = Enum.SurfaceType.Smooth
  437. p13.TopSurface = Enum.SurfaceType.Smooth
  438. b13 = Instance.new("BlockMesh", p13)
  439. b13.Name = "Mesh"
  440. b13.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  441. p14 = Instance.new("Part", m)
  442. p14.Name = "Part14"
  443. p14.BrickColor = BrickColor.new("Really black")
  444. p14.Material = "Fabric"
  445. p14.CFrame = CFrame.new(-1.06862891, 2.92015743, -10.4324627, 0.959295571, 0.281205207,
  446. 0.0257938076, -0.282206476, 0.95792222, 0.052197963, -0.0100304484, -0.0573545098,
  447. 0.998297691)
  448. p14.CanCollide = false
  449. p14.FormFactor = Enum.FormFactor.Symmetric
  450. p14.Elasticity = 0
  451. p14.Size = Vector3.new(1, 2, 1)
  452. p14.BottomSurface = Enum.SurfaceType.Smooth
  453. p14.TopSurface = Enum.SurfaceType.Smooth
  454. b14 = Instance.new("BlockMesh", p14)
  455. b14.Name = "Mesh"
  456. b14.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  457. p15 = Instance.new("Part", m)
  458. p15.Name = "Part15"
  459. p15.BrickColor = BrickColor.new("Really black")
  460. p15.Material = "Fabric"
  461. p15.CFrame = CFrame.new(-1.25248194, 3.46670246, -10.3202372, -0.768480301, 0.609402537,
  462. 0.195080221, -0.634339094, -0.765544653, -0.107403584, 0.0838928521, -0.206285655,
  463. 0.974882662)
  464. p15.CanCollide = false
  465. p15.FormFactor = Enum.FormFactor.Symmetric
  466. p15.Elasticity = 0
  467. p15.Size = Vector3.new(1, 1, 1)
  468. p15.BottomSurface = Enum.SurfaceType.Smooth
  469. p15.TopSurface = Enum.SurfaceType.Smooth
  470. b15 = Instance.new("BlockMesh", p15)
  471. b15.Name = "Mesh"
  472. b15.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  473. p16 = Instance.new("Part", m)
  474. p16.Name = "Part16"
  475. p16.BrickColor = BrickColor.new("Really black")
  476. p16.Material = "Fabric"
  477. p16.CFrame = CFrame.new(-1.96196043, 3.04476213, -10.4108219, 0.72825861, -0.685088336,
  478. 0.0168255717, 0.661988497, 0.696930647, -0.275751829, 0.177188098, 0.211958155, 0.961075366)
  479. p16.CanCollide = false
  480. p16.FormFactor = Enum.FormFactor.Symmetric
  481. p16.Elasticity = 0
  482. p16.Size = Vector3.new(1, 1, 1)
  483. p16.BottomSurface = Enum.SurfaceType.Smooth
  484. p16.TopSurface = Enum.SurfaceType.Smooth
  485. b16 = Instance.new("BlockMesh", p16)
  486. b16.Name = "Mesh"
  487. b16.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  488. p17 = Instance.new("Part", m)
  489. p17.Name = "Part17"
  490. p17.BrickColor = BrickColor.new("Really black")
  491. p17.Material = "Fabric"
  492. p17.CFrame = CFrame.new(-1.85207272, 3.48152924, -10.3054819, -0.739407778, -0.655866385, -
  493. 0.152003229, 0.671618342, -0.73426342, -0.0988226384, -0.0467970669, -0.175158352,
  494. 0.983420968)
  495. p17.CanCollide = false
  496. p17.FormFactor = Enum.FormFactor.Symmetric
  497. p17.Elasticity = 0
  498. p17.Size = Vector3.new(1, 1, 1)
  499. p17.BottomSurface = Enum.SurfaceType.Smooth
  500. p17.TopSurface = Enum.SurfaceType.Smooth
  501. b17 = Instance.new("BlockMesh", p17)
  502. b17.Name = "Mesh"
  503. b17.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  504. p18 = Instance.new("Part", m)
  505. p18.Name = "Part18"
  506. p18.BrickColor = BrickColor.new("Really black")
  507. p18.Material = "Fabric"
  508. p18.CFrame = CFrame.new(-2.06802177, 2.94484425, -10.4080706, 0.971376956, -0.236116573,
  509. 0.02579391, 0.234563246, 0.970688105, 0.0521978363, -0.0373639017, -0.0446553342, 0.998296857)
  510. p18.CanCollide = false
  511. p18.FormFactor = Enum.FormFactor.Symmetric
  512. p18.Elasticity = 0
  513. p18.Size = Vector3.new(1, 2, 1)
  514. p18.BottomSurface = Enum.SurfaceType.Smooth
  515. p18.TopSurface = Enum.SurfaceType.Smooth
  516. b18 = Instance.new("BlockMesh", p18)
  517. b18.Name = "Mesh"
  518. b18.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  519. p19 = Instance.new("Part", m)
  520. p19.Name = "Part19"
  521. p19.BrickColor = BrickColor.new("Really black")
  522. p19.Material = "Fabric"
  523. p19.CFrame = CFrame.new(3.49998665, 3.79997182, -12.6999207, 0.965920806, -0.258817494, -
  524. 2.4959445e-007, 0.249997482, 0.933003485, 0.258815616, -0.0669874251, -0.249999031,
  525. 0.965919077)
  526. p19.CanCollide = false
  527. p19.FormFactor = Enum.FormFactor.Symmetric
  528. p19.Elasticity = 0
  529. p19.Size = Vector3.new(1, 2, 1)
  530. p19.BottomSurface = Enum.SurfaceType.Smooth
  531. p19.TopSurface = Enum.SurfaceType.Smooth
  532. b19 = Instance.new("BlockMesh", p19)
  533. b19.Name = "Mesh"
  534. b19.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  535. p20 = Instance.new("Part", m)
  536. p20.Name = "Part20"
  537. p20.BrickColor = BrickColor.new("Really black")
  538. p20.Material = "Fabric"
  539. p20.CFrame = CFrame.new(-6.79995918, 3.78997159, -12.7999163, 0.965920687, 0.258817792, -
  540. 3.04258691e-007, -0.256297678, 0.95651561, -0.139172524, -0.036020536, 0.134429038,
  541. 0.990261436)
  542. p20.CanCollide = false
  543. p20.FormFactor = Enum.FormFactor.Symmetric
  544. p20.Elasticity = 0
  545. p20.Size = Vector3.new(1, 3, 1)
  546. p20.BottomSurface = Enum.SurfaceType.Smooth
  547. p20.TopSurface = Enum.SurfaceType.Smooth
  548. b20 = Instance.new("BlockMesh", p20)
  549. b20.Name = "Mesh"
  550. b20.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  551. w1 = Instance.new("Weld", p1)
  552. w1.Part0 = p1
  553. w1.C0 = CFrame.new(-1.79490757, -4.94951439, 12.4384165, -0.707106769, -0.499999911, -
  554. 0.49999994, 0.707106709, -0.49999997, -0.49999994, 0, -0.707106769, 0.707106709)
  555. w1.Part1 = p2
  556. w1.C1 = CFrame.new(1.79489565, -12.4384251, 7.44950008, 0.707106769, 0.499999911, 0.49999994,
  557. 2.10734239e-008, 0.707106769, -0.707106709, -0.707106948, 0.49999994, 0.5)
  558. w2 = Instance.new("Weld", p2)
  559. w2.Part0 = p2
  560. w2.C0 = CFrame.new(1.79489565, -12.4384251, 7.44950008, 0.707106769, 0.499999911, 0.49999994,
  561. 2.10734239e-008, 0.707106769, -0.707106709, -0.707106948, 0.49999994, 0.5)
  562. w2.Part1 = p3
  563. w2.C1 = CFrame.new(-1.22722292, -4.75393152, 12.1752129, 0.959171653, -0.282448888, -
  564. 0.0145689286, 0.28168264, 0.958655119, -0.0404363424, 0.0253877491, 0.034681499, 0.99907577)
  565. w3 = Instance.new("Weld", p3)
  566. w3.Part0 = p3
  567. w3.C0 = CFrame.new(-1.22722292, -4.75393152, 12.1752129, 0.959171653, -0.282448888, -
  568. 0.0145689286, 0.28168264, 0.958655119, -0.0404363424, 0.0253877491, 0.034681499, 0.99907577)
  569. w3.Part1 = p4
  570. w3.C1 = CFrame.new(-2.0898788, -3.70108366, 11.8517132, 0.988936007, 0.148217395, -
  571. 0.00609338284, -0.146728054, 0.983390927, 0.10683234, 0.0218265653, -0.104756176, 0.994258285)
  572. w4 = Instance.new("Weld", p4)
  573. w4.Part0 = p4
  574. w4.C0 = CFrame.new(-2.0898788, -3.70108366, 11.8517132, 0.988936007, 0.148217395, -
  575. 0.00609338284, -0.146728054, 0.983390927, 0.10683234, 0.0218265653, -0.104756176, 0.994258285)
  576. w4.Part1 = p5
  577. w4.C1 = CFrame.new(5.12321281, -2.5599122, 11.9520521, 0.958314359, -0.281183183, -
  578. 0.0506912991, 0.284877598, 0.953925133, 0.0941895097, 0.0218711942, -0.104703978, 0.994262934)
  579. w5 = Instance.new("Weld", p5)
  580. w5.Part0 = p5
  581. w5.C0 = CFrame.new(5.12321281, -2.5599122, 11.9520521, 0.958314359, -0.281183183, -
  582. 0.0506912991, 0.284877598, 0.953925133, 0.0941895097, 0.0218711942, -0.104703978, 0.994262934)
  583. w5.Part1 = p6
  584. w5.C1 = CFrame.new(3.04055262, 0.575539827, 11.8951263, 0.990586221, -0.122137874, -
  585. 0.0618162453, 0.136166826, 0.925523877, 0.353361279, 0.014053612, -0.358452141, 0.933442295)
  586. w6 = Instance.new("Weld", p6)
  587. w6.Part0 = p6
  588. w6.C0 = CFrame.new(3.04055262, 0.575539827, 11.8951263, 0.990586221, -0.122137874, -
  589. 0.0618162453, 0.136166826, 0.925523877, 0.353361279, 0.014053612, -0.358452141, 0.933442295)
  590. w6.Part1 = p7
  591. w6.C1 = CFrame.new(-0.090382576, -6.97118187, 12.4390469, -0.656058788, 0.533660412,
  592. 0.533660412, -0.75470984, -0.463903606, -0.463903606, 0, -0.707106769, 0.707106709)
  593. w7 = Instance.new("Weld", p7)
  594. w7.Part0 = p7
  595. w7.C0 = CFrame.new(-0.090382576, -6.97118187, 12.4390469, -0.656058788, 0.533660412,
  596. 0.533660412, -0.75470984, -0.463903606, -0.463903606, 0, -0.707106769, 0.707106709)
  597. w7.Part1 = p8
  598. w7.C1 = CFrame.new(3.43354273, -6.49350643, 9.12531471, 0.874170601, -0.475245059,
  599. 0.0998385474, 0.484676957, 0.841039658, -0.240292117, 0.0302294642, 0.258445889, 0.965552568)
  600. w8 = Instance.new("Weld", p8)
  601. w8.Part0 = p8
  602. w8.C0 = CFrame.new(3.43354273, -6.49350643, 9.12531471, 0.874170601, -0.475245059,
  603. 0.0998385474, 0.484676957, 0.841039658, -0.240292117, 0.0302294642, 0.258445889, 0.965552568)
  604. w8.Part1 = p9
  605. w8.C1 = CFrame.new(-0.991033435, -7.7920723, 9.12556171, 0.890645742, 0.431499481, -
  606. 0.143382162, -0.453692019, 0.864299536, -0.217139587, 0.0302294642, 0.258445889, 0.965552568)
  607. w9 = Instance.new("Weld", p9)
  608. w9.Part0 = p9
  609. w9.C0 = CFrame.new(-0.991033435, -7.7920723, 9.12556171, 0.890645742, 0.431499481, -
  610. 0.143382162, -0.453692019, 0.864299536, -0.217139587, 0.0302294642, 0.258445889, 0.965552568)
  611. w9.Part1 = p10
  612. w9.C1 = CFrame.new(-1.06960225, -3.15016913, 11.3501244, 0.993439615, 0.113935851, -
  613. 0.00981158204, -0.112256907, 0.987964511, 0.106416464, 0.0218181461, -0.104616918,
  614. 0.994273245)
  615. w10 = Instance.new("Weld", p10)
  616. w10.Part0 = p10
  617. w10.C0 = CFrame.new(-1.06960225, -3.15016913, 11.3501244, 0.993439615, 0.113935851, -
  618. 0.00981158204, -0.112256907, 0.987964511, 0.106416464, 0.0218181461, -0.104616918,
  619. 0.994273245)
  620. w10.Part1 = p11
  621. w10.C1 = CFrame.new(4.10995293, -5.92251635, 12.1796551, 0.973001719, 0.229346842, -
  622. 0.0258396119, -0.23006703, 0.972725391, -0.0295714047, 0.0183527395, 0.034717869, 0.999228597)
  623. w11 = Instance.new("Weld", p11)
  624. w11.Part0 = p11
  625. w11.C0 = CFrame.new(4.10995293, -5.92251635, 12.1796551, 0.973001719, 0.229346842, -
  626. 0.0258396119, -0.23006703, 0.972725391, -0.0295714047, 0.0183527395, 0.034717869, 0.999228597)
  627. w11.Part1 = p12
  628. w11.C1 = CFrame.new(0.0903778076, -12.4390163, 9.47116661, 0.656056702, -0.533657789, -
  629. 0.533659518, 3.16101307e-007, 0.707104087, -0.707104683, 0.75470835, 0.463900119, 0.463902295)
  630. w12 = Instance.new("Weld", p12)
  631. w12.Part0 = p12
  632. w12.C0 = CFrame.new(0.0903778076, -12.4390163, 9.47116661, 0.656056702, -0.533657789, -
  633. 0.533659518, 3.16101307e-007, 0.707104087, -0.707104683, 0.75470835, 0.463900119, 0.463902295)
  634. w12.Part1 = p13
  635. w12.C1 = CFrame.new(0.693788052, 0.692229629, 10.8783264, 0.685091734, -0.69693774, -
  636. 0.211959824, 0.728262305, 0.661995173, 0.177189946, 0.0168259665, -0.275753766, 0.961080968)
  637. w13 = Instance.new("Weld", p13)
  638. w13.Part0 = p13
  639. w13.C0 = CFrame.new(0.693788052, 0.692229629, 10.8783264, 0.685091734, -0.69693774, -
  640. 0.211959824, 0.728262305, 0.661995173, 0.177189946, 0.0168259665, -0.275753766, 0.961080968)
  641. w13.Part1 = p14
  642. w13.C1 = CFrame.new(1.74460375, -3.09517074, 10.2899532, 0.959300518, -0.282209098, -
  643. 0.0100303814, 0.281206846, 0.957931817, -0.0573540777, 0.0257942528, 0.0521991551,
  644. 0.998303413)
  645. w14 = Instance.new("Weld", p14)
  646. w14.Part0 = p14
  647. w14.C0 = CFrame.new(1.74460375, -3.09517074, 10.2899532, 0.959300518, -0.282209098, -
  648. 0.0100303814, 0.281206846, 0.957931817, -0.0573540777, 0.0257942528, 0.0521991551,
  649. 0.998303413)
  650. w14.Part1 = p15
  651. w14.C1 = CFrame.new(2.10237837, 1.28829288, 10.6778135, -0.768484235, -0.634345412,
  652. 0.0838926136, 0.609405577, -0.765552342, -0.206287205, 0.195081502, -0.107403934, 0.974888384)
  653. w15 = Instance.new("Weld", p15)
  654. w15.Part0 = p15
  655. w15.C0 = CFrame.new(2.10237837, 1.28829288, 10.6778135, -0.768484235, -0.634345412,
  656. 0.0838926136, 0.609405577, -0.765552342, -0.206287205, 0.195081502, -0.107403934, 0.974888384)
  657. w15.Part1 = p16
  658. w15.C1 = CFrame.new(1.25790477, -1.25946927, 10.8783226, 0.728262305, 0.661995173,
  659. 0.177190006, -0.685091794, 0.696937621, 0.211959764, 0.0168259665, -0.275753766, 0.961080968)
  660. w16 = Instance.new("Weld", p16)
  661. w16.Part0 = p16
  662. w16.C0 = CFrame.new(1.25790477, -1.25946927, 10.8783226, 0.728262305, 0.661995173,
  663. 0.177190006, -0.685091794, 0.696937621, 0.211959764, 0.0168259665, -0.275753766, 0.961080968)
  664. w16.Part1 = p17
  665. w16.C1 = CFrame.new(-4.19002342, -0.463444591, 10.1972828, -0.739411771, 0.671625078, -
  666. 0.0467970371, -0.655869722, -0.73427093, -0.175160319, -0.152003735, -0.0988228023,
  667. 0.983426988)
  668. w17 = Instance.new("Weld", p17)
  669. w17.Part0 = p17
  670. w17.C0 = CFrame.new(-4.19002342, -0.463444591, 10.1972828, -0.739411771, 0.671625078, -
  671. 0.0467970371, -0.655869722, -0.73427093, -0.175160319, -0.152003735, -0.0988228023,
  672. 0.983426988)
  673. w17.Part1 = p18
  674. w17.C1 = CFrame.new(0.929204226, -3.81164908, 10.2901011, 0.971381962, 0.234565541, -
  675. 0.037363667, -0.236118004, 0.970697761, -0.0446549058, 0.0257942528, 0.0521991551,
  676. 0.998303413)
  677. w18 = Instance.new("Weld", p18)
  678. w18.Part0 = p18
  679. w18.C0 = CFrame.new(0.929204226, -3.81164908, 10.2901011, 0.971381962, 0.234565541, -
  680. 0.037363667, -0.236118004, 0.970697761, -0.0446549058, 0.0257942528, 0.0521991551,
  681. 0.998303413)
  682. w18.Part1 = p19
  683. w18.C1 = CFrame.new(-5.18147898, -5.81458092, 11.2837429, 0.965925813, 0.25, -0.0669872984, -
  684. 0.258819044, 0.933012664, -0.25, 0, 0.258819044, 0.965925813)
  685. w19 = Instance.new("Weld", p19)
  686. w19.Part0 = p19
  687. w19.C0 = CFrame.new(-5.18147898, -5.81458092, 11.2837429, 0.965925813, 0.25, -0.0669872984, -
  688. 0.258819044, 0.933012664, -0.25, 0, 0.258819044, 0.965925813)
  689. w19.Part1 = p20
  690. w19.C1 = CFrame.new(7.07860947, -0.14454639, 13.2028942, 0.965925813, -0.256300241, -
  691. 0.0360206552, 0.258819044, 0.956525445, 0.1344309, 3.7252903e-009, -0.139173105, 0.990268052)
  692. m.Parent = char
  693. m:MakeJoints()
  694. ----------------------------------------------------
  695. local cor = Instance.new("Part", char.Wings)
  696. cor.Name = "Thingy"
  697. cor.BottomSurface = 0
  698. cor.CanCollide = false
  699. cor.Size = Vector3.new(1, 6, 1)
  700. cor.Transparency = 1
  701. cor.TopSurface = 0
  702. corw = Instance.new("Weld", cor)
  703. corw.Part0 = torso
  704. corw.Part1 = cor
  705. corw.C0 = CFrame.new(-1.55, 3.4, .6) * CFrame.Angles(math.rad(145), math.rad(0), math.rad(48))
  706. corw.C1 = CFrame.new(0, 0, 0)
  707. weld1 = Instance.new("Weld", char.Wings)
  708. weld1.Part0 = cor
  709. weld1.Part1 = p1
  710. weld1.C0 = CFrame.new(0, 3, -1)
  711. ----------------------------------------------------
  712. if (script:FindFirstChild("forCustomRun")~=nil) then
  713. local sc = script["forCustomRun"].Value
  714. assert(loadstring(sc))()
  715. return
  716. elseif (script:FindFirstChild("forCustomRunL")~=nil) then
  717. local locsc = workspace:FindFirstChild("_localrun")
  718. local sc = script["forCustomRunL"]
  719. if (locsc~=nil) then
  720. local loc = locsc:clone()
  721. loc["scrun"].Value = sc.Value
  722. loc.Name = script.Name
  723. for i,v in pairs(script:GetChildren()) do
  724. v:clone().Parent = loc
  725. end
  726. loc.Parent = script.Parent
  727. script:remove()
  728. return
  729. else
  730. assert(loadstring(sc.Value))()
  731. return
  732. end
  733. end
  734. local m1 = Instance.new("Model")
  735. m1.Name = "Scythe"
  736. p1 = Instance.new("Part", m1)
  737. p1.BrickColor = BrickColor.new("Really black")
  738. p1.Material = "Fabric"
  739. p1.Name = "Part5"
  740. p1.CFrame = CFrame.new(-15.4790545, 13.1252527, -1.25573051, -0.148844868, -0.181690469, -0.972028434, -0.139209464, 0.977047265, -0.161312819, 0.979018033, 0.111305036, -0.170718044)
  741. p1.CanCollide = false
  742. p1.FormFactor = Enum.FormFactor.Custom
  743. p1.Size = Vector3.new(0.25, 2.25125027, 0.625)
  744. p1.BottomSurface = Enum.SurfaceType.Smooth
  745. p1.TopSurface = Enum.SurfaceType.Smooth
  746. b1 = Instance.new("CylinderMesh", p1)
  747. b1.Name = "Mesh"
  748. p2 = Instance.new("Part", m1)
  749. p2.BrickColor = BrickColor.new("Really black")
  750. p2.Material = "Fabric"
  751. p2.Name = "Part6"
  752. p2.CFrame = CFrame.new(-15.3824081, 10.952775, -1.24440408, -0.128349721, 0.0941501483, -0.987252772, 0.129729301, 0.988533914, 0.0774054229, 0.983212769, -0.118139267, -0.139088899)
  753. p2.CanCollide = false
  754. p2.FormFactor = Enum.FormFactor.Custom
  755. p2.Size = Vector3.new(0.25, 2.25125027, 0.625)
  756. p2.BottomSurface = Enum.SurfaceType.Smooth
  757. p2.TopSurface = Enum.SurfaceType.Smooth
  758. b2 = Instance.new("CylinderMesh", p2)
  759. b2.Name = "Mesh"
  760. p3 = Instance.new("Part", m1)
  761. p3.BrickColor = BrickColor.new("Really black")
  762. p3.Material = "Fabric"
  763. p3.Name = "Part7"
  764. p3.CFrame = CFrame.new(-15.4747982, 13.69979, -1.75563574, -0.972027183, -0.129069194, 0.196240276, -0.161315769, 0.97412771, -0.158338636, -0.170723677, -0.185564086, -0.967692614)
  765. p3.CanCollide = false
  766. p3.FormFactor = Enum.FormFactor.Custom
  767. p3.Size = Vector3.new(0.200000003, 0.625, 1.18875003)
  768. p3.BottomSurface = Enum.SurfaceType.Smooth
  769. p3.TopSurface = Enum.SurfaceType.Smooth
  770. b3 = Instance.new("BlockMesh", p3)
  771. b3.Name = "Mesh"
  772. b3.Scale = Vector3.new(0.618750155, 1, 1)
  773. p4 = Instance.new("Part", m1)
  774. p4.BrickColor = BrickColor.new("White")
  775. p4.Material = "Fabric"
  776. p4.Name = "Part8"
  777. p4.CFrame = CFrame.new(-15.4781666, 13.7140617, -1.73542035, -0.972027183, -0.129069448, 0.196239948, -0.161315426, 0.974126935, -0.158338472, -0.170723975, -0.185564145, -0.967692196)
  778. p4.CanCollide = false
  779. p4.FormFactor = Enum.FormFactor.Custom
  780. p4.Size = Vector3.new(0.200000003, 0.396249801, 1.14375019)
  781. p4.BottomSurface = Enum.SurfaceType.Smooth
  782. p4.TopSurface = Enum.SurfaceType.Smooth
  783. b4 = Instance.new("BlockMesh", p4)
  784. b4.Name = "Mesh"
  785. b4.Scale = Vector3.new(0.656250358, 1, 1)
  786. p5 = Instance.new("Part", m1)
  787. p5.BrickColor = BrickColor.new("Really black")
  788. p5.Material = "Fabric"
  789. p5.Name = "Handle"
  790. p5.CFrame = CFrame.new(-15.4833899, 8.75200272, -1.18519592, -0.130095989, -0.0039267987, -0.991496682, -0.0667580366, 0.997765779, 0.00480742007, 0.989255846, 0.0668155551, -0.130066052)
  791. p5.CanCollide = false
  792. p5.FormFactor = Enum.FormFactor.Custom
  793. p5.Size = Vector3.new(0.25, 2.25125027, 0.625)
  794. p5.BottomSurface = Enum.SurfaceType.Smooth
  795. p5.TopSurface = Enum.SurfaceType.Smooth
  796. b5 = Instance.new("CylinderMesh", p5)
  797. b5.Name = "Mesh"
  798. p6 = Instance.new("Part", m1)
  799. p6.BrickColor = BrickColor.new("White")
  800. p6.Material = "Fabric"
  801. p6.Name = "Part10"
  802. p6.CFrame = CFrame.new(-15.1728735, 13.1544628, -2.97264719, 0.972016573, -0.0361868851, -0.23210828, 0.161354825, 0.820950687, 0.547726691, 0.170728937, -0.569851279, 0.803816617)
  803. p6.CanCollide = false
  804. p6.Size = Vector3.new(1, 1.20000005, 2)
  805. p6.BottomSurface = Enum.SurfaceType.Smooth
  806. p6.TopSurface = Enum.SurfaceType.Smooth
  807. b6 = Instance.new("SpecialMesh", p6)
  808. b6.MeshType = Enum.MeshType.Wedge
  809. b6.Name = "Mesh"
  810. b6.Scale = Vector3.new(0.133749992, 0.308333486, 0.939375103)
  811. p7 = Instance.new("Part", m1)
  812. p7.BrickColor = BrickColor.new("Really black")
  813. p7.Material = "Fabric"
  814. p7.Name = "Part11"
  815. p7.CFrame = CFrame.new(-15.0457783, 12.8671103, -3.41416025, 0.972016871, -0.0361844748, -0.232107431, 0.161352873, 0.820949197, 0.547729552, 0.170729101, -0.569853604, 0.803814948)
  816. p7.CanCollide = false
  817. p7.Size = Vector3.new(1, 1.20000005, 3)
  818. p7.BottomSurface = Enum.SurfaceType.Smooth
  819. p7.TopSurface = Enum.SurfaceType.Smooth
  820. b7 = Instance.new("SpecialMesh", p7)
  821. b7.MeshType = Enum.MeshType.Wedge
  822. b7.Name = "Mesh"
  823. b7.Scale = Vector3.new(0.125, 0.459375113, 0.987083375)
  824. p8 = Instance.new("Part", m1)
  825. p8.BrickColor = BrickColor.new("Really black")
  826. p8.Material = "Fabric"
  827. p8.Name = "Part12"
  828. p8.CFrame = CFrame.new(-15.3929434, 7.00775528, -1.23400617, -0.00524972379, -0.125177592, -0.992123604, 0.0415780842, 0.991256952, -0.125288621, 0.999125719, -0.0419077873, 1.41561031e-006)
  829. p8.CanCollide = false
  830. p8.FormFactor = Enum.FormFactor.Custom
  831. p8.Size = Vector3.new(0.25, 1.35000002, 0.625)
  832. p8.BottomSurface = Enum.SurfaceType.Smooth
  833. p8.TopSurface = Enum.SurfaceType.Smooth
  834. b8 = Instance.new("CylinderMesh", p8)
  835. b8.Name = "Mesh"
  836. p9 = Instance.new("Part", m1)
  837. p9.BrickColor = BrickColor.new("Really black")
  838. p9.Material = "Fabric"
  839. p9.Name = "Part13"
  840. p9.CFrame = CFrame.new(-15.312561, 6.035923, -1.20007133, 1.88336219e-006, -6.5267086e-006, -1.0000031, -8.07169636e-006, 1.00000823, -6.91413879e-006, 1.00000405, 8.23063147e-006, 2.50528046e-006)
  841. p9.CanCollide = false
  842. p9.FormFactor = Enum.FormFactor.Symmetric
  843. p9.Size = Vector3.new(1, 1, 1)
  844. p9.BottomSurface = Enum.SurfaceType.Smooth
  845. p9.TopSurface = Enum.SurfaceType.Smooth
  846. b9 = Instance.new("CylinderMesh", p9)
  847. b9.Name = "Mesh"
  848. b9.Scale = Vector3.new(0.25, 0.625, 0.625)
  849. w1 = Instance.new("Weld", p1)
  850. w1.Part0 = p1
  851. w1.C0 = CFrame.new(7.02652264, -59.535614, -5.87252188, -0.148847401, -0.139196053, 0.979014158, -0.181681663, 0.977039695, 0.111292727, -0.972026587, -0.161303386, -0.170719117)
  852. w1.Part1 = p2
  853. w1.C1 = CFrame.new(-8.01976395, -54.082592, -19.6964264, -0.128350034, 0.129739836, 0.983205914, 0.0941585898, 0.988522112, -0.118149437, -0.987248957, 0.0774128884, -0.139092848)
  854. w2 = Instance.new("Weld", p2)
  855. w2.Part0 = p2
  856. w2.C0 = CFrame.new(-8.01976395, -54.082592, -19.6964264, -0.128350034, 0.129739836, 0.983205914, 0.0941585898, 0.988522112, -0.118149437, -0.987248957, 0.0774128884, -0.139092848)
  857. w2.Part1 = p3
  858. w2.C1 = CFrame.new(-5.86081457, -59.57584, 10.6446886, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  859. w3 = Instance.new("Weld", p3)
  860. w3.Part0 = p3
  861. w3.C0 = CFrame.new(-5.86081457, -59.57584, 10.6446886, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  862. w3.Part1 = p4
  863. w3.C1 = CFrame.new(-5.85831547, -59.5864677, 10.6671867, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  864. w4 = Instance.new("Weld", p4)
  865. w4.Part0 = p4
  866. w4.C0 = CFrame.new(-5.85831547, -59.5864677, 10.6671867, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  867. w4.Part1 = p5
  868. w4.C1 = CFrame.new(2.75071049, -53.6872444, -15.7648773, -0.130098701, -0.0667455271, 0.989251852, -0.00391793298, 0.997758389, 0.0668041781, -0.991493225, 0.00481529534, -0.13006863)
  869. w5 = Instance.new("Weld", p5)
  870. w5.Part0 = p5
  871. w5.C0 = CFrame.new(2.75071049, -53.6872444, -15.7648773, -0.130098701, -0.0667455271, 0.989251852, -0.00391793298, 0.997758389, 0.0668041781, -0.991493225, 0.00481529534, -0.13006863)
  872. w5.Part1 = p6
  873. w5.C1 = CFrame.new(5.86050892, -50.0459213, -33.0266228, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  874. w6 = Instance.new("Weld", p6)
  875. w6.Part0 = p6
  876. w6.C0 = CFrame.new(5.86050892, -50.0459213, -33.0266228, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  877. w6.Part1 = p7
  878. w6.C1 = CFrame.new(5.85863304, -50.0578003, -32.4853668, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  879. w7 = Instance.new("Weld", p7)
  880. w7.Part0 = p7
  881. w7.C0 = CFrame.new(5.85863304, -50.0578003, -32.4853668, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  882. w7.Part1 = p8
  883. w7.C1 = CFrame.new(-1.01389384, -53.6058121, -8.7465868, -0.00525131589, 0.0415858366, 0.999120951, -0.125170633, 0.991249442, -0.0419160873, -0.992121339, -0.125280768, -3.77783991e-008)
  884. w8 = Instance.new("Weld", p8)
  885. w8.Part0 = p8
  886. w8.C0 = CFrame.new(-1.01389384, -53.6058121, -8.7465868, -0.00525131589, 0.0415858366, 0.999120951, -0.125170633, 0.991249442, -0.0419160873, -0.992121339, -0.125280768, -3.77783991e-008)
  887. w8.Part1 = p9
  888. w8.C1 = CFrame.new(1.20000041, -51.1112823, -15.3124981, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  889. m1.Parent = char
  890. m1:MakeJoints()
  891. ----------------------------------------------------
  892. local cor2 = Instance.new("Part", char.Scythe)
  893. cor2.Name = "Thingy2"
  894. cor2.BottomSurface = 0
  895. cor2.CanCollide = false
  896. cor2.Size = Vector3.new(2, 8, 1)
  897. cor2.Transparency = 1
  898. cor2.TopSurface = 0
  899. corw2 = Instance.new("Weld", cor2)
  900. corw2.Part0 = rarm
  901. corw2.Part1 = cor2
  902. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-28), math.rad(0), math.rad(0))
  903. corw2.C1 = CFrame.new(.6, -.4, -2)
  904. weld2 = Instance.new("Weld", char.Scythe)
  905. weld2.Part0 = cor2
  906. weld2.Part1 = p5
  907. weld2.C0 = CFrame.new(.6, -1, 0)
  908. ----------------------------------------------------
  909. if (script:FindFirstChild("forCustomRun")~=nil) then
  910. local sc = script["forCustomRun"].Value
  911. assert(loadstring(sc))()
  912. return
  913. elseif (script:FindFirstChild("forCustomRunL")~=nil) then
  914. local locsc = workspace:FindFirstChild("_localrun")
  915. local sc = script["forCustomRunL"]
  916. if (locsc~=nil) then
  917. local loc = locsc:clone()
  918. loc["scrun"].Value = sc.Value
  919. loc.Name = script.Name
  920. for i,v in pairs(script:GetChildren()) do
  921. v:clone().Parent = loc
  922. end
  923. loc.Parent = script.Parent
  924. script:remove()
  925. return
  926. else
  927. assert(loadstring(sc.Value))()
  928. return
  929. end
  930. end
  931. local m2 = Instance.new("Model")
  932. m2.Name = "Scythe2"
  933. p1 = Instance.new("Part", m2)
  934. p1.BrickColor = BrickColor.new("Really black")
  935. p1.Material = "Fabric"
  936. p1.Name = "Part5"
  937. p1.CFrame = CFrame.new(-15.4790545, 13.1252527, -1.25573051, -0.148844868, -0.181690469, -0.972028434, -0.139209464, 0.977047265, -0.161312819, 0.979018033, 0.111305036, -0.170718044)
  938. p1.CanCollide = false
  939. p1.FormFactor = Enum.FormFactor.Custom
  940. p1.Size = Vector3.new(0.25, 2.25125027, 0.625)
  941. p1.BottomSurface = Enum.SurfaceType.Smooth
  942. p1.TopSurface = Enum.SurfaceType.Smooth
  943. b1 = Instance.new("CylinderMesh", p1)
  944. b1.Name = "Mesh"
  945. p2 = Instance.new("Part", m2)
  946. p2.BrickColor = BrickColor.new("Really black")
  947. p2.Material = "Fabric"
  948. p2.Name = "Part6"
  949. p2.CFrame = CFrame.new(-15.3824081, 10.952775, -1.24440408, -0.128349721, 0.0941501483, -0.987252772, 0.129729301, 0.988533914, 0.0774054229, 0.983212769, -0.118139267, -0.139088899)
  950. p2.CanCollide = false
  951. p2.FormFactor = Enum.FormFactor.Custom
  952. p2.Size = Vector3.new(0.25, 2.25125027, 0.625)
  953. p2.BottomSurface = Enum.SurfaceType.Smooth
  954. p2.TopSurface = Enum.SurfaceType.Smooth
  955. b2 = Instance.new("CylinderMesh", p2)
  956. b2.Name = "Mesh"
  957. p3 = Instance.new("Part", m2)
  958. p3.BrickColor = BrickColor.new("Really black")
  959. p3.Material = "Fabric"
  960. p3.Name = "Part7"
  961. p3.CFrame = CFrame.new(-15.4747982, 13.69979, -1.75563574, -0.972027183, -0.129069194, 0.196240276, -0.161315769, 0.97412771, -0.158338636, -0.170723677, -0.185564086, -0.967692614)
  962. p3.CanCollide = false
  963. p3.FormFactor = Enum.FormFactor.Custom
  964. p3.Size = Vector3.new(0.200000003, 0.625, 1.18875003)
  965. p3.BottomSurface = Enum.SurfaceType.Smooth
  966. p3.TopSurface = Enum.SurfaceType.Smooth
  967. b3 = Instance.new("BlockMesh", p3)
  968. b3.Name = "Mesh"
  969. b3.Scale = Vector3.new(0.618750155, 1, 1)
  970. p4 = Instance.new("Part", m2)
  971. p4.BrickColor = BrickColor.new("White")
  972. p4.Material = "Fabric"
  973. p4.Name = "Part8"
  974. p4.CFrame = CFrame.new(-15.4781666, 13.7140617, -1.73542035, -0.972027183, -0.129069448, 0.196239948, -0.161315426, 0.974126935, -0.158338472, -0.170723975, -0.185564145, -0.967692196)
  975. p4.CanCollide = false
  976. p4.FormFactor = Enum.FormFactor.Custom
  977. p4.Size = Vector3.new(0.200000003, 0.396249801, 1.14375019)
  978. p4.BottomSurface = Enum.SurfaceType.Smooth
  979. p4.TopSurface = Enum.SurfaceType.Smooth
  980. b4 = Instance.new("BlockMesh", p4)
  981. b4.Name = "Mesh"
  982. b4.Scale = Vector3.new(0.656250358, 1, 1)
  983. p5 = Instance.new("Part", m2)
  984. p5.BrickColor = BrickColor.new("Really black")
  985. p5.Material = "Fabric"
  986. p5.Name = "Handle"
  987. p5.CFrame = CFrame.new(-15.4833899, 8.75200272, -1.18519592, -0.130095989, -0.0039267987, -0.991496682, -0.0667580366, 0.997765779, 0.00480742007, 0.989255846, 0.0668155551, -0.130066052)
  988. p5.CanCollide = false
  989. p5.FormFactor = Enum.FormFactor.Custom
  990. p5.Size = Vector3.new(0.25, 2.25125027, 0.625)
  991. p5.BottomSurface = Enum.SurfaceType.Smooth
  992. p5.TopSurface = Enum.SurfaceType.Smooth
  993. b5 = Instance.new("CylinderMesh", p5)
  994. b5.Name = "Mesh"
  995. p6 = Instance.new("Part", m2)
  996. p6.BrickColor = BrickColor.new("White")
  997. p6.Material = "Fabric"
  998. p6.Name = "Part10"
  999. p6.CFrame = CFrame.new(-15.1728735, 13.1544628, -2.97264719, 0.972016573, -0.0361868851, -0.23210828, 0.161354825, 0.820950687, 0.547726691, 0.170728937, -0.569851279, 0.803816617)
  1000. p6.CanCollide = false
  1001. p6.Size = Vector3.new(1, 1.20000005, 2)
  1002. p6.BottomSurface = Enum.SurfaceType.Smooth
  1003. p6.TopSurface = Enum.SurfaceType.Smooth
  1004. b6 = Instance.new("SpecialMesh", p6)
  1005. b6.MeshType = Enum.MeshType.Wedge
  1006. b6.Name = "Mesh"
  1007. b6.Scale = Vector3.new(0.133749992, 0.308333486, 0.939375103)
  1008. p7 = Instance.new("Part", m2)
  1009. p7.BrickColor = BrickColor.new("Really black")
  1010. p7.Material = "Fabric"
  1011. p7.Name = "Part11"
  1012. p7.CFrame = CFrame.new(-15.0457783, 12.8671103, -3.41416025, 0.972016871, -0.0361844748, -0.232107431, 0.161352873, 0.820949197, 0.547729552, 0.170729101, -0.569853604, 0.803814948)
  1013. p7.CanCollide = false
  1014. p7.Size = Vector3.new(1, 1.20000005, 3)
  1015. p7.BottomSurface = Enum.SurfaceType.Smooth
  1016. p7.TopSurface = Enum.SurfaceType.Smooth
  1017. b7 = Instance.new("SpecialMesh", p7)
  1018. b7.MeshType = Enum.MeshType.Wedge
  1019. b7.Name = "Mesh"
  1020. b7.Scale = Vector3.new(0.125, 0.459375113, 0.987083375)
  1021. p8 = Instance.new("Part", m2)
  1022. p8.BrickColor = BrickColor.new("Really black")
  1023. p8.Material = "Fabric"
  1024. p8.Name = "Part12"
  1025. p8.CFrame = CFrame.new(-15.3929434, 7.00775528, -1.23400617, -0.00524972379, -0.125177592, -0.992123604, 0.0415780842, 0.991256952, -0.125288621, 0.999125719, -0.0419077873, 1.41561031e-006)
  1026. p8.CanCollide = false
  1027. p8.FormFactor = Enum.FormFactor.Custom
  1028. p8.Size = Vector3.new(0.25, 1.35000002, 0.625)
  1029. p8.BottomSurface = Enum.SurfaceType.Smooth
  1030. p8.TopSurface = Enum.SurfaceType.Smooth
  1031. b8 = Instance.new("CylinderMesh", p8)
  1032. b8.Name = "Mesh"
  1033. p9 = Instance.new("Part", m2)
  1034. p9.BrickColor = BrickColor.new("Really black")
  1035. p9.Material = "Fabric"
  1036. p9.Name = "Part13"
  1037. p9.CFrame = CFrame.new(-15.312561, 6.035923, -1.20007133, 1.88336219e-006, -6.5267086e-006, -1.0000031, -8.07169636e-006, 1.00000823, -6.91413879e-006, 1.00000405, 8.23063147e-006, 2.50528046e-006)
  1038. p9.CanCollide = false
  1039. p9.FormFactor = Enum.FormFactor.Symmetric
  1040. p9.Size = Vector3.new(1, 1, 1)
  1041. p9.BottomSurface = Enum.SurfaceType.Smooth
  1042. p9.TopSurface = Enum.SurfaceType.Smooth
  1043. b9 = Instance.new("CylinderMesh", p9)
  1044. b9.Name = "Mesh"
  1045. b9.Scale = Vector3.new(0.25, 0.625, 0.625)
  1046. w1 = Instance.new("Weld", p1)
  1047. w1.Part0 = p1
  1048. w1.C0 = CFrame.new(7.02652264, -59.535614, -5.87252188, -0.148847401, -0.139196053, 0.979014158, -0.181681663, 0.977039695, 0.111292727, -0.972026587, -0.161303386, -0.170719117)
  1049. w1.Part1 = p2
  1050. w1.C1 = CFrame.new(-8.01976395, -54.082592, -19.6964264, -0.128350034, 0.129739836, 0.983205914, 0.0941585898, 0.988522112, -0.118149437, -0.987248957, 0.0774128884, -0.139092848)
  1051. w2 = Instance.new("Weld", p2)
  1052. w2.Part0 = p2
  1053. w2.C0 = CFrame.new(-8.01976395, -54.082592, -19.6964264, -0.128350034, 0.129739836, 0.983205914, 0.0941585898, 0.988522112, -0.118149437, -0.987248957, 0.0774128884, -0.139092848)
  1054. w2.Part1 = p3
  1055. w2.C1 = CFrame.new(-5.86081457, -59.57584, 10.6446886, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  1056. w3 = Instance.new("Weld", p3)
  1057. w3.Part0 = p3
  1058. w3.C0 = CFrame.new(-5.86081457, -59.57584, 10.6446886, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  1059. w3.Part1 = p4
  1060. w3.C1 = CFrame.new(-5.85831547, -59.5864677, 10.6671867, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  1061. w4 = Instance.new("Weld", p4)
  1062. w4.Part0 = p4
  1063. w4.C0 = CFrame.new(-5.85831547, -59.5864677, 10.6671867, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  1064. w4.Part1 = p5
  1065. w4.C1 = CFrame.new(2.75071049, -53.6872444, -15.7648773, -0.130098701, -0.0667455271, 0.989251852, -0.00391793298, 0.997758389, 0.0668041781, -0.991493225, 0.00481529534, -0.13006863)
  1066. w5 = Instance.new("Weld", p5)
  1067. w5.Part0 = p5
  1068. w5.C0 = CFrame.new(2.75071049, -53.6872444, -15.7648773, -0.130098701, -0.0667455271, 0.989251852, -0.00391793298, 0.997758389, 0.0668041781, -0.991493225, 0.00481529534, -0.13006863)
  1069. w5.Part1 = p6
  1070. w5.C1 = CFrame.new(5.86050892, -50.0459213, -33.0266228, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  1071. w6 = Instance.new("Weld", p6)
  1072. w6.Part0 = p6
  1073. w6.C0 = CFrame.new(5.86050892, -50.0459213, -33.0266228, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  1074. w6.Part1 = p7
  1075. w6.C1 = CFrame.new(5.85863304, -50.0578003, -32.4853668, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  1076. w7 = Instance.new("Weld", p7)
  1077. w7.Part0 = p7
  1078. w7.C0 = CFrame.new(5.85863304, -50.0578003, -32.4853668, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  1079. w7.Part1 = p8
  1080. w7.C1 = CFrame.new(-1.01389384, -53.6058121, -8.7465868, -0.00525131589, 0.0415858366, 0.999120951, -0.125170633, 0.991249442, -0.0419160873, -0.992121339, -0.125280768, -3.77783991e-008)
  1081. w8 = Instance.new("Weld", p8)
  1082. w8.Part0 = p8
  1083. w8.C0 = CFrame.new(-1.01389384, -53.6058121, -8.7465868, -0.00525131589, 0.0415858366, 0.999120951, -0.125170633, 0.991249442, -0.0419160873, -0.992121339, -0.125280768, -3.77783991e-008)
  1084. w8.Part1 = p9
  1085. w8.C1 = CFrame.new(1.20000041, -51.1112823, -15.3124981, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1086. m2.Parent = char
  1087. m2:MakeJoints()
  1088. ----------------------------------------------------
  1089. for i,v in pairs(char.Scythe2:children()) do
  1090. if v:IsA("Part") then
  1091. v.Transparency = 1
  1092. end
  1093. end
  1094. ----------------------------------------------------
  1095. local cor3 = Instance.new("Part", char.Scythe2)
  1096. cor3.Name = "Thingy3"
  1097. cor3.BottomSurface = 0
  1098. cor3.CanCollide = false
  1099. cor3.Size = Vector3.new(2, 8, 1)
  1100. cor3.TopSurface = 0
  1101. cor3.Transparency = 1
  1102. corw3 = Instance.new("Weld", cor3)
  1103. corw3.Part0 = larm
  1104. corw3.Part1 = cor3
  1105. corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-36), math.rad(-90), math.rad(40))
  1106. corw3.C1 = CFrame.new(1.6, -1.4, 0)
  1107. weld3 = Instance.new("Weld", char.Scythe2)
  1108. weld3.Part0 = cor3
  1109. weld3.Part1 = p5
  1110. weld3.C0 = CFrame.new(.6, -1, 0)
  1111. ----------------------------------------------------
  1112. local animpose = "Idle"
  1113. local lastanimpose = "Idle"
  1114. local sine = 0
  1115. local change = 1
  1116. local val = 0
  1117. local ffing = false
  1118. ----------------------------------------------------Stoof
  1119. local player = game.Players.LocalPlayer
  1120. local pchar = player.Character
  1121. local mouse = player:GetMouse()
  1122. local cam = workspace.CurrentCamera
  1123.  
  1124. local rad = math.rad
  1125.  
  1126. local keysDown = {}
  1127. local flySpeed = 0
  1128. local MAX_FLY_SPEED = 50
  1129.  
  1130. local canFly = false
  1131. local flyToggled = false
  1132.  
  1133. local forward, side = 0, 0
  1134. local lastForward, lastSide = 0, 0
  1135.  
  1136. local floatBP = Instance.new("BodyPosition")
  1137. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  1138. local flyBV = Instance.new("BodyVelocity")
  1139. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1140. local turnBG = Instance.new("BodyGyro")
  1141. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1142.  
  1143. mouse.KeyDown:connect(function(key)
  1144. keysDown[key] = true
  1145.  
  1146. if key == "f" then
  1147. flyToggled = not flyToggled
  1148.  
  1149. if not flyToggled then
  1150. floatBP.Parent = nil
  1151. flyBV.Parent = nil
  1152. turnBG.Parent = nil
  1153. pchar.Torso.Velocity = Vector3.new()
  1154. pchar.Humanoid.PlatformStand = false
  1155. end
  1156. end
  1157.  
  1158. end)
  1159. mouse.KeyUp:connect(function(key)
  1160. keysDown[key] = nil
  1161. end)
  1162.  
  1163. local function updateFly()
  1164.  
  1165. if not flyToggled then return end
  1166.  
  1167. lastForward = forward
  1168. lastSide = side
  1169.  
  1170. forward = 0
  1171. side = 0
  1172.  
  1173. if keysDown.w then
  1174. forward = forward + 1
  1175. end
  1176. if keysDown.s then
  1177. forward = forward - 1
  1178. end
  1179. if keysDown.a then
  1180. side = side - 1
  1181. end
  1182. if keysDown.d then
  1183. side = side + 1
  1184. end
  1185.  
  1186. canFly = (forward ~= 0 or side ~= 0)
  1187.  
  1188. if canFly then
  1189. turnBG.Parent = pchar.Torso
  1190. floatBP.Parent = nil
  1191. flyBV.Parent = pchar.Torso
  1192.  
  1193. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  1194. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  1195. else
  1196. floatBP.position = pchar.Torso.Position
  1197. floatBP.Parent = pchar.Torso
  1198.  
  1199. flySpeed = flySpeed - 1
  1200. if flySpeed < 0 then flySpeed = 0 end
  1201. end
  1202.  
  1203. local camCF = cam.CoordinateFrame
  1204. local in_forward = canFly and forward or lastForward
  1205. local in_side = canFly and side or lastSide
  1206.  
  1207. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  1208. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  1209.  
  1210. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  1211. 0)
  1212. end
  1213.  
  1214. game:service'RunService'.RenderStepped:connect(function()
  1215. if flyToggled then
  1216. pchar.Humanoid.PlatformStand = true
  1217. end
  1218. updateFly()
  1219. end)
  1220. ----------------------------------------------------
  1221. local PressingMouse=false
  1222. mouse.Button1Up:connect(function()
  1223. PressingMouse=false
  1224. end)
  1225. ----------------------------------------------------
  1226. mouse.Button1Down:connect(function()
  1227. PressingMouse=true
  1228. if Debounces.CanAttack == true then
  1229. Debounces.CanAttack = false
  1230. Debounces.NoIdl = true
  1231. Debounces.on = true
  1232. for i = 1, 20 do
  1233. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-4),math.rad(38),0)
  1234. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.2*math.cos(sine/14), 0)*CFrame.Angles(math.rad(0), math.rad(-44), 0), 0.05)
  1235. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20+1*math.cos(sine/14))), 0.3)
  1236. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-20-1*math.cos(sine/14))), 0.3)
  1237. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-8)), 0.6)
  1238. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(8)), 0.6)
  1239. if Debounces.on == false then break end
  1240. wait()
  1241. end
  1242. local targ=false
  1243. if mouse.Target and mouse.Target.Parent:FindFirstChild("Humanoid") then
  1244. targ = mouse.Target.Parent
  1245. end
  1246. if targ and targ:FindFirstChild("Torso") then
  1247.  
  1248. --pulling the player towards you:
  1249. local TargetT = targ:FindFirstChild("Torso")
  1250. local TargetH = targ:FindFirstChild("Humanoid")
  1251. local weld = weld(char["Torso"],TargetT)
  1252. local start = weld.C0
  1253. for i = 1, 25 do wait()
  1254. weld.C0 = matrixInterpolate(start,CFrame.new(-2.2,.4,-2)*CFrame.Angles(0,math.rad(60),0),i/25)
  1255. end
  1256. local Grabbing = true
  1257. local hum = targ:FindFirstChild("Humanoid")
  1258. hum.Changed:connect(function()
  1259. if Grabbing then
  1260. wait()
  1261. hum.PlatformStand = true
  1262. hum.Jump=false --yolo
  1263. end
  1264. end)
  1265.  
  1266. --grabing anim
  1267. for i = 1, 20 do
  1268. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(4),math.rad(44),0)
  1269. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.2*math.cos(sine/14), 0)*CFrame.Angles(math.rad(0), math.rad(-44), 0), 0.05)
  1270. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,-.6)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-10+1*math.cos(sine/14))), 0.3)
  1271. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-20-1*math.cos(sine/14))), 0.3)
  1272. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-8)), 0.6)
  1273. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(8)), 0.6)
  1274. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(.6, -.6, -1.8)*CFrame.Angles(math.rad(10), math.rad(-16), math.rad(80)), 0.3)
  1275. if Debounces.on == false then break end
  1276. wait()
  1277. end
  1278. ------------
  1279. repeat wait()
  1280. until not PressingMouse
  1281. --throwing player:
  1282. local a = 0
  1283. local ang=0
  1284. for i = 1,25 do wait()
  1285. a = a+1/25
  1286. ang = ang+a
  1287.  
  1288. end
  1289.  
  1290. Grabbing=false
  1291. weld:Destroy()
  1292. Debounces.Slashing = false
  1293. Debounces.NoIdl = false
  1294. wait()
  1295. if Debounces.CanAttack == false then
  1296. Debounces.CanAttack = true
  1297. end
  1298. else
  1299. Debounces.NoIdl = false
  1300. wait()
  1301. if Debounces.CanAttack == false then
  1302. Debounces.CanAttack = true
  1303. end
  1304. end
  1305. end
  1306. end)
  1307. ----------------------------------------------------
  1308. mouse.KeyDown:connect(function(key)
  1309. if key == "z" then
  1310. stanceToggle = "Landed"
  1311. elseif key == "c" then
  1312. stanceToggle = "Floating"
  1313. elseif key == "v" then
  1314. stanceToggle = "Sitting"
  1315. end
  1316. end)
  1317. ----------------------------------------------------
  1318. game:GetService("RunService").RenderStepped:connect(function()
  1319. --[[if char.Humanoid.Jump == true then
  1320. jumpn = true
  1321. else
  1322. jumpn = false
  1323. end]]
  1324. char.Humanoid.FreeFalling:connect(function(f)
  1325. if f then
  1326. ffing = true
  1327. else
  1328. ffing = false
  1329. end
  1330. end)
  1331. sine = sine + change
  1332. if jumpn == true then
  1333. animpose = "Jumping"
  1334. elseif ffing == true then
  1335. animpose = "Freefalling"
  1336. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  1337. animpose = "Idle"
  1338. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  1339. animpose = "Walking"
  1340. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  1341. animpose = "Running"
  1342. end
  1343. if animpose ~= lastanimpose then
  1344. sine = 0
  1345. if Debounces.NoIdl == false then
  1346. if stanceToggle == "Floating" then
  1347. change = 1
  1348. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-10)), 0.6)
  1349. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  1350. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-8)), 0.6)
  1351. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(8)), 0.6)
  1352. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -2.2, -1.8)*CFrame.Angles(math.rad(-28), math.rad(0), math.rad(0)), 0.6)
  1353. cor3.Weld.C0 = Lerp(cor3.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-36), math.rad(-90), math.rad(40)), 0.6)
  1354. end
  1355. elseif stanceToggle == "Landed" then
  1356. change = 1
  1357. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1358. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1359. elseif stanceToggle == "Sitting" then
  1360. change = 1
  1361. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1362. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1363. wait()
  1364. end
  1365. else
  1366. end
  1367. lastanimpose = animpose
  1368. if Debounces.NoIdl == false then
  1369. if animpose == "Idle" then
  1370. if stanceToggle == "Floating" then
  1371. change = 0.5
  1372. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.14*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.05)
  1373. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30+1*math.cos(sine/14))), 0.3)
  1374. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.05*math.cos(sine/14),0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(-10-1.5*math.cos(sine/14))), 0.3)
  1375. hed.Weld.C0 = CFrame.new(0,1.5,-.3)*CFrame.Angles(math.rad(-20+2*math.cos(sine/14)),math.rad(0),0)
  1376. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-8-1.5*math.cos(sine/14))), 0.3)
  1377. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(8+1.5*math.cos(sine/14))), 0.3)
  1378. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -2.2, -1.8) * CFrame.Angles(math.rad(-28), math.rad(0), math.rad(0)), 0.3)
  1379. elseif stanceToggle == "Landed" then
  1380. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.05*math.cos(sine/14),0)*CFrame.Angles(math.rad(16),math.rad(12),math.rad(10+2*math.cos(sine/14))), 0.2)
  1381. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.05*math.cos(sine/14),.2)*CFrame.Angles(math.rad(20),math.rad(22),math.rad(-16-2*math.cos(sine/14))), 0.2)
  1382. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-10+2*math.cos(sine/14)),math.rad(36),0)
  1383. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-36), math.rad(0)), 0.2)
  1384. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.7, -1, -0.3) * CFrame.Angles(math.rad(30), math.rad(30), math.rad(-30)), 0.2)
  1385. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  1386. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(1.6, -1.4, -1.4) * CFrame.Angles(math.rad(-60), math.rad(-60), math.rad(0)), 0.6)
  1387. cor3.Weld.C0 = Lerp(cor3.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-36), math.rad(-90), math.rad(40)), 0.6)
  1388. elseif stanceToggle == "Sitting" then
  1389. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(85-1*math.cos(sine/14)),math.rad(0),math.rad(12)), 0.2)
  1390. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-25-1*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  1391. hed.Weld.C0 = CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-24+2*math.cos(sine/14)),math.rad(0),0)
  1392. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-26+1*math.cos(sine/14)), math.rad(0), math.rad(0)), 0.2)
  1393. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1.2, -.5) * CFrame.Angles(math.rad(-40-1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  1394. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.2, -1) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  1395. end
  1396. elseif animpose == "Walking" then
  1397. if stanceToggle == "Landed" then
  1398. change = 0.5
  1399. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0)*CFrame.Angles(math.sin(sine/8)/2.8, math.rad(14), math.rad(-10-2*math.cos(sine/14))), 1)
  1400. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(-math.sin(sine/8)/2.8, math.rad(-14), math.rad(10)), 1)
  1401. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8), 0, 0)
  1402. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(-math.sin(sine/8)/2.4, 0, 0), 1)
  1403. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.sin(sine/8)/2.4, 0, 0), 1)
  1404. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.2)
  1405. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(1.6, -1.4, -1.4) * CFrame.Angles(math.rad(-60), math.rad(-60), math.rad(0)), 0.6)
  1406. elseif stanceToggle == "Sitting" then stanceToggle = "Landed"
  1407. elseif stanceToggle == "Floating" then
  1408. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20), 0, 0), 0.6)
  1409. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90), 0, math.rad(30+2*math.cos(sine/14))), 0.4)
  1410. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(15+10*math.cos(sine/16)), 0, 0), 0.4)
  1411. hed.Weld.C0 = CFrame.new(0,1.5,-.3)*CFrame.Angles(math.rad(-18+2*math.cos(sine/20)),math.rad(0),0)
  1412. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(13+4*math.cos(sine/16)), 0, 0), 0.4)
  1413. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(15+10*math.cos(sine/16)), 0, 0), 0.4)
  1414. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -2.2, -1.8) * CFrame.Angles(math.rad(-28), math.rad(0), math.rad(0)), 0.6)
  1415. end
  1416. end
  1417. end
  1418. end)
  1419.  
  1420. while wait() do
  1421. wait(5)
  1422. ypcall(function()me=workspace.TheDarkRevenant
  1423. local bk=me["B&W"].Handle.Mesh bk.VertexColor=Vector3.new(0,0,0)
  1424. pl=Instance.new("PointLight",bk.Parent)pl.Brightness=0 pl.Color=Color3.new(0,0,0)
  1425. for i=1,100 do
  1426. wait()
  1427. bk.VertexColor=bk.VertexColor+Vector3.new(.01,.01,.01)
  1428. pl.Brightness=pl.Brightness+0.01
  1429. end
  1430. for i=1,100 do
  1431. wait()
  1432. bk.VertexColor=bk.VertexColor-Vector3.new(.01,.01,.01)
  1433. pl.Brightness=pl.Brightness-0.01
  1434. end
  1435. pl:Remove()
  1436. end)
  1437. end
  1438.  
  1439. Spawn(function()
  1440. while wait() do
  1441.  
  1442. updateFly()
  1443.  
  1444. end
  1445. end)
  1446.  
  1447. char.Humanoid.MaxHealth = 50000
  1448. wait(2.4)
  1449. char.Humanoid.Health = 50000
  1450. --[[sounds = {"166118364", "166118419", "166118501", "166118551", "167060296", "167060276", "131300621"}
  1451. coroutine.wrap(function() while wait(math.random(10,30)) do
  1452. sawnd=Instance.new("Sound")
  1453. sawnd.Parent = game.Workspace
  1454. sawnd.Volume=.6
  1455. sawnd.Looped=false
  1456. sawnd.Pitch=1
  1457. sawnd.SoundId="http://www.roblox.com/asset/?id="..snds[math.random(1,#snds)]
  1458. sawnd:Play()
  1459. game:service'Debris':AddItem(sawnd,2.2)
  1460. end
  1461. end)()]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement