minecrafter523

Idkwhatisthis

Jun 1st, 2016
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 89.17 KB | None | 0 0
  1. --[[
  2.  
  3. This script has been rejected from my archive
  4. Reason: Requested by TheDarkRevenant
  5. put it on pastebin.. now what?
  6.  
  7. ]]
  8. -- Note To Self: Dont Distribute/Redistribute Or Run when TheDarkRevenant is around!
  9. local p = game.Players.LocalPlayer
  10. local m = game.Players.LocalPlayer
  11. local char = p.Character
  12. local mouse = p:GetMouse()
  13. local larm = char["Left Arm"]
  14. local rarm = char["Right Arm"]
  15. local lleg = char["Left Leg"]
  16. local rleg = char["Right Leg"]
  17. local hed = char.Head
  18. local torso = char.Torso
  19. local cam = game.Workspace.CurrentCamera
  20. local root = char.HumanoidRootPart
  21. local deb = false
  22. local shot = 0
  23. local l = game.Lighting
  24. local stanceToggle = "Landed"
  25. local animpose = "Idle"
  26. local lastanimpose = "Idle"
  27. local shirt = Instance.new("Shirt")
  28. local pants = Instance.new("Pants")
  29.  
  30.  
  31.  
  32. game:service'InsertService':LoadAsset(16469427):children()[1].Parent = char
  33. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=91948959"
  34. pants.PantsTemplate = "http://www.roblox.com/asset/?id=91947844"
  35.  
  36. ROW = function(out, trans, s, wt, t, ang, plus)
  37. for i = 1, 360, 360/t do
  38. local c = Instance.new("Part", game.Workspace)
  39. c.FormFactor = 3
  40. c.TopSurface = 0
  41. c.BottomSurface = 0
  42. c.Size = s
  43. c.Anchored = true
  44. c.CanCollide = wt
  45. c.Material=workspace.Base.Material
  46. c.Transparency = trans
  47. c.BrickColor = workspace.Base.BrickColor
  48. 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
  49. c.Locked=true
  50. game.Debris:AddItem(c,4+math.random(1,10)/10)
  51. end
  52. end
  53.  
  54.  
  55. Part = function(x,y,z,color,tr,cc,an,parent)
  56. local p = Instance.new('Part',parent or Weapon)
  57. p.formFactor = 'Custom'
  58. p.Size = Vector3.new(x,y,z)
  59. p.BrickColor = BrickColor.new(color)
  60. p.CanCollide = cc
  61. p.Transparency = tr
  62. p.Anchored = an
  63. p.TopSurface,p.BottomSurface = 0,0
  64. p.Locked=true
  65. p:BreakJoints()
  66. return p end
  67.  
  68.  
  69. Mesh = function(par,num,x,y,z)
  70. local msh = _
  71. if num == 1 then msh = Instance.new("CylinderMesh",par)
  72. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  73. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  74. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  75. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  76. end msh.Scale = Vector3.new(x,y,z)
  77. return msh end
  78.  
  79. function explosion(col1,col2,cfr,sz,rng,dmg)
  80. local a= Part(1,1,1,col1,.5,false,true,workspace)
  81. local a2= Part(1,1,1,col2,.5,false,true,workspace)
  82. local a3= Part(1,1,1,col2,.5,false,true,workspace)
  83. v1,v2,v3=sz.x,sz.y,sz.z
  84. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  85. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  86. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  87. a.CFrame=cfr
  88. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  89. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  90. for i,v in pairs(workspace:children()) do
  91. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  92. if v:findFirstChild("Head") and v:findFirstChild("Torso") then
  93. if (v:findFirstChild("Torso").Position - a.Position).magnitude < rng and v.Name ~= char.Name then
  94. local hit=v
  95. hit.Humanoid.Health=v.Humanoid.Health-dmg
  96. hit.Humanoid.PlatformStand=true
  97. hit.Torso.Velocity=Vector3.new(math.random(-100,100),100,math.random(-100,-100))
  98. wait(.1)
  99. Spawn(function()wait(2)hit.Humanoid.PlatformStand=false end)
  100. end
  101. end
  102. end
  103. end
  104. Spawn(function()
  105. while wait() do
  106. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  107. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  108. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  109. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  110. a.Transparency=a.Transparency+0.05
  111. a2.Transparency=a2.Transparency+0.05
  112. a3.Transparency=a3.Transparency+0.05
  113. end
  114. end)
  115. end
  116.  
  117. local keyVectors = {
  118. w = Vector3.new(0, 0, 1);
  119. a = Vector3.new(1, 0, 0);
  120. s = Vector3.new(0, 0, -1);
  121. d = Vector3.new(-1, 0, 0);
  122. }
  123. local keysDown = {}
  124. local flySpeed = 30
  125. local canFly = false
  126. --local flyToggled = false
  127. char.Humanoid.WalkSpeed = 6
  128. ----------------------------------------------------
  129. function lerp(a, b, t) -- Linear interpolation
  130. return a + (b - a)*t
  131. end
  132.  
  133. function slerp(a, b, t) --Spherical interpolation
  134. dot = a:Dot(b)
  135. if dot > 0.99999 or dot < -0.99999 then
  136. return t <= 0.5 and a or b
  137. else
  138. r = math.acos(dot)
  139. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  140. end
  141. end
  142.  
  143. function matrixInterpolate(a, b, t)
  144. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  145. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  146. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  147. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  148. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  149. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  150. local t = v1:Dot(v2)
  151. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  152. return CFrame.new()
  153. end
  154. return CFrame.new(
  155. v0.x, v0.y, v0.z,
  156. v1.x, v1.y, v1.z,
  157. v2.x, v2.y, v2.z,
  158. v3.x, v3.y, v3.z)
  159. end
  160. ----------------------------------------------------
  161. function genWeld(a,b)
  162. local w = Instance.new("Weld",a)
  163. w.Part0 = a
  164. w.Part1 = b
  165. return w
  166. end
  167. function weld(a, b)
  168. local weld = Instance.new("Weld")
  169. weld.Name = "W"
  170. weld.Part0 = a
  171. weld.Part1 = b
  172. weld.C0 = a.CFrame:inverse() * b.CFrame
  173. weld.Parent = a
  174. return weld;
  175. end
  176. ----------------------------------------------------
  177. Debounces = {
  178. on = false;
  179. CanAttack = true;
  180. NoIdl = false;
  181. }
  182. ----------------------------------------------------
  183. function Lerp(c1,c2,al)
  184. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  185. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  186. for i,v in pairs(com1) do
  187. com1[i] = v+(com2[i]-v)*al
  188. end
  189. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  190. end
  191. -----------
  192. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  193. wld = Instance.new("Weld", wp1)
  194. wld.Part0 = wp0
  195. wld.Part1 = wp1
  196. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  197. end
  198. -----------
  199. function HasntTouched(plrname)
  200. local ret = true
  201. for _, v in pairs(Touche) do
  202. if v == plrname then
  203. ret = false
  204. end
  205. end
  206. return ret
  207. end
  208. ----------------------------
  209. newWeld(torso, larm, -1.5, 0.5, 0)
  210. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  211. newWeld(torso, rarm, 1.5, 0.5, 0)
  212. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  213. newWeld(torso, hed, 0, 1.5, 0)
  214. newWeld(torso, lleg, -0.5, -1, 0)
  215. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  216. newWeld(torso, rleg, 0.5, -1, 0)
  217. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  218. newWeld(root, torso, 0, -1, 0)
  219. torso.Weld.C1 = CFrame.new(0, -1, 0)
  220. -----------------------------------------------------
  221. --[[l.TimeOfDay = 24
  222. l.Ambient = Color3.new(0.25,0.25,0.25)
  223. l.OutdoorAmbient = Color3.new(0.25,0.25,0.25)
  224. l.FogEnd = 100
  225. l.FogColor = Color3.new(0,0,0)
  226. base = game.Workspace.Base
  227. base.Material = "Plastic"
  228. base.BrickColor = BrickColor.new("Really black")]]--
  229. lite = Instance.new("PointLight")
  230. lite.Parent = torso
  231. lite.Brightness = 10
  232. lite.Range = 8
  233. lite.Color = Color3.new(1,0,0)
  234. ----------------------------------------------------
  235. for i,v in pairs(hed:children()) do
  236. if v:IsA("Sound") then
  237. v:Destroy()
  238. end
  239. end
  240. --[[z = Instance.new("Sound")
  241. z.SoundId = "http://www.roblox.com/asset/?id=162787383"--167985166
  242. z.Parent = char
  243. z.Looped = true
  244. z.Pitch = .94
  245. z.Volume = 1
  246. wait(.01)
  247. z:Play()
  248. wait()
  249. v = Instance.new("Sound")
  250. v.SoundId = "http://www.roblox.com/asset/?id=167048484"
  251. v.Parent = char
  252. v.Looped = true
  253. v.Pitch = 1
  254. v.Volume = 0.05
  255. wait(.01)
  256. v:Play()]]--
  257. ----------------------------------------------------
  258. if (script:FindFirstChild("forCustomRun")~=nil) then
  259. local sc = script["forCustomRun"].Value
  260. assert(loadstring(sc))()
  261. return
  262. elseif (script:FindFirstChild("forCustomRunL")~=nil) then
  263. local locsc = workspace:FindFirstChild("_localrun")
  264. local sc = script["forCustomRunL"]
  265. if (locsc~=nil) then
  266. local loc = locsc:clone()
  267. loc["scrun"].Value = sc.Value
  268. loc.Name = script.Name
  269. for i,v in pairs(script:GetChildren()) do
  270. v:clone().Parent = loc
  271. end
  272. loc.Parent = script.Parent
  273. script:remove()
  274. return
  275. else
  276. assert(loadstring(sc.Value))()
  277. return
  278. end
  279. end
  280. local m = Instance.new("Model")
  281. m.Name = "Wings"
  282. p1 = Instance.new("Part", m)
  283. p1.Name = "Part1"
  284. p1.BrickColor = BrickColor.new("Really black")
  285. p1.Material = "Plastic"
  286. p1.CFrame = CFrame.new(2.23064709, 5.42307234, -12.1674881, -0.707106709, 0.707106888, -
  287. 2.23517389e-007, -0.499999762, -0.499999851, -0.707106233, -0.499999374, -0.499999732,
  288. 0.707105637)
  289. p1.CanCollide = false
  290. p1.FormFactor = Enum.FormFactor.Symmetric
  291. p1.Elasticity = 0
  292. p1.Size = Vector3.new(1, 4, 1)
  293. p1.BottomSurface = Enum.SurfaceType.Smooth
  294. p1.TopSurface = Enum.SurfaceType.Smooth
  295. b1 = Instance.new("BlockMesh", p1)
  296. b1.Name = "Mesh"
  297. b1.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  298. p2 = Instance.new("Part", m)
  299. p2.Name = "Part2"
  300. p2.BrickColor = BrickColor.new("Really black")
  301. p2.Material = "Neon"
  302. p2.CFrame = CFrame.new(3.99841213, 4.17309284, -13.4174824, 0.707106709, 2.23517418e-007, -
  303. 0.707106829, 0.49999994, 0.707106292, 0.499999851, 0.499999553, -0.707105696, 0.499999791)
  304. p2.CanCollide = false
  305. p2.FormFactor = Enum.FormFactor.Symmetric
  306. p2.Elasticity = 0
  307. p2.Size = Vector3.new(1, 1, 1)
  308. p2.BottomSurface = Enum.SurfaceType.Smooth
  309. p2.TopSurface = Enum.SurfaceType.Smooth
  310. b2 = Instance.new("SpecialMesh", p2)
  311. b2.MeshType = Enum.MeshType.Wedge
  312. b2.Name = "Mesh"
  313. b2.Scale = Vector3.new(0.319999993, 0.299999923, 1)
  314. p3 = Instance.new("Part", m)
  315. p3.Name = "Part3"
  316. p3.BrickColor = BrickColor.new("Really black")
  317. p3.Material = "Neon"
  318. p3.CFrame = CFrame.new(2.20711732, 3.78849339, -12.3740644, 0.959171534, 0.28168276,
  319. 0.0253876615, -0.282448769, 0.958654881, 0.0346818939, -0.0145691708, -0.0404358432,
  320. 0.999074996)
  321. p3.CanCollide = false
  322. p3.FormFactor = Enum.FormFactor.Symmetric
  323. p3.Elasticity = 0
  324. p3.Size = Vector3.new(1, 3, 1)
  325. p3.BottomSurface = Enum.SurfaceType.Smooth
  326. p3.TopSurface = Enum.SurfaceType.Smooth
  327. b3 = Instance.new("BlockMesh", p3)
  328. b3.Name = "Mesh"
  329. b3.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  330. p4 = Instance.new("Part", m)
  331. p4.Name = "Part4"
  332. p4.BrickColor = BrickColor.new("Really black")
  333. p4.Material = "Neon"
  334. p4.CFrame = CFrame.new(1.26502275, 5.19090509, -11.4009991, 0.988936007, -0.146727905,
  335. 0.0218264833, 0.14821738, 0.983390749, -0.104755871, -0.00609340565, 0.106832691, 0.994257689)
  336. p4.CanCollide = false
  337. p4.FormFactor = Enum.FormFactor.Symmetric
  338. p4.Elasticity = 0
  339. p4.Size = Vector3.new(1, 2, 1)
  340. p4.BottomSurface = Enum.SurfaceType.Smooth
  341. p4.TopSurface = Enum.SurfaceType.Smooth
  342. b4 = Instance.new("BlockMesh", p4)
  343. b4.Name = "Mesh"
  344. b4.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  345. p5 = Instance.new("Part", m)
  346. p5.Name = "Part5"
  347. p5.BrickColor = BrickColor.new("Really black")
  348. p5.Material = "Plastic"
  349. p5.CFrame = CFrame.new(-4.44179106, 5.13394976, -11.382658, 0.9583143, 0.284877658,
  350. 0.0218711179, -0.281183124, 0.953924894, -0.104703665, -0.0506914668, 0.0941898227,
  351. 0.994262278)
  352. p5.CanCollide = false
  353. p5.FormFactor = Enum.FormFactor.Symmetric
  354. p5.Elasticity = 0
  355. p5.Size = Vector3.new(1, 3, 1)
  356. p5.BottomSurface = Enum.SurfaceType.Smooth
  357. p5.TopSurface = Enum.SurfaceType.Smooth
  358. b5 = Instance.new("BlockMesh", p5)
  359. b5.Name = "Mesh"
  360. b5.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  361. p6 = Instance.new("Part", m)
  362. p6.Name = "Part6"
  363. p6.BrickColor = BrickColor.new("Really black")
  364. p6.Material = "Neon"
  365. p6.CFrame = CFrame.new(-3.25746775, 4.10252142, -11.1188278, 0.990586162, 0.136166841,
  366. 0.0140535301, -0.122137889, 0.925523639, -0.358451784, -0.0618163571, 0.353361398,
  367. 0.933441639)
  368. p6.CanCollide = false
  369. p6.FormFactor = Enum.FormFactor.Symmetric
  370. p6.Elasticity = 0
  371. p6.Size = Vector3.new(1, 3, 1)
  372. p6.BottomSurface = Enum.SurfaceType.Smooth
  373. p6.TopSurface = Enum.SurfaceType.Smooth
  374. b6 = Instance.new("BlockMesh", p6)
  375. b6.Name = "Mesh"
  376. b6.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  377. p7 = Instance.new("Part", m)
  378. p7.Name = "Part7"
  379. p7.BrickColor = BrickColor.new("Really black")
  380. p7.Material = "Plastic"
  381. p7.CFrame = CFrame.new(-5.3205142, 5.61000919, -11.9814529, -0.656058729, -0.754709721, -
  382. 5.77419996e-008, 0.533660352, -0.463903487, -0.707106411, 0.533660412, -0.463903487,
  383. 0.707106233)
  384. p7.CanCollide = false
  385. p7.FormFactor = Enum.FormFactor.Symmetric
  386. p7.Elasticity = 0
  387. p7.Size = Vector3.new(1, 4, 1)
  388. p7.BottomSurface = Enum.SurfaceType.Smooth
  389. p7.TopSurface = Enum.SurfaceType.Smooth
  390. b7 = Instance.new("BlockMesh", p7)
  391. b7.Name = "Mesh"
  392. b7.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  393. p8 = Instance.new("Part", m)
  394. p8.Name = "Part8"
  395. p8.BrickColor = BrickColor.new("Really black")
  396. p8.Material = "Neon"
  397. p8.CFrame = CFrame.new(-0.130102158, 4.73467064, -10.7141094, 0.874170661, 0.484677076,
  398. 0.0302294046, -0.475244969, 0.841039479, 0.258445919, 0.0998384058, -0.240292028, 0.96555239)
  399. p8.CanCollide = false
  400. p8.FormFactor = Enum.FormFactor.Symmetric
  401. p8.Elasticity = 0
  402. p8.Size = Vector3.new(1, 4, 1)
  403. p8.BottomSurface = Enum.SurfaceType.Smooth
  404. p8.TopSurface = Enum.SurfaceType.Smooth
  405. b8 = Instance.new("BlockMesh", p8)
  406. b8.Name = "Mesh"
  407. b8.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  408. p9 = Instance.new("Part", m)
  409. p9.Name = "Part9"
  410. p9.BrickColor = BrickColor.new("Really black")
  411. p9.Material = "Plastic"
  412. p9.CFrame = CFrame.new(-2.9284029, 4.80385351, -10.6452761, 0.890645742, -0.453692019,
  413. 0.0302294642, 0.431499481, 0.864299536, 0.258445889, -0.143382162, -0.217139587, 0.965552568)
  414. p9.CanCollide = false
  415. p9.FormFactor = Enum.FormFactor.Symmetric
  416. p9.Elasticity = 0
  417. p9.Size = Vector3.new(1, 4, 1)
  418. p9.BottomSurface = Enum.SurfaceType.Smooth
  419. p9.TopSurface = Enum.SurfaceType.Smooth
  420. b9 = Instance.new("BlockMesh", p9)
  421. b9.Name = "Mesh"
  422. b9.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  423. p10 = Instance.new("Part", m)
  424. p10.Name = "Part10"
  425. p10.BrickColor = BrickColor.new("Really black")
  426. p10.Material = "Neon"
  427. p10.CFrame = CFrame.new(0.461318254, 4.42153645, -10.9603891, 0.993439734, -0.112256877,
  428. 0.0218180809, 0.113935865, 0.987964332, -0.104616776, -0.00981165841, 0.106416553,
  429. 0.994273067)
  430. p10.CanCollide = false
  431. p10.FormFactor = Enum.FormFactor.Symmetric
  432. p10.Elasticity = 0
  433. p10.Size = Vector3.new(1, 2, 1)
  434. p10.BottomSurface = Enum.SurfaceType.Smooth
  435. p10.TopSurface = Enum.SurfaceType.Smooth
  436. b10 = Instance.new("BlockMesh", p10)
  437. b10.Name = "Mesh"
  438. b10.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  439. p11 = Instance.new("Part", m)
  440. p11.Name = "Part11"
  441. p11.BrickColor = BrickColor.new("Really black")
  442. p11.Material = "Neon"
  443. p11.CFrame = CFrame.new(-5.58509636, 4.39552546, -12.2391958, 0.973001778, -0.230067,
  444. 0.0183526818, 0.229346812, 0.972725153, 0.034717977, -0.0258396715, -0.0295712873,
  445. 0.999228418)
  446. p11.CanCollide = false
  447. p11.FormFactor = Enum.FormFactor.Symmetric
  448. p11.Elasticity = 0
  449. p11.Size = Vector3.new(1, 2, 1)
  450. p11.BottomSurface = Enum.SurfaceType.Smooth
  451. p11.TopSurface = Enum.SurfaceType.Smooth
  452. b11 = Instance.new("BlockMesh", p11)
  453. b11.Name = "Mesh"
  454. b11.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  455. p12 = Instance.new("Part", m)
  456. p12.Name = "Part12"
  457. p12.BrickColor = BrickColor.new("Really black")
  458. p12.Material = "Plastic"
  459. p12.CFrame = CFrame.new(-7.20725632, 4.45023441, -13.1411486, 0.656056762, 3.7997961e-007,
  460. 0.75470835, -0.53365773, 0.707103908, 0.463900089, -0.533659458, -0.707104445, 0.463902116)
  461. p12.CanCollide = false
  462. p12.FormFactor = Enum.FormFactor.Symmetric
  463. p12.Elasticity = 0
  464. p12.Size = Vector3.new(1, 1, 1)
  465. p12.BottomSurface = Enum.SurfaceType.Smooth
  466. p12.TopSurface = Enum.SurfaceType.Smooth
  467. b12 = Instance.new("SpecialMesh", p12)
  468. b12.MeshType = Enum.MeshType.Wedge
  469. b12.Name = "Mesh"
  470. b12.Scale = Vector3.new(0.319999993, 0.299999923, 1)
  471. p13 = Instance.new("Part", m)
  472. p13.Name = "Part13"
  473. p13.BrickColor = BrickColor.new("Really black")
  474. p13.Material = "Plastic"
  475. p13.CFrame = CFrame.new(-1.16246319, 3.02499151, -10.4305, 0.685088575, 0.728258491,
  476. 0.0168257058, -0.696930826, 0.661988258, -0.27575165, -0.211958379, 0.177188307, 0.961075842)
  477. p13.CanCollide = false
  478. p13.FormFactor = Enum.FormFactor.Symmetric
  479. p13.Elasticity = 0
  480. p13.Size = Vector3.new(1, 1, 1)
  481. p13.BottomSurface = Enum.SurfaceType.Smooth
  482. p13.TopSurface = Enum.SurfaceType.Smooth
  483. b13 = Instance.new("BlockMesh", p13)
  484. b13.Name = "Mesh"
  485. b13.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  486. p14 = Instance.new("Part", m)
  487. p14.Name = "Part14"
  488. p14.BrickColor = BrickColor.new("Really black")
  489. p14.Material = "Plastic"
  490. p14.CFrame = CFrame.new(-1.06862891, 2.92015743, -10.4324627, 0.959295571, 0.281205207,
  491. 0.0257938076, -0.282206476, 0.95792222, 0.052197963, -0.0100304484, -0.0573545098,
  492. 0.998297691)
  493. p14.CanCollide = false
  494. p14.FormFactor = Enum.FormFactor.Symmetric
  495. p14.Elasticity = 0
  496. p14.Size = Vector3.new(1, 2, 1)
  497. p14.BottomSurface = Enum.SurfaceType.Smooth
  498. p14.TopSurface = Enum.SurfaceType.Smooth
  499. b14 = Instance.new("BlockMesh", p14)
  500. b14.Name = "Mesh"
  501. b14.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  502. p15 = Instance.new("Part", m)
  503. p15.Name = "Part15"
  504. p15.BrickColor = BrickColor.new("Really black")
  505. p15.Material = "Plastic"
  506. p15.CFrame = CFrame.new(-1.25248194, 3.46670246, -10.3202372, -0.768480301, 0.609402537,
  507. 0.195080221, -0.634339094, -0.765544653, -0.107403584, 0.0838928521, -0.206285655,
  508. 0.974882662)
  509. p15.CanCollide = false
  510. p15.FormFactor = Enum.FormFactor.Symmetric
  511. p15.Elasticity = 0
  512. p15.Size = Vector3.new(1, 1, 1)
  513. p15.BottomSurface = Enum.SurfaceType.Smooth
  514. p15.TopSurface = Enum.SurfaceType.Smooth
  515. b15 = Instance.new("BlockMesh", p15)
  516. b15.Name = "Mesh"
  517. b15.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  518. p16 = Instance.new("Part", m)
  519. p16.Name = "Part16"
  520. p16.BrickColor = BrickColor.new("Really black")
  521. p16.Material = "Plastic"
  522. p16.CFrame = CFrame.new(-1.96196043, 3.04476213, -10.4108219, 0.72825861, -0.685088336,
  523. 0.0168255717, 0.661988497, 0.696930647, -0.275751829, 0.177188098, 0.211958155, 0.961075366)
  524. p16.CanCollide = false
  525. p16.FormFactor = Enum.FormFactor.Symmetric
  526. p16.Elasticity = 0
  527. p16.Size = Vector3.new(1, 1, 1)
  528. p16.BottomSurface = Enum.SurfaceType.Smooth
  529. p16.TopSurface = Enum.SurfaceType.Smooth
  530. b16 = Instance.new("BlockMesh", p16)
  531. b16.Name = "Mesh"
  532. b16.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  533. p17 = Instance.new("Part", m)
  534. p17.Name = "Part17"
  535. p17.BrickColor = BrickColor.new("Really black")
  536. p17.Material = "Plastic"
  537. p17.CFrame = CFrame.new(-1.85207272, 3.48152924, -10.3054819, -0.739407778, -0.655866385, -
  538. 0.152003229, 0.671618342, -0.73426342, -0.0988226384, -0.0467970669, -0.175158352,
  539. 0.983420968)
  540. p17.CanCollide = false
  541. p17.FormFactor = Enum.FormFactor.Symmetric
  542. p17.Elasticity = 0
  543. p17.Size = Vector3.new(1, 1, 1)
  544. p17.BottomSurface = Enum.SurfaceType.Smooth
  545. p17.TopSurface = Enum.SurfaceType.Smooth
  546. b17 = Instance.new("BlockMesh", p17)
  547. b17.Name = "Mesh"
  548. b17.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  549. p18 = Instance.new("Part", m)
  550. p18.Name = "Part18"
  551. p18.BrickColor = BrickColor.new("Really black")
  552. p18.Material = "Plastic"
  553. p18.CFrame = CFrame.new(-2.06802177, 2.94484425, -10.4080706, 0.971376956, -0.236116573,
  554. 0.02579391, 0.234563246, 0.970688105, 0.0521978363, -0.0373639017, -0.0446553342, 0.998296857)
  555. p18.CanCollide = false
  556. p18.FormFactor = Enum.FormFactor.Symmetric
  557. p18.Elasticity = 0
  558. p18.Size = Vector3.new(1, 2, 1)
  559. p18.BottomSurface = Enum.SurfaceType.Smooth
  560. p18.TopSurface = Enum.SurfaceType.Smooth
  561. b18 = Instance.new("BlockMesh", p18)
  562. b18.Name = "Mesh"
  563. b18.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  564. p19 = Instance.new("Part", m)
  565. p19.Name = "Part19"
  566. p19.BrickColor = BrickColor.new("Really black")
  567. p19.Material = "Plastic"
  568. p19.CFrame = CFrame.new(3.49998665, 3.79997182, -12.6999207, 0.965920806, -0.258817494, -
  569. 2.4959445e-007, 0.249997482, 0.933003485, 0.258815616, -0.0669874251, -0.249999031,
  570. 0.965919077)
  571. p19.CanCollide = false
  572. p19.FormFactor = Enum.FormFactor.Symmetric
  573. p19.Elasticity = 0
  574. p19.Size = Vector3.new(1, 2, 1)
  575. p19.BottomSurface = Enum.SurfaceType.Smooth
  576. p19.TopSurface = Enum.SurfaceType.Smooth
  577. b19 = Instance.new("BlockMesh", p19)
  578. b19.Name = "Mesh"
  579. b19.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  580. p20 = Instance.new("Part", m)
  581. p20.Name = "Part20"
  582. p20.BrickColor = BrickColor.new("Really black")
  583. p20.Material = "Plastic"
  584. p20.CFrame = CFrame.new(-6.79995918, 3.78997159, -12.7999163, 0.965920687, 0.258817792, -
  585. 3.04258691e-007, -0.256297678, 0.95651561, -0.139172524, -0.036020536, 0.134429038,
  586. 0.990261436)
  587. p20.CanCollide = false
  588. p20.FormFactor = Enum.FormFactor.Symmetric
  589. p20.Elasticity = 0
  590. p20.Size = Vector3.new(1, 3, 1)
  591. p20.BottomSurface = Enum.SurfaceType.Smooth
  592. p20.TopSurface = Enum.SurfaceType.Smooth
  593. b20 = Instance.new("BlockMesh", p20)
  594. b20.Name = "Mesh"
  595. b20.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  596. w1 = Instance.new("Weld", p1)
  597. w1.Part0 = p1
  598. w1.C0 = CFrame.new(-1.79490757, -4.94951439, 12.4384165, -0.707106769, -0.499999911, -
  599. 0.49999994, 0.707106709, -0.49999997, -0.49999994, 0, -0.707106769, 0.707106709)
  600. w1.Part1 = p2
  601. w1.C1 = CFrame.new(1.79489565, -12.4384251, 7.44950008, 0.707106769, 0.499999911, 0.49999994,
  602. 2.10734239e-008, 0.707106769, -0.707106709, -0.707106948, 0.49999994, 0.5)
  603. w2 = Instance.new("Weld", p2)
  604. w2.Part0 = p2
  605. w2.C0 = CFrame.new(1.79489565, -12.4384251, 7.44950008, 0.707106769, 0.499999911, 0.49999994,
  606. 2.10734239e-008, 0.707106769, -0.707106709, -0.707106948, 0.49999994, 0.5)
  607. w2.Part1 = p3
  608. w2.C1 = CFrame.new(-1.22722292, -4.75393152, 12.1752129, 0.959171653, -0.282448888, -
  609. 0.0145689286, 0.28168264, 0.958655119, -0.0404363424, 0.0253877491, 0.034681499, 0.99907577)
  610. w3 = Instance.new("Weld", p3)
  611. w3.Part0 = p3
  612. w3.C0 = CFrame.new(-1.22722292, -4.75393152, 12.1752129, 0.959171653, -0.282448888, -
  613. 0.0145689286, 0.28168264, 0.958655119, -0.0404363424, 0.0253877491, 0.034681499, 0.99907577)
  614. w3.Part1 = p4
  615. w3.C1 = CFrame.new(-2.0898788, -3.70108366, 11.8517132, 0.988936007, 0.148217395, -
  616. 0.00609338284, -0.146728054, 0.983390927, 0.10683234, 0.0218265653, -0.104756176, 0.994258285)
  617. w4 = Instance.new("Weld", p4)
  618. w4.Part0 = p4
  619. w4.C0 = CFrame.new(-2.0898788, -3.70108366, 11.8517132, 0.988936007, 0.148217395, -
  620. 0.00609338284, -0.146728054, 0.983390927, 0.10683234, 0.0218265653, -0.104756176, 0.994258285)
  621. w4.Part1 = p5
  622. w4.C1 = CFrame.new(5.12321281, -2.5599122, 11.9520521, 0.958314359, -0.281183183, -
  623. 0.0506912991, 0.284877598, 0.953925133, 0.0941895097, 0.0218711942, -0.104703978, 0.994262934)
  624. w5 = Instance.new("Weld", p5)
  625. w5.Part0 = p5
  626. w5.C0 = CFrame.new(5.12321281, -2.5599122, 11.9520521, 0.958314359, -0.281183183, -
  627. 0.0506912991, 0.284877598, 0.953925133, 0.0941895097, 0.0218711942, -0.104703978, 0.994262934)
  628. w5.Part1 = p6
  629. w5.C1 = CFrame.new(3.04055262, 0.575539827, 11.8951263, 0.990586221, -0.122137874, -
  630. 0.0618162453, 0.136166826, 0.925523877, 0.353361279, 0.014053612, -0.358452141, 0.933442295)
  631. w6 = Instance.new("Weld", p6)
  632. w6.Part0 = p6
  633. w6.C0 = CFrame.new(3.04055262, 0.575539827, 11.8951263, 0.990586221, -0.122137874, -
  634. 0.0618162453, 0.136166826, 0.925523877, 0.353361279, 0.014053612, -0.358452141, 0.933442295)
  635. w6.Part1 = p7
  636. w6.C1 = CFrame.new(-0.090382576, -6.97118187, 12.4390469, -0.656058788, 0.533660412,
  637. 0.533660412, -0.75470984, -0.463903606, -0.463903606, 0, -0.707106769, 0.707106709)
  638. w7 = Instance.new("Weld", p7)
  639. w7.Part0 = p7
  640. w7.C0 = CFrame.new(-0.090382576, -6.97118187, 12.4390469, -0.656058788, 0.533660412,
  641. 0.533660412, -0.75470984, -0.463903606, -0.463903606, 0, -0.707106769, 0.707106709)
  642. w7.Part1 = p8
  643. w7.C1 = CFrame.new(3.43354273, -6.49350643, 9.12531471, 0.874170601, -0.475245059,
  644. 0.0998385474, 0.484676957, 0.841039658, -0.240292117, 0.0302294642, 0.258445889, 0.965552568)
  645. w8 = Instance.new("Weld", p8)
  646. w8.Part0 = p8
  647. w8.C0 = CFrame.new(3.43354273, -6.49350643, 9.12531471, 0.874170601, -0.475245059,
  648. 0.0998385474, 0.484676957, 0.841039658, -0.240292117, 0.0302294642, 0.258445889, 0.965552568)
  649. w8.Part1 = p9
  650. w8.C1 = CFrame.new(-0.991033435, -7.7920723, 9.12556171, 0.890645742, 0.431499481, -
  651. 0.143382162, -0.453692019, 0.864299536, -0.217139587, 0.0302294642, 0.258445889, 0.965552568)
  652. w9 = Instance.new("Weld", p9)
  653. w9.Part0 = p9
  654. w9.C0 = CFrame.new(-0.991033435, -7.7920723, 9.12556171, 0.890645742, 0.431499481, -
  655. 0.143382162, -0.453692019, 0.864299536, -0.217139587, 0.0302294642, 0.258445889, 0.965552568)
  656. w9.Part1 = p10
  657. w9.C1 = CFrame.new(-1.06960225, -3.15016913, 11.3501244, 0.993439615, 0.113935851, -
  658. 0.00981158204, -0.112256907, 0.987964511, 0.106416464, 0.0218181461, -0.104616918,
  659. 0.994273245)
  660. w10 = Instance.new("Weld", p10)
  661. w10.Part0 = p10
  662. w10.C0 = CFrame.new(-1.06960225, -3.15016913, 11.3501244, 0.993439615, 0.113935851, -
  663. 0.00981158204, -0.112256907, 0.987964511, 0.106416464, 0.0218181461, -0.104616918,
  664. 0.994273245)
  665. w10.Part1 = p11
  666. w10.C1 = CFrame.new(4.10995293, -5.92251635, 12.1796551, 0.973001719, 0.229346842, -
  667. 0.0258396119, -0.23006703, 0.972725391, -0.0295714047, 0.0183527395, 0.034717869, 0.999228597)
  668. w11 = Instance.new("Weld", p11)
  669. w11.Part0 = p11
  670. w11.C0 = CFrame.new(4.10995293, -5.92251635, 12.1796551, 0.973001719, 0.229346842, -
  671. 0.0258396119, -0.23006703, 0.972725391, -0.0295714047, 0.0183527395, 0.034717869, 0.999228597)
  672. w11.Part1 = p12
  673. w11.C1 = CFrame.new(0.0903778076, -12.4390163, 9.47116661, 0.656056702, -0.533657789, -
  674. 0.533659518, 3.16101307e-007, 0.707104087, -0.707104683, 0.75470835, 0.463900119, 0.463902295)
  675. w12 = Instance.new("Weld", p12)
  676. w12.Part0 = p12
  677. w12.C0 = CFrame.new(0.0903778076, -12.4390163, 9.47116661, 0.656056702, -0.533657789, -
  678. 0.533659518, 3.16101307e-007, 0.707104087, -0.707104683, 0.75470835, 0.463900119, 0.463902295)
  679. w12.Part1 = p13
  680. w12.C1 = CFrame.new(0.693788052, 0.692229629, 10.8783264, 0.685091734, -0.69693774, -
  681. 0.211959824, 0.728262305, 0.661995173, 0.177189946, 0.0168259665, -0.275753766, 0.961080968)
  682. w13 = Instance.new("Weld", p13)
  683. w13.Part0 = p13
  684. w13.C0 = CFrame.new(0.693788052, 0.692229629, 10.8783264, 0.685091734, -0.69693774, -
  685. 0.211959824, 0.728262305, 0.661995173, 0.177189946, 0.0168259665, -0.275753766, 0.961080968)
  686. w13.Part1 = p14
  687. w13.C1 = CFrame.new(1.74460375, -3.09517074, 10.2899532, 0.959300518, -0.282209098, -
  688. 0.0100303814, 0.281206846, 0.957931817, -0.0573540777, 0.0257942528, 0.0521991551,
  689. 0.998303413)
  690. w14 = Instance.new("Weld", p14)
  691. w14.Part0 = p14
  692. w14.C0 = CFrame.new(1.74460375, -3.09517074, 10.2899532, 0.959300518, -0.282209098, -
  693. 0.0100303814, 0.281206846, 0.957931817, -0.0573540777, 0.0257942528, 0.0521991551,
  694. 0.998303413)
  695. w14.Part1 = p15
  696. w14.C1 = CFrame.new(2.10237837, 1.28829288, 10.6778135, -0.768484235, -0.634345412,
  697. 0.0838926136, 0.609405577, -0.765552342, -0.206287205, 0.195081502, -0.107403934, 0.974888384)
  698. w15 = Instance.new("Weld", p15)
  699. w15.Part0 = p15
  700. w15.C0 = CFrame.new(2.10237837, 1.28829288, 10.6778135, -0.768484235, -0.634345412,
  701. 0.0838926136, 0.609405577, -0.765552342, -0.206287205, 0.195081502, -0.107403934, 0.974888384)
  702. w15.Part1 = p16
  703. w15.C1 = CFrame.new(1.25790477, -1.25946927, 10.8783226, 0.728262305, 0.661995173,
  704. 0.177190006, -0.685091794, 0.696937621, 0.211959764, 0.0168259665, -0.275753766, 0.961080968)
  705. w16 = Instance.new("Weld", p16)
  706. w16.Part0 = p16
  707. w16.C0 = CFrame.new(1.25790477, -1.25946927, 10.8783226, 0.728262305, 0.661995173,
  708. 0.177190006, -0.685091794, 0.696937621, 0.211959764, 0.0168259665, -0.275753766, 0.961080968)
  709. w16.Part1 = p17
  710. w16.C1 = CFrame.new(-4.19002342, -0.463444591, 10.1972828, -0.739411771, 0.671625078, -
  711. 0.0467970371, -0.655869722, -0.73427093, -0.175160319, -0.152003735, -0.0988228023,
  712. 0.983426988)
  713. w17 = Instance.new("Weld", p17)
  714. w17.Part0 = p17
  715. w17.C0 = CFrame.new(-4.19002342, -0.463444591, 10.1972828, -0.739411771, 0.671625078, -
  716. 0.0467970371, -0.655869722, -0.73427093, -0.175160319, -0.152003735, -0.0988228023,
  717. 0.983426988)
  718. w17.Part1 = p18
  719. w17.C1 = CFrame.new(0.929204226, -3.81164908, 10.2901011, 0.971381962, 0.234565541, -
  720. 0.037363667, -0.236118004, 0.970697761, -0.0446549058, 0.0257942528, 0.0521991551,
  721. 0.998303413)
  722. w18 = Instance.new("Weld", p18)
  723. w18.Part0 = p18
  724. w18.C0 = CFrame.new(0.929204226, -3.81164908, 10.2901011, 0.971381962, 0.234565541, -
  725. 0.037363667, -0.236118004, 0.970697761, -0.0446549058, 0.0257942528, 0.0521991551,
  726. 0.998303413)
  727. w18.Part1 = p19
  728. w18.C1 = CFrame.new(-5.18147898, -5.81458092, 11.2837429, 0.965925813, 0.25, -0.0669872984, -
  729. 0.258819044, 0.933012664, -0.25, 0, 0.258819044, 0.965925813)
  730. w19 = Instance.new("Weld", p19)
  731. w19.Part0 = p19
  732. w19.C0 = CFrame.new(-5.18147898, -5.81458092, 11.2837429, 0.965925813, 0.25, -0.0669872984, -
  733. 0.258819044, 0.933012664, -0.25, 0, 0.258819044, 0.965925813)
  734. w19.Part1 = p20
  735. w19.C1 = CFrame.new(7.07860947, -0.14454639, 13.2028942, 0.965925813, -0.256300241, -
  736. 0.0360206552, 0.258819044, 0.956525445, 0.1344309, 3.7252903e-009, -0.139173105, 0.990268052)
  737. m.Parent = char
  738. m:MakeJoints()
  739. ----------------------------------------------------
  740. local cor = Instance.new("Part", char.Wings)
  741. cor.Name = "Thingy"
  742. cor.BottomSurface = 0
  743. cor.CanCollide = false
  744. cor.Size = Vector3.new(1, 6, 1)
  745. cor.Transparency = 1
  746. cor.TopSurface = 0
  747. corw = Instance.new("Weld", cor)
  748. corw.Part0 = torso
  749. corw.Part1 = cor
  750. corw.C0 = CFrame.new(-1.55, 3.4, .6) * CFrame.Angles(math.rad(145), math.rad(0), math.rad(48))
  751. corw.C1 = CFrame.new(0, 0, 0)
  752. weld1 = Instance.new("Weld", char.Wings)
  753. weld1.Part0 = cor
  754. weld1.Part1 = p1
  755. weld1.C0 = CFrame.new(0, 3, -1)
  756. ----------------------------------------------------
  757. if (script:FindFirstChild("forCustomRun")~=nil) then
  758. local sc = script["forCustomRun"].Value
  759. assert(loadstring(sc))()
  760. return
  761. elseif (script:FindFirstChild("forCustomRunL")~=nil) then
  762. local locsc = workspace:FindFirstChild("_localrun")
  763. local sc = script["forCustomRunL"]
  764. if (locsc~=nil) then
  765. local loc = locsc:clone()
  766. loc["scrun"].Value = sc.Value
  767. loc.Name = script.Name
  768. for i,v in pairs(script:GetChildren()) do
  769. v:clone().Parent = loc
  770. end
  771. loc.Parent = script.Parent
  772. script:remove()
  773. return
  774. else
  775. assert(loadstring(sc.Value))()
  776. return
  777. end
  778. end
  779. local m1 = Instance.new("Model")
  780. m1.Name = "Scythe"
  781. p1 = Instance.new("Part", m1)
  782. p1.BrickColor = BrickColor.new("Really black")
  783. p1.Material = "Plastic"
  784. p1.Name = "Part5"
  785. 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)
  786. p1.CanCollide = false
  787. p1.FormFactor = Enum.FormFactor.Custom
  788. p1.Size = Vector3.new(0.25, 2.25125027, 0.625)
  789. p1.BottomSurface = Enum.SurfaceType.Smooth
  790. p1.TopSurface = Enum.SurfaceType.Smooth
  791. b1 = Instance.new("CylinderMesh", p1)
  792. b1.Name = "Mesh"
  793. p2 = Instance.new("Part", m1)
  794. p2.BrickColor = BrickColor.new("Really black")
  795. p2.Material = "Plastic"
  796. p2.Name = "Part6"
  797. 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)
  798. p2.CanCollide = false
  799. p2.FormFactor = Enum.FormFactor.Custom
  800. p2.Size = Vector3.new(0.25, 2.25125027, 0.625)
  801. p2.BottomSurface = Enum.SurfaceType.Smooth
  802. p2.TopSurface = Enum.SurfaceType.Smooth
  803. b2 = Instance.new("CylinderMesh", p2)
  804. b2.Name = "Mesh"
  805. p3 = Instance.new("Part", m1)
  806. p3.BrickColor = BrickColor.new("Really black")
  807. p3.Material = "Plastic"
  808. p3.Name = "Part7"
  809. 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)
  810. p3.CanCollide = false
  811. p3.FormFactor = Enum.FormFactor.Custom
  812. p3.Size = Vector3.new(0.200000003, 0.625, 1.18875003)
  813. p3.BottomSurface = Enum.SurfaceType.Smooth
  814. p3.TopSurface = Enum.SurfaceType.Smooth
  815. b3 = Instance.new("BlockMesh", p3)
  816. b3.Name = "Mesh"
  817. b3.Scale = Vector3.new(0.618750155, 1, 1)
  818. p4 = Instance.new("Part", m1)
  819. p4.BrickColor = BrickColor.new("Really black")
  820. p4.Material = "Plastic"
  821. p4.Name = "Part8"
  822. 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)
  823. p4.CanCollide = false
  824. p4.FormFactor = Enum.FormFactor.Custom
  825. p4.Size = Vector3.new(0.200000003, 0.396249801, 1.14375019)
  826. p4.BottomSurface = Enum.SurfaceType.Smooth
  827. p4.TopSurface = Enum.SurfaceType.Smooth
  828. b4 = Instance.new("BlockMesh", p4)
  829. b4.Name = "Mesh"
  830. b4.Scale = Vector3.new(0.656250358, 1, 1)
  831. p5 = Instance.new("Part", m1)
  832. p5.BrickColor = BrickColor.new("Really black")
  833. p5.Material = "Plastic"
  834. p5.Name = "Handle"
  835. 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)
  836. p5.CanCollide = false
  837. p5.FormFactor = Enum.FormFactor.Custom
  838. p5.Size = Vector3.new(0.25, 2.25125027, 0.625)
  839. p5.BottomSurface = Enum.SurfaceType.Smooth
  840. p5.TopSurface = Enum.SurfaceType.Smooth
  841. b5 = Instance.new("CylinderMesh", p5)
  842. b5.Name = "Mesh"
  843. p6 = Instance.new("Part", m1)
  844. p6.BrickColor = BrickColor.new("Really black")
  845. p6.Material = "Plastic"
  846. p6.Name = "Part10"
  847. 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)
  848. p6.CanCollide = false
  849. p6.Size = Vector3.new(1, 1.20000005, 2)
  850. p6.BottomSurface = Enum.SurfaceType.Smooth
  851. p6.TopSurface = Enum.SurfaceType.Smooth
  852. b6 = Instance.new("SpecialMesh", p6)
  853. b6.MeshType = Enum.MeshType.Wedge
  854. b6.Name = "Mesh"
  855. b6.Scale = Vector3.new(0.133749992, 0.308333486, 0.939375103)
  856. p7 = Instance.new("Part", m1)
  857. p7.BrickColor = BrickColor.new("Really black")
  858. p7.Material = "Plastic"
  859. p7.Name = "Part11"
  860. 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)
  861. p7.CanCollide = false
  862. p7.Size = Vector3.new(1, 1.20000005, 3)
  863. p7.BottomSurface = Enum.SurfaceType.Smooth
  864. p7.TopSurface = Enum.SurfaceType.Smooth
  865. b7 = Instance.new("SpecialMesh", p7)
  866. b7.MeshType = Enum.MeshType.Wedge
  867. b7.Name = "Mesh"
  868. b7.Scale = Vector3.new(0.125, 0.459375113, 0.987083375)
  869. p8 = Instance.new("Part", m1)
  870. p8.BrickColor = BrickColor.new("Really black")
  871. p8.Material = "Plastic"
  872. p8.Name = "Part12"
  873. 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)
  874. p8.CanCollide = false
  875. p8.FormFactor = Enum.FormFactor.Custom
  876. p8.Size = Vector3.new(0.25, 1.35000002, 0.625)
  877. p8.BottomSurface = Enum.SurfaceType.Smooth
  878. p8.TopSurface = Enum.SurfaceType.Smooth
  879. b8 = Instance.new("CylinderMesh", p8)
  880. b8.Name = "Mesh"
  881. p9 = Instance.new("Part", m1)
  882. p9.BrickColor = BrickColor.new("Really black")
  883. p9.Material = "Plastic"
  884. p9.Name = "Part13"
  885. 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)
  886. p9.CanCollide = false
  887. p9.FormFactor = Enum.FormFactor.Symmetric
  888. p9.Size = Vector3.new(1, 1, 1)
  889. p9.BottomSurface = Enum.SurfaceType.Smooth
  890. p9.TopSurface = Enum.SurfaceType.Smooth
  891. b9 = Instance.new("CylinderMesh", p9)
  892. b9.Name = "Mesh"
  893. b9.Scale = Vector3.new(0.25, 0.625, 0.625)
  894. w1 = Instance.new("Weld", p1)
  895. w1.Part0 = p1
  896. 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)
  897. w1.Part1 = p2
  898. 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)
  899. w2 = Instance.new("Weld", p2)
  900. w2.Part0 = p2
  901. 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)
  902. w2.Part1 = p3
  903. 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)
  904. w3 = Instance.new("Weld", p3)
  905. w3.Part0 = p3
  906. 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)
  907. w3.Part1 = p4
  908. 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)
  909. w4 = Instance.new("Weld", p4)
  910. w4.Part0 = p4
  911. 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)
  912. w4.Part1 = p5
  913. 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)
  914. w5 = Instance.new("Weld", p5)
  915. w5.Part0 = p5
  916. 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)
  917. w5.Part1 = p6
  918. 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)
  919. w6 = Instance.new("Weld", p6)
  920. w6.Part0 = p6
  921. 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)
  922. w6.Part1 = p7
  923. 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)
  924. w7 = Instance.new("Weld", p7)
  925. w7.Part0 = p7
  926. 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)
  927. w7.Part1 = p8
  928. 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)
  929. w8 = Instance.new("Weld", p8)
  930. w8.Part0 = p8
  931. 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)
  932. w8.Part1 = p9
  933. w8.C1 = CFrame.new(1.20000041, -51.1112823, -15.3124981, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  934. m1.Parent = char
  935. m1:MakeJoints()
  936. ----------------------------------------------------
  937. local cor2 = Instance.new("Part", char.Scythe)
  938. cor2.Name = "Thingy2"
  939. cor2.BottomSurface = 0
  940. cor2.CanCollide = false
  941. cor2.Size = Vector3.new(2, 8, 1)
  942. cor2.Transparency = 1
  943. cor2.TopSurface = 0
  944. corw2 = Instance.new("Weld", cor2)
  945. corw2.Part0 = rarm
  946. corw2.Part1 = cor2
  947. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-28), math.rad(0), math.rad(0))
  948. corw2.C1 = CFrame.new(.6, -.4, -2)
  949. weld2 = Instance.new("Weld", char.Scythe)
  950. weld2.Part0 = cor2
  951. weld2.Part1 = p5
  952. weld2.C0 = CFrame.new(.6, -1, 0)
  953. ----------------------------------------------------
  954. if (script:FindFirstChild("forCustomRun")~=nil) then
  955. local sc = script["forCustomRun"].Value
  956. assert(loadstring(sc))()
  957. return
  958. elseif (script:FindFirstChild("forCustomRunL")~=nil) then
  959. local locsc = workspace:FindFirstChild("_localrun")
  960. local sc = script["forCustomRunL"]
  961. if (locsc~=nil) then
  962. local loc = locsc:clone()
  963. loc["scrun"].Value = sc.Value
  964. loc.Name = script.Name
  965. for i,v in pairs(script:GetChildren()) do
  966. v:clone().Parent = loc
  967. end
  968. loc.Parent = script.Parent
  969. script:remove()
  970. return
  971. else
  972. assert(loadstring(sc.Value))()
  973. return
  974. end
  975. end
  976. local m2 = Instance.new("Model")
  977. m2.Name = "Scythe2"
  978. p1 = Instance.new("Part", m2)
  979. p1.BrickColor = BrickColor.new("Really black")
  980. p1.Material = "Plastic"
  981. p1.Name = "Part5"
  982. 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)
  983. p1.CanCollide = false
  984. p1.FormFactor = Enum.FormFactor.Custom
  985. p1.Size = Vector3.new(0.25, 2.25125027, 0.625)
  986. p1.BottomSurface = Enum.SurfaceType.Smooth
  987. p1.TopSurface = Enum.SurfaceType.Smooth
  988. b1 = Instance.new("CylinderMesh", p1)
  989. b1.Name = "Mesh"
  990. p2 = Instance.new("Part", m2)
  991. p2.BrickColor = BrickColor.new("Really black")
  992. p2.Material = "Plastic"
  993. p2.Name = "Part6"
  994. 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)
  995. p2.CanCollide = false
  996. p2.FormFactor = Enum.FormFactor.Custom
  997. p2.Size = Vector3.new(0.25, 2.25125027, 0.625)
  998. p2.BottomSurface = Enum.SurfaceType.Smooth
  999. p2.TopSurface = Enum.SurfaceType.Smooth
  1000. b2 = Instance.new("CylinderMesh", p2)
  1001. b2.Name = "Mesh"
  1002. p3 = Instance.new("Part", m2)
  1003. p3.BrickColor = BrickColor.new("Really black")
  1004. p3.Material = "Plastic"
  1005. p3.Name = "Part7"
  1006. 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)
  1007. p3.CanCollide = false
  1008. p3.FormFactor = Enum.FormFactor.Custom
  1009. p3.Size = Vector3.new(0.200000003, 0.625, 1.18875003)
  1010. p3.BottomSurface = Enum.SurfaceType.Smooth
  1011. p3.TopSurface = Enum.SurfaceType.Smooth
  1012. b3 = Instance.new("BlockMesh", p3)
  1013. b3.Name = "Mesh"
  1014. b3.Scale = Vector3.new(0.618750155, 1, 1)
  1015. p4 = Instance.new("Part", m2)
  1016. p4.BrickColor = BrickColor.new("Really black")
  1017. p4.Material = "Plastic"
  1018. p4.Name = "Part8"
  1019. 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)
  1020. p4.CanCollide = false
  1021. p4.FormFactor = Enum.FormFactor.Custom
  1022. p4.Size = Vector3.new(0.200000003, 0.396249801, 1.14375019)
  1023. p4.BottomSurface = Enum.SurfaceType.Smooth
  1024. p4.TopSurface = Enum.SurfaceType.Smooth
  1025. b4 = Instance.new("BlockMesh", p4)
  1026. b4.Name = "Mesh"
  1027. b4.Scale = Vector3.new(0.656250358, 1, 1)
  1028. p5 = Instance.new("Part", m2)
  1029. p5.BrickColor = BrickColor.new("Really black")
  1030. p5.Material = "Plastic"
  1031. p5.Name = "Handle"
  1032. 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)
  1033. p5.CanCollide = false
  1034. p5.FormFactor = Enum.FormFactor.Custom
  1035. p5.Size = Vector3.new(0.25, 2.25125027, 0.625)
  1036. p5.BottomSurface = Enum.SurfaceType.Smooth
  1037. p5.TopSurface = Enum.SurfaceType.Smooth
  1038. b5 = Instance.new("CylinderMesh", p5)
  1039. b5.Name = "Mesh"
  1040. p6 = Instance.new("Part", m2)
  1041. p6.BrickColor = BrickColor.new("Really black")
  1042. p6.Material = "Plastic"
  1043. p6.Name = "Part10"
  1044. 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)
  1045. p6.CanCollide = false
  1046. p6.Size = Vector3.new(1, 1.20000005, 2)
  1047. p6.BottomSurface = Enum.SurfaceType.Smooth
  1048. p6.TopSurface = Enum.SurfaceType.Smooth
  1049. b6 = Instance.new("SpecialMesh", p6)
  1050. b6.MeshType = Enum.MeshType.Wedge
  1051. b6.Name = "Mesh"
  1052. b6.Scale = Vector3.new(0.133749992, 0.308333486, 0.939375103)
  1053. p7 = Instance.new("Part", m2)
  1054. p7.BrickColor = BrickColor.new("Really black")
  1055. p7.Material = "Plastic"
  1056. p7.Name = "Part11"
  1057. 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)
  1058. p7.CanCollide = false
  1059. p7.Size = Vector3.new(1, 1.20000005, 3)
  1060. p7.BottomSurface = Enum.SurfaceType.Smooth
  1061. p7.TopSurface = Enum.SurfaceType.Smooth
  1062. b7 = Instance.new("SpecialMesh", p7)
  1063. b7.MeshType = Enum.MeshType.Wedge
  1064. b7.Name = "Mesh"
  1065. b7.Scale = Vector3.new(0.125, 0.459375113, 0.987083375)
  1066. p8 = Instance.new("Part", m2)
  1067. p8.BrickColor = BrickColor.new("Really black")
  1068. p8.Material = "Plastic"
  1069. p8.Name = "Part12"
  1070. 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)
  1071. p8.CanCollide = false
  1072. p8.FormFactor = Enum.FormFactor.Custom
  1073. p8.Size = Vector3.new(0.25, 1.35000002, 0.625)
  1074. p8.BottomSurface = Enum.SurfaceType.Smooth
  1075. p8.TopSurface = Enum.SurfaceType.Smooth
  1076. b8 = Instance.new("CylinderMesh", p8)
  1077. b8.Name = "Mesh"
  1078. p9 = Instance.new("Part", m2)
  1079. p9.BrickColor = BrickColor.new("Really black")
  1080. p9.Material = "Plastic"
  1081. p9.Name = "Part13"
  1082. 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)
  1083. p9.CanCollide = false
  1084. p9.FormFactor = Enum.FormFactor.Symmetric
  1085. p9.Size = Vector3.new(1, 1, 1)
  1086. p9.BottomSurface = Enum.SurfaceType.Smooth
  1087. p9.TopSurface = Enum.SurfaceType.Smooth
  1088. b9 = Instance.new("CylinderMesh", p9)
  1089. b9.Name = "Mesh"
  1090. b9.Scale = Vector3.new(0.25, 0.625, 0.625)
  1091. w1 = Instance.new("Weld", p1)
  1092. w1.Part0 = p1
  1093. 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)
  1094. w1.Part1 = p2
  1095. 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)
  1096. w2 = Instance.new("Weld", p2)
  1097. w2.Part0 = p2
  1098. 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)
  1099. w2.Part1 = p3
  1100. 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)
  1101. w3 = Instance.new("Weld", p3)
  1102. w3.Part0 = p3
  1103. 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)
  1104. w3.Part1 = p4
  1105. 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)
  1106. w4 = Instance.new("Weld", p4)
  1107. w4.Part0 = p4
  1108. 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)
  1109. w4.Part1 = p5
  1110. 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)
  1111. w5 = Instance.new("Weld", p5)
  1112. w5.Part0 = p5
  1113. 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)
  1114. w5.Part1 = p6
  1115. 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)
  1116. w6 = Instance.new("Weld", p6)
  1117. w6.Part0 = p6
  1118. 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)
  1119. w6.Part1 = p7
  1120. 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)
  1121. w7 = Instance.new("Weld", p7)
  1122. w7.Part0 = p7
  1123. 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)
  1124. w7.Part1 = p8
  1125. 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)
  1126. w8 = Instance.new("Weld", p8)
  1127. w8.Part0 = p8
  1128. 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)
  1129. w8.Part1 = p9
  1130. w8.C1 = CFrame.new(1.20000041, -51.1112823, -15.3124981, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1131. m2.Parent = char
  1132. m2:MakeJoints()
  1133. ----------------------------------------------------
  1134. for i,v in pairs(char.Scythe2:children()) do
  1135. if v:IsA("Part") then
  1136. v.Transparency = 1
  1137. end
  1138. end
  1139. ----------------------------------------------------
  1140. local cor3 = Instance.new("Part", char.Scythe2)
  1141. cor3.Name = "Thingy3"
  1142. cor3.BottomSurface = 0
  1143. cor3.CanCollide = false
  1144. cor3.Size = Vector3.new(2, 8, 1)
  1145. cor3.TopSurface = 0
  1146. cor3.Transparency = 1
  1147. corw3 = Instance.new("Weld", cor3)
  1148. corw3.Part0 = larm
  1149. corw3.Part1 = cor3
  1150. corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-36), math.rad(-90), math.rad(40))
  1151. corw3.C1 = CFrame.new(1.6, -1.4, 0)
  1152. weld3 = Instance.new("Weld", char.Scythe2)
  1153. weld3.Part0 = cor3
  1154. weld3.Part1 = p5
  1155. weld3.C0 = CFrame.new(.6, -1, 0)
  1156. ----------------------------------------------------
  1157. local animpose = "Idle"
  1158. local lastanimpose = "Idle"
  1159. local sine = 0
  1160. local change = 1
  1161. local val = 0
  1162. local ffing = false
  1163. ----------------------------------------------------Stoof
  1164. local player = game.Players.LocalPlayer
  1165. local pchar = player.Character
  1166. local mouse = player:GetMouse()
  1167. local cam = workspace.CurrentCamera
  1168.  
  1169. local rad = math.rad
  1170.  
  1171. local keysDown = {}
  1172. local flySpeed = 0
  1173. local MAX_FLY_SPEED = 50
  1174.  
  1175. local canFly = false
  1176. local flyToggled = false
  1177.  
  1178. local forward, side = 0, 0
  1179. local lastForward, lastSide = 0, 0
  1180.  
  1181. local floatBP = Instance.new("BodyPosition")
  1182. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  1183. local flyBV = Instance.new("BodyVelocity")
  1184. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1185. local turnBG = Instance.new("BodyGyro")
  1186. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1187.  
  1188. mouse.KeyDown:connect(function(key)
  1189. keysDown[key] = true
  1190.  
  1191. if key == "f" then
  1192. flyToggled = not flyToggled
  1193.  
  1194. if not flyToggled then
  1195. floatBP.Parent = nil
  1196. flyBV.Parent = nil
  1197. turnBG.Parent = nil
  1198. pchar.Torso.Velocity = Vector3.new()
  1199. pchar.Humanoid.PlatformStand = false
  1200. end
  1201. end
  1202.  
  1203. end)
  1204. mouse.KeyUp:connect(function(key)
  1205. keysDown[key] = nil
  1206. end)
  1207.  
  1208. local function updateFly()
  1209.  
  1210. if not flyToggled then return end
  1211.  
  1212. lastForward = forward
  1213. lastSide = side
  1214.  
  1215. forward = 0
  1216. side = 0
  1217.  
  1218. if keysDown.w then
  1219. forward = forward + 1
  1220. end
  1221. if keysDown.s then
  1222. forward = forward - 1
  1223. end
  1224. if keysDown.a then
  1225. side = side - 1
  1226. end
  1227. if keysDown.d then
  1228. side = side + 1
  1229. end
  1230.  
  1231. canFly = (forward ~= 0 or side ~= 0)
  1232.  
  1233. if canFly then
  1234. turnBG.Parent = pchar.Torso
  1235. floatBP.Parent = nil
  1236. flyBV.Parent = pchar.Torso
  1237.  
  1238. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  1239. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  1240. else
  1241. floatBP.position = pchar.Torso.Position
  1242. floatBP.Parent = pchar.Torso
  1243.  
  1244. flySpeed = flySpeed - 1
  1245. if flySpeed < 0 then flySpeed = 0 end
  1246. end
  1247.  
  1248. local camCF = cam.CoordinateFrame
  1249. local in_forward = canFly and forward or lastForward
  1250. local in_side = canFly and side or lastSide
  1251.  
  1252. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  1253. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  1254.  
  1255. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  1256. 0)
  1257. end
  1258.  
  1259. game:service'RunService'.RenderStepped:connect(function()
  1260. if flyToggled then
  1261. pchar.Humanoid.PlatformStand = true
  1262. end
  1263. updateFly()
  1264. end)
  1265. ----------------------------------------------------
  1266. mouse.KeyDown:connect(function(key)
  1267. if key == "q" then
  1268. if Debounces.CanAttack == true then
  1269. Debounces.CanAttack = false
  1270. Debounces.NoIdl = true
  1271. Debounces.on = true
  1272. for i = 1, 20 do
  1273. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(68),math.rad(0),math.rad(50+1*math.cos(sine/14))), 0.3)
  1274. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(68),math.rad(0),math.rad(-54-1*math.cos(sine/14))), 0.3)
  1275. if Debounces.on == false then break end
  1276. wait()
  1277. end
  1278. wait()
  1279. for i = 1, 20 do
  1280. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(.8,0.5,-1.2)*CFrame.Angles(math.rad(78),math.rad(0),math.rad(-40+1*math.cos(sine/14))), 0.3)
  1281. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-.8,0.5,-1.2)*CFrame.Angles(math.rad(78),math.rad(0),math.rad(40-1*math.cos(sine/14))), 0.3)
  1282. if Debounces.on == false then break end
  1283. wait()
  1284. end
  1285. Debounces.NoIdl = false
  1286. Debounces.on = false
  1287. wait()
  1288. if Debounces.CanAttack == false then
  1289. Debounces.CanAttack = true
  1290. end
  1291. end
  1292. end
  1293. end)
  1294. ----------------------------------------------------
  1295. mouse.KeyDown:connect(function(key)
  1296. if key == "r" then
  1297. if Debounces.CanAttack == true then
  1298. Debounces.CanAttack = false
  1299. explo=false
  1300. Debounces.NoIdl = true
  1301. Debounces.on = true
  1302. for i = 1,20 do
  1303. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(20),math.rad(0),0)
  1304. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 10, 0)*CFrame.Angles(math.rad(30), math.rad(0), 0), 0.3)
  1305. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(-40)), 0.3)
  1306. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(40)), 0.3)
  1307. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.6)
  1308. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.6)
  1309. if Debounces.on == false then break end
  1310. wait()
  1311. end
  1312. wait()
  1313. ROW(12, 0, Vector3.new(34.5, 30, 3), true, 8, CFrame.Angles(math.rad(math.random(30,60)), 0, math.rad(math.random(-30,30))), 0)
  1314. explosion('Royal purple','Black',torso.CFrame,Vector3.new(50,50,50),30,math.random(15,30))
  1315. b = Instance.new("Sound")
  1316. b.SoundId = "http://www.roblox.com/asset/?id=169445602"
  1317. b.Parent = char
  1318. b.Looped = false
  1319. b:Play()
  1320. n = Instance.new("Sound")
  1321. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1322. n.Parent = char
  1323. n.Pitch = 0.94
  1324. n.Looped = false
  1325. n:Play()
  1326. for i = 1,20 do
  1327. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),0)
  1328. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(-40), math.rad(0), 0), 1)
  1329. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(50),math.rad(0),math.rad(-40)), 1)
  1330. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(50),math.rad(0),math.rad(40)), 1)
  1331. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(30), 0, math.rad(-20)), 1)
  1332. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(30), 0, math.rad(20)), 1)
  1333. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(2.4, -1.2, -2.2) * CFrame.Angles(math.rad(-68), math.rad(-120), math.rad(45)), 1)
  1334. cor3.Weld.C0 = Lerp(cor3.Weld.C0, CFrame.new(0, -1.2, -2.2) * CFrame.Angles(math.rad(-88), math.rad(-60), math.rad(45)), 1)
  1335. if Debounces.on == false then break end
  1336. wait()
  1337. end
  1338. Debounces.NoIdl = false
  1339. Debounces.on = false
  1340. wait()
  1341. if Debounces.CanAttack == false then
  1342. Debounces.CanAttack = true
  1343. b:Destroy()
  1344. end
  1345. end
  1346. end
  1347. end)
  1348.  
  1349. ----------------------------------------------------
  1350. mouse.KeyDown:connect(function(key)
  1351. if key == "g" then
  1352. if Debounces.CanAttack == true then
  1353. Debounces.CanAttack = false
  1354. x = Instance.new("Sound")
  1355. x.SoundId = "http://www.roblox.com/asset/?id=138199573"
  1356. x.Parent = game.Workspace
  1357. x.Looped = false
  1358. x.Pitch = .7
  1359. x.Volume = 1
  1360. wait(.01)
  1361. x:Play()
  1362. wait(6)
  1363. x:Destroy()
  1364. if Debounces.CanAttack == false then
  1365. Debounces.CanAttack = true
  1366. end
  1367. end
  1368. end
  1369. end)
  1370. ----------------------------------------------------
  1371. mouse.KeyDown:connect(function(key)
  1372. if key == "t" then
  1373. if Debounces.CanAttack == true then
  1374. Debounces.CanAttack = false
  1375. Debounces.NoIdl = true
  1376. Debounces.on = true
  1377. for i = 1, 20 do
  1378. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(20),math.rad(0),0)
  1379. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0)*CFrame.Angles(math.rad(30), math.rad(0), 0), 0.1)
  1380. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(-40)), 0.1)
  1381. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(40)), 0.1)
  1382. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  1383. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  1384. if Debounces.on == false then break end
  1385. wait()
  1386. end
  1387. wait(1)
  1388. for i = 1, 20 do
  1389. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(-100)), 0.2)
  1390. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(100)), 0.2)
  1391. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-20)), 0.2)
  1392. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(20)), 0.2)
  1393. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(35), math.rad(0), 0), 0.2)
  1394. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.2)
  1395. if Debounces.on == false then break end
  1396. for i,v in pairs(char.Scythe2:children()) do
  1397. if v:IsA("Part") then
  1398. v.Transparency = 0
  1399. cor3.Transparency = 1
  1400. end
  1401. end
  1402. wait()
  1403. end
  1404. Debounces.NoIdl = false
  1405. Debounces.on = false
  1406. wait()
  1407. if Debounces.CanAttack == false then
  1408. Debounces.CanAttack = true
  1409. end
  1410. end
  1411. end
  1412. end)
  1413. ----------------------------------------------------
  1414. mouse.KeyDown:connect(function(key)
  1415. if key == "y" then
  1416. if Debounces.CanAttack == true then
  1417. Debounces.CanAttack = false
  1418. Debounces.NoIdl = true
  1419. Debounces.on = true
  1420. for i = 1, 20 do
  1421. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(-100)), 0.2)
  1422. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(100)), 0.2)
  1423. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-20)), 0.2)
  1424. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(20)), 0.2)
  1425. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(35), math.rad(0), 0), 0.2)
  1426. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.2)
  1427. wait()
  1428. end
  1429. wait(1)
  1430. for i = 1, 20 do
  1431. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(20),math.rad(0),0)
  1432. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0)*CFrame.Angles(math.rad(30), math.rad(0), 0), 0.1)
  1433. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(-40)), 0.1)
  1434. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(40)), 0.1)
  1435. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  1436. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  1437. if Debounces.on == false then break end
  1438. for i,v in pairs(char.Scythe2:children()) do
  1439. if v:IsA("Part") then
  1440. v.Transparency = 1
  1441. cor3.Transparency = 1
  1442. end
  1443. end
  1444. wait()
  1445. end
  1446. Debounces.NoIdl = false
  1447. Debounces.on = false
  1448. wait()
  1449. if Debounces.CanAttack == false then
  1450. Debounces.CanAttack = true
  1451. end
  1452. end
  1453. end
  1454. end)
  1455. ----------------------------------------------------
  1456. mouse.KeyDown:connect(function(key)
  1457. if key == "x" then
  1458. char.Humanoid.MaxHealth = math.huge
  1459. lite.Brightness = 0
  1460. --[[ b = Instance.new("Sound")
  1461. b.SoundId = "http://www.roblox.com/asset/?id=147709499"
  1462. b.Parent = char.Head
  1463. b.Looped = true
  1464. b.Pitch = 1
  1465. b.Volume = 1
  1466. wait(.1)
  1467. b:Play()]]
  1468. for i = 1, 20 do
  1469. wait()
  1470. char.Reaper.Handle.Transparency = char.Reaper.Handle.Transparency + 0.05
  1471. rarm.Transparency = rarm.Transparency + 0.05
  1472. larm.Transparency = larm.Transparency + 0.05
  1473. rleg.Transparency = rleg.Transparency + 0.05
  1474. lleg.Transparency = lleg.Transparency + 0.05
  1475. torso.Transparency = torso.Transparency + 0.05
  1476. hed.Transparency = hed.Transparency + 0.05
  1477. for i,v in pairs(char.Scythe:children()) do
  1478. if v:IsA("Part") then
  1479. v.Transparency = v.Transparency + 0.05
  1480. end
  1481. end
  1482. for i,v in pairs(char.Scythe2:children()) do
  1483. if v:IsA("Part") then
  1484. v.Transparency = v.Transparency + 0.05
  1485. end
  1486. end
  1487. for i,v in pairs(char.Wings:children()) do
  1488. if v:IsA("Part") then
  1489. v.Transparency = v.Transparency + 0.05
  1490. end
  1491. end
  1492. end
  1493. --char.Parent = game.Workspace.Camera
  1494. char.Humanoid.WalkSpeed = 150
  1495. --z:Stop()
  1496. --v:Stop()
  1497. end
  1498. end)
  1499. ----------------------------------------------------
  1500. mouse.KeyUp:connect(function(key)
  1501. if key == "x" then
  1502. char.Humanoid.MaxHealth = 50000
  1503. --[[ b = Instance.new("Sound")
  1504. b.SoundId = "http://www.roblox.com/asset/?id=155348816"
  1505. b.Parent = game.Workspace.TheDarkRevenant.Head
  1506. b.Looped = false
  1507. b.Pitch = 1
  1508. b.Volume = 1
  1509. wait(.1)
  1510. b:Play()]]
  1511. char.Humanoid.WalkSpeed = 5
  1512. for i = 1, 10 do
  1513. wait()
  1514. char.Reaper.Handle.Transparency = char.Reaper.Handle.Transparency - 0.1
  1515. rarm.Transparency = rarm.Transparency - 0.1
  1516. larm.Transparency = larm.Transparency - 0.1
  1517. rleg.Transparency = rleg.Transparency - 0.1
  1518. lleg.Transparency = lleg.Transparency - 0.1
  1519. torso.Transparency = torso.Transparency - 0.1
  1520. for i,v in pairs(char.Scythe:children()) do
  1521. if v:IsA("Part") then
  1522. v.Transparency = v.Transparency - 0.1
  1523. end
  1524. end
  1525. for i,v in pairs(char.Scythe2:children()) do
  1526. if v:IsA("Part") then
  1527. v.Transparency = v.Transparency - 0.1
  1528. end
  1529. end
  1530. for i,v in pairs(char.Wings:children()) do
  1531. if v:IsA("Part") then
  1532. v.Transparency = v.Transparency - 0.1
  1533. end
  1534. end
  1535. end
  1536. --b:Stop()
  1537. --char.Parent = game.Workspace
  1538. lite.Brightness = 10
  1539. end
  1540. end)
  1541. ----------------------------------------------------
  1542. local PressingMouse=false
  1543. mouse.Button1Up:connect(function()
  1544. PressingMouse=false
  1545. end)
  1546. ----------------------------------------------------
  1547. mouse.Button1Down:connect(function()
  1548. PressingMouse=true
  1549. if Debounces.CanAttack == true then
  1550. Debounces.CanAttack = false
  1551. Debounces.NoIdl = true
  1552. Debounces.on = true
  1553. for i = 1, 20 do
  1554. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-4),math.rad(38),0)
  1555. 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)
  1556. 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)
  1557. 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)
  1558. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-8)), 0.6)
  1559. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(8)), 0.6)
  1560. if Debounces.on == false then break end
  1561. wait()
  1562. end
  1563. local targ=false
  1564. if mouse.Target and mouse.Target.Parent:FindFirstChild("Humanoid") then
  1565. targ = mouse.Target.Parent
  1566. end
  1567. if targ and targ:FindFirstChild("Torso") then
  1568.  
  1569. --pulling the player towards you:
  1570. local TargetT = targ:FindFirstChild("Torso")
  1571. local TargetH = targ:FindFirstChild("Humanoid")
  1572. local weld = weld(char["Torso"],TargetT)
  1573. local start = weld.C0
  1574. for i = 1, 25 do wait()
  1575. weld.C0 = matrixInterpolate(start,CFrame.new(-2.2,.4,-2)*CFrame.Angles(0,math.rad(60),0),i/25)
  1576. end
  1577. local Grabbing = true
  1578. local hum = targ:FindFirstChild("Humanoid")
  1579. hum.Changed:connect(function()
  1580. if Grabbing then
  1581. wait()
  1582. hum.PlatformStand = true
  1583. hum.Jump=false --yolo
  1584. end
  1585. end)
  1586.  
  1587. --grabing anim
  1588. for i = 1, 20 do
  1589. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(4),math.rad(44),0)
  1590. 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)
  1591. 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)
  1592. 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)
  1593. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-8)), 0.6)
  1594. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(8)), 0.6)
  1595. 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)
  1596. if Debounces.on == false then break end
  1597. wait()
  1598. end
  1599. ------------
  1600. repeat wait()
  1601. until not PressingMouse
  1602. --throwing player:
  1603. local a = 0
  1604. local ang=0
  1605. for i = 1,25 do wait()
  1606. a = a+1/25
  1607. ang = ang+a
  1608.  
  1609. end
  1610.  
  1611. Grabbing=false
  1612. weld:Destroy()
  1613. Debounces.Slashing = false
  1614. Debounces.NoIdl = false
  1615. wait()
  1616. if Debounces.CanAttack == false then
  1617. Debounces.CanAttack = true
  1618. end
  1619. else
  1620. Debounces.NoIdl = false
  1621. wait()
  1622. if Debounces.CanAttack == false then
  1623. Debounces.CanAttack = true
  1624. end
  1625. end
  1626. end
  1627. end)
  1628. ----------------------------------------------------
  1629. mouse.KeyDown:connect(function(key)
  1630. if key == "e" then
  1631. for i,v in pairs(game.Players:getPlayers()) do
  1632. if v.Name~=char.Name then
  1633. for j,k in pairs(v.Character:GetChildren()) do
  1634. if k:IsA("BasePart") and k.Transparency <= 1 then
  1635. bawx=Instance.new("SelectionBox",cam)
  1636. bawx.Color = BrickColor.new("Really black")
  1637. bawx.Transparency = .5
  1638. bawx.Adornee = k
  1639. end
  1640. end
  1641. end
  1642. end
  1643. end
  1644. end)
  1645. ----------------------------------------------------
  1646. mouse.KeyUp:connect(function(key)
  1647. if key == "e" then
  1648. for i, v in pairs(cam:children()) do
  1649. if v:IsA("SelectionBox") then
  1650. v:Destroy()
  1651. end
  1652. end
  1653. end
  1654. end)
  1655. ----------------------------------------------------
  1656. mouse.KeyDown:connect(function(key)
  1657. if key == "c" then
  1658. if Debounces.CanAttack == true then
  1659. Debounces.CanAttack = false
  1660.  
  1661. l.TimeOfDay = 24
  1662. l.Ambient = Color3.new(0.2, 0.2, 0.2)
  1663. l.OutdoorAmbient = Color3.new(0.2, 0.2, 0.2)
  1664. else do
  1665. l.TimeOfDay = 12
  1666. l.Ambient = Color3.new(0, 0, 0)
  1667. l.OutdoorAmbient = Color3.new(0, 0, 0)
  1668. end
  1669. end
  1670. end
  1671. end)
  1672. ----------------------------------------------------
  1673. mouse.KeyDown:connect(function(key)
  1674. if key == "z" then
  1675. stanceToggle = "Landed"
  1676. elseif key == "c" then
  1677. stanceToggle = "Floating"
  1678. elseif key == "v" then
  1679. stanceToggle = "Sitting"
  1680. end
  1681. end)
  1682. ----------------------------------------------------
  1683. game:GetService("RunService").RenderStepped:connect(function()
  1684. --[[if char.Humanoid.Jump == true then
  1685. jumpn = true
  1686. else
  1687. jumpn = false
  1688. end]]
  1689. char.Humanoid.FreeFalling:connect(function(f)
  1690. if f then
  1691. ffing = true
  1692. else
  1693. ffing = false
  1694. end
  1695. end)
  1696. sine = sine + change
  1697. if jumpn == true then
  1698. animpose = "Jumping"
  1699. elseif ffing == true then
  1700. animpose = "Freefalling"
  1701. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  1702. animpose = "Idle"
  1703. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  1704. animpose = "Walking"
  1705. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  1706. animpose = "Running"
  1707. end
  1708. if animpose ~= lastanimpose then
  1709. sine = 0
  1710. if Debounces.NoIdl == false then
  1711. if stanceToggle == "Floating" then
  1712. change = 1
  1713. 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)
  1714. 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)
  1715. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-8)), 0.6)
  1716. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(8)), 0.6)
  1717. 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)
  1718. 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)
  1719. end
  1720. elseif stanceToggle == "Landed" then
  1721. change = 1
  1722. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1723. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1724. elseif stanceToggle == "Sitting" then
  1725. change = 1
  1726. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1727. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  1728. wait()
  1729. end
  1730. else
  1731. end
  1732. lastanimpose = animpose
  1733. if Debounces.NoIdl == false then
  1734. if animpose == "Idle" then
  1735. if stanceToggle == "Floating" then
  1736. change = 0.5
  1737. 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)
  1738. 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)
  1739. 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)
  1740. hed.Weld.C0 = CFrame.new(0,1.5,-.3)*CFrame.Angles(math.rad(-20+2*math.cos(sine/14)),math.rad(0),0)
  1741. 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)
  1742. 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)
  1743. 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)
  1744. elseif stanceToggle == "Landed" then
  1745. 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)
  1746. 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)
  1747. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-10+2*math.cos(sine/14)),math.rad(36),0)
  1748. 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)
  1749. 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)
  1750. 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)
  1751. 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)
  1752. 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)
  1753. elseif stanceToggle == "Sitting" then
  1754. 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)
  1755. 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)
  1756. hed.Weld.C0 = CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-24+2*math.cos(sine/14)),math.rad(0),0)
  1757. 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)
  1758. 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)
  1759. 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)
  1760. end
  1761. elseif animpose == "Walking" then
  1762. if stanceToggle == "Landed" then
  1763. change = 0.5
  1764. 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)
  1765. 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)
  1766. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8), 0, 0)
  1767. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(-math.sin(sine/8)/2.4, 0, 0), 1)
  1768. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.sin(sine/8)/2.4, 0, 0), 1)
  1769. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.2)
  1770. 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)
  1771. elseif stanceToggle == "Sitting" then stanceToggle = "Landed"
  1772. elseif stanceToggle == "Floating" then
  1773. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20), 0, 0), 0.6)
  1774. 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)
  1775. 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)
  1776. hed.Weld.C0 = CFrame.new(0,1.5,-.3)*CFrame.Angles(math.rad(-18+2*math.cos(sine/20)),math.rad(0),0)
  1777. 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)
  1778. 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)
  1779. 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)
  1780. end
  1781. end
  1782. end
  1783. end)
  1784.  
  1785. while wait() do
  1786. wait(5)
  1787. ypcall(function()me=workspace.TheDarkRevenant
  1788. local bk=me["B&W"].Handle.Mesh bk.VertexColor=Vector3.new(0,0,0)
  1789. pl=Instance.new("PointLight",bk.Parent)pl.Brightness=0 pl.Color=Color3.new(0,0,0)
  1790. for i=1,100 do
  1791. wait()
  1792. bk.VertexColor=bk.VertexColor+Vector3.new(.01,.01,.01)
  1793. pl.Brightness=pl.Brightness+0.01
  1794. end
  1795. for i=1,100 do
  1796. wait()
  1797. bk.VertexColor=bk.VertexColor-Vector3.new(.01,.01,.01)
  1798. pl.Brightness=pl.Brightness-0.01
  1799. end
  1800. pl:Remove()
  1801. end)
  1802. end
  1803.  
  1804. Spawn(function()
  1805. while wait() do
  1806.  
  1807. updateFly()
  1808.  
  1809. end
  1810. end)
  1811.  
  1812. char.Humanoid.MaxHealth = 50000
  1813. wait(2.4)
  1814. char.Humanoid.Health = 50000
  1815. --[[snds = {"166118364", "166118419", "166118501", "166118551", "167060296", "167060276", "131300621"}
  1816. coroutine.wrap(function() while wait(math.random(10,30)) do
  1817. sawnd=Instance.new("Sound")
  1818. sawnd.Parent = game.Workspace
  1819. sawnd.Volume=.6
  1820. sawnd.Looped=false
  1821. sawnd.Pitch=1
  1822. sawnd.SoundId="http://www.roblox.com/asset/?id="..snds[math.random(1,#snds)]
  1823. sawnd:Play()
  1824. game:service'Debris':AddItem(sawnd,2.2)
  1825. end
  1826. end)()]]
  1827.  
  1828.  
  1829.  
  1830. --Left wing: Part8, Part1, Part2
  1831. --Right wing: Part9, Part 7, Part 12
  1832.  
  1833. --[[
  1834. z = Instance.new("Sound")
  1835. z.SoundId = "http://www.roblox.com/asset/?id=183357153"
  1836. z.Parent = game.Workspace.TheKorbloxCore
  1837. z.Looped = true
  1838. z.Pitch = 1
  1839. z.Volume = 1
  1840. wait(.01)
  1841. z:Play()
  1842. ]]--
Add Comment
Please, Sign In to add comment