-----------------

galaxy titan (fe)

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