Advertisement
Orangeplayer1431

DNAK

Nov 15th, 2017
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 374.62 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.  
  153. local you = game.Players.LocalPlayer
  154. local char = you.Character
  155. local mouse = you:GetMouse()
  156. local firing = false
  157.  
  158. local m = Instance.new("Model",char)
  159. local illum = Instance.new("Part",m)
  160. illum.CanCollide = false
  161. illum.BottomSurface = "Smooth"
  162. illum.TopSurface = "Smooth"
  163. illum.Size = Vector3.new(0.2, 0.2, 0.2)
  164. illum.Anchored = true
  165.  
  166. local s = Instance.new("Sound",m)
  167. s.SoundId = "rbxassetid://"
  168. s.Volume = 0.8
  169. s.Looped = true
  170. s:Play()
  171. local SP = Instance.new("SpecialMesh",illum)
  172. SP.MeshId = "rbxassetid://438530093"
  173. SP.TextureId = "rbxassetid://438530120"
  174. SP.Scale = Vector3.new(0.2, 0.2, 0.2)
  175. SP.Offset = Vector3.new(0.5, 8, 0.03)
  176.  
  177.  
  178. local MousePart = Instance.new("Part",m)
  179. MousePart.CanCollide = false
  180. MousePart.BottomSurface = "Smooth"
  181. MousePart.TopSurface = "Smooth"
  182. MousePart.Size = Vector3.new(0.2, 0.2, 0.2)
  183. MousePart.Anchored = true
  184.  
  185.  
  186. local TipPart = Instance.new("Part",m)
  187. TipPart.CanCollide = false
  188. TipPart.BottomSurface = "Smooth"
  189. TipPart.TopSurface = "Smooth"
  190. TipPart.BrickColor = BrickColor.new("Lime green")
  191. TipPart.Material = "Neon"
  192. TipPart.FormFactor = "Custom"
  193. TipPart.Shape = "Ball"
  194. TipPart.Size = Vector3.new(2, 2, 2)
  195. TipPart.Anchored = true
  196. TipPart.Locked = true
  197. TipPart.CanCollide = false
  198. TipPart.Transparency = 0.5
  199.  
  200. local PE1 = Instance.new("ParticleEmitter",TipPart) -- dorritoes
  201. PE1.Texture = "rbxassetid://686815657"
  202. PE1.LightEmission = 0.3
  203. PE1.Acceleration = Vector3.new(0,-2,0)
  204. PE1.Lifetime = NumberRange.new(5,7)
  205. PE1.Speed = NumberRange.new(3,5)
  206. PE1.Rate = 30
  207. PE1.VelocitySpread = 50
  208.  
  209. local PE2 = Instance.new("ParticleEmitter",TipPart) --illuminati
  210. PE2.Texture = "rbxassetid://686815657"
  211. PE2.LightEmission = 1
  212. PE2.Acceleration = Vector3.new(0,-2,0)
  213. PE2.Lifetime = NumberRange.new(5,7)
  214. PE2.Speed = NumberRange.new(3,5)
  215. PE2.Rate = 10
  216. PE2.VelocitySpread = 50
  217.  
  218. local PE3 = Instance.new("ParticleEmitter",TipPart) --HitMarkers
  219. PE3.Texture = "rbxassetid://686815657"
  220. PE3.LightEmission = 1
  221. PE3.Acceleration = Vector3.new(0,-2,0)
  222. PE3.Lifetime = NumberRange.new(5,7)
  223. PE3.Speed = NumberRange.new(3,5)
  224. PE3.Rate = 10
  225. PE3.VelocitySpread = 50
  226.  
  227. local PE4 = Instance.new("ParticleEmitter",MousePart) -- dorritoes
  228. PE4.Texture = "rbxassetid://484383135"
  229. PE4.Acceleration = Vector3.new(0,-10,0)
  230. PE4.Lifetime = NumberRange.new(2,4)
  231. PE4.Speed = NumberRange.new(8,10)
  232. PE4.Rate = 100
  233. PE4.VelocitySpread = 50
  234.  
  235. local PE5 = Instance.new("ParticleEmitter",MousePart) --illuminati
  236. PE5.Texture = "rbxassetid://686815657"
  237. PE5.Acceleration = Vector3.new(0,-10,0)
  238. PE5.Lifetime = NumberRange.new(2,4)
  239. PE5.Speed = NumberRange.new(8,10)
  240. PE5.Rate = 100
  241. PE5.VelocitySpread = 50
  242.  
  243. local PE6 = Instance.new("ParticleEmitter",MousePart) --HitMarkers
  244. PE6.Texture = "rbxassetid://644165701"
  245. PE6.Acceleration = Vector3.new(0,-10,0)
  246. PE6.Lifetime = NumberRange.new(2,4)
  247. PE6.Speed = NumberRange.new(8,10)
  248. PE6.Rate = 100
  249. PE6.VelocitySpread = 50
  250.  
  251. PE1.Enabled = false
  252. PE2.Enabled = false
  253. PE3.Enabled = false
  254. PE4.Enabled = false
  255. PE5.Enabled = false
  256. PE6.Enabled = false
  257.  
  258. function drawlazer(p1,p2)
  259. part = Instance.new("Part", m)
  260. part.Name = "Location"
  261. part.BottomSurface = 0
  262. part.TopSurface = 0
  263. part.BrickColor = BrickColor.new("Lime green")
  264. part.Material = "Neon"
  265. part.FormFactor = "Custom"
  266. part.Shape = "Ball"
  267. part.Size = Vector3.new(4, 4, 4)
  268. part.Anchored = true
  269. part.Locked = true
  270. part.CanCollide = false
  271. part.Transparency = 0.5
  272. part.CFrame = CFrame.new(p1.Position.x,p1.Position.y,p1.Position.z)
  273.  
  274. obj = part
  275. local lastPos = obj.CFrame.p
  276. objC = obj:Clone()
  277. objC.Name = "Line"
  278. objC.Parent = m
  279. objC.Shape = "Ball"
  280. objC.Anchored = true
  281. local distance = (p2.Position- obj.CFrame.p).magnitude
  282. objC.Size = Vector3.new(10,10,distance)
  283. objC.CFrame = CFrame.new(p2.Position,obj.Position)*CFrame.new(0,0,-distance/2)
  284. lastPos = obj.CFrame.p
  285. objCC1 = objC:Clone()
  286. objCC1.Parent = objC
  287. objCC1.CFrame = CFrame.new(p2.Position,obj.Position)*CFrame.new(0,0,-distance/2.5)
  288. objCC1.Size = Vector3.new(4,4,distance/2)
  289. objCC1.Name = "LineC1"
  290.  
  291. objCC2 = objC:Clone()
  292. objCC2.Parent = objC
  293. objCC2.CFrame = CFrame.new(p2.Position,obj.Position)*CFrame.new(0,0,-distance/1.5)
  294. objCC2.Size = Vector3.new(4,4,distance/2)
  295. objCC2.Name = "LineC2"
  296. objCC2:ClearAllChildren()
  297.  
  298. end
  299.  
  300. function drawlazer2(p1,p2)
  301. part = m:FindFirstChild("Location")
  302. part.CFrame = CFrame.new(p1.Position.x,p1.Position.y,p1.Position.z)
  303. obj = part
  304. local distance = (p2.Position- obj.CFrame.p).magnitude
  305. objC = m.Line:Clone()
  306. objC.Name = "Line2"
  307. objC.Parent = m
  308. objC.Size = Vector3.new(4,4,distance)
  309. objC.CFrame = CFrame.new(p2.Position,obj.Position)*CFrame.new(0,0,-distance/2)
  310.  
  311. objCC1 = objC.LineC1
  312.  
  313. objCC1.CFrame = CFrame.new(p2.Position,obj.Position)*CFrame.new(0,0,-distance/2.5)
  314. objCC1.Size = Vector3.new(4,4,distance/2)
  315.  
  316.  
  317. objCC2 = objC.LineC2
  318.  
  319. objCC2.CFrame = CFrame.new(p2.Position,obj.Position)*CFrame.new(0,0,-distance/1.5)
  320. objCC2.Size = Vector3.new(4,4,distance/2)
  321.  
  322.  
  323. m.Line:remove()
  324.  
  325. objC.Name = "Line"
  326. for _,v in pairs(game.Players:GetPlayers()) do
  327.  
  328. if v ~= you then
  329. local d = (part.Position- v.Character:WaitForChild("Torso").CFrame.p).magnitude
  330. if d <= 5 then
  331. v.Character:FindFirstChildOfClass("Humanoid"):TakeDamage(5)
  332. end
  333. end
  334. --wait()
  335. end
  336.  
  337. end
  338.  
  339.  
  340. function despawn1(part1,part2,length)
  341.  
  342. for i = 10,1,-1 do
  343.  
  344. part1.Transparency = part1.Transparency + 0.1
  345. part1.Size = part1.Size + Vector3.new(0.2,0.2,length)
  346. part1.Size = Vector3.new(part1.Size.X,part1.Size.Y,length)
  347.  
  348. wait(0.01)
  349. end
  350. part1:remove()
  351.  
  352. for i = 10,1,-1 do
  353.  
  354. part2.Transparency = part2.Transparency + 0.1
  355.  
  356. wait(0.01)
  357. end
  358. part2:remove()
  359.  
  360. end
  361.  
  362. function despawn2(part1,length)
  363.  
  364. for i = 10,1,-1 do
  365.  
  366. part1.Transparency = part1.Transparency + 0.1
  367. part1.Size = part1.Size + Vector3.new(0.2,0,length)
  368. part1.Size = Vector3.new(part1.Size.X,part1.Size.Y,length)
  369.  
  370. wait(0.01)
  371. end
  372. part1:remove()
  373. end
  374.  
  375.  
  376.  
  377. function snipe(T)
  378.  
  379. part = Instance.new("Part", m)
  380. part.Name = "Sniper"
  381. part.BottomSurface = 0
  382. part.TopSurface = 0
  383. part.BrickColor = BrickColor.new("Really black")
  384. part.Material = "Neon"
  385. part.FormFactor = "Custom"
  386. part.Size = Vector3.new(1, 1, 3)
  387. part.Anchored = true
  388. part.Locked = true
  389. part.CanCollide = false
  390. part.Transparency = 0
  391.  
  392. local SP = Instance.new("SpecialMesh",part)
  393. SP.MeshId = "rbxassetid://685827900"
  394. SP.Scale = Vector3.new(0.05, 0.05, 0.05)
  395. SP.Offset = Vector3.new(0, -0.3, 3.05)
  396.  
  397. local S=part
  398.  
  399. part.Position = char.Torso.Position + Vector3.new(math.random(-5,5),math.random(3,8),math.random(-5,5))
  400. part.CFrame = CFrame.new(part.Position,T.Position)
  401.  
  402.  
  403. obj = part
  404. local lastPos = obj.CFrame.p
  405. objC = obj:Clone()
  406. objC.Mesh:remove()
  407. wait(0.05)
  408. objC.Parent = part
  409. objC.Shape = "Ball"
  410. objC.FormFactor = "Custom"
  411. objC.Anchored = true
  412. objC.BrickColor = BrickColor.new("New Yeller")
  413. local distance = (T.Position- obj.CFrame.p).magnitude
  414. objC.Size = Vector3.new(0.2,0.2,distance)
  415. objC.CFrame = CFrame.new(T.Position,obj.Position)*CFrame.new(0,0,-distance/2)
  416. local s = Instance.new("Sound",part)
  417. s.SoundId = "rbxassetid://680140087"
  418. s.Volume = 1
  419. s.PlayOnRemove = true
  420. s:remove()
  421. despawn1(objC,part,distance)
  422. if mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil then
  423. mouse.Target.Parent:FindFirstChildOfClass("Humanoid"):TakeDamage(20)
  424. local PETemp = Instance.new("ParticleEmitter",mouse.Target) --HitMarkers
  425. PETemp.Texture = "rbxassetid://644165701"
  426. PETemp.Acceleration = Vector3.new(0,-10,0)
  427. PETemp.Lifetime = NumberRange.new(2,4)
  428. PETemp.Speed = NumberRange.new(8,10)
  429. PETemp.Rate = 100
  430. PETemp.VelocitySpread = 50
  431. PETemp.Enabled = true
  432. wait(0.1)
  433. PETemp.Enabled = false
  434. end
  435. end
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442. function ThrowDorito(a,b)
  443. if m:FindFirstChild("Throw") == nil then
  444. local animation=Instance.new("Animation",char:FindFirstChildOfClass("Humanoid"))
  445. animation.Name="Throw"
  446. animation.AnimationId="http://www.roblox.com/asset/?id=207107855"
  447. anim=char:FindFirstChildOfClass("Humanoid"):LoadAnimation(animation)
  448. anim:Play()
  449. else
  450. local animation=char:FindFirstChildOfClass("Humanoid").Throw
  451. anim=char:FindFirstChildOfClass("Humanoid"):LoadAnimation(animation)
  452. anim:Play()
  453. end
  454.  
  455. part = Instance.new("Part", m)
  456. part.Name = "Dorito"
  457. part.BottomSurface = 0
  458. part.TopSurface = 0
  459. part.BrickColor = BrickColor.new("Neon orange")
  460. part.Material = "Neon"
  461. part.FormFactor = "Custom"
  462. part.Shape = "Ball"
  463. part.Size = Vector3.new(1,0.2,1)
  464. part.Anchored = true
  465. part.Locked = true
  466. part.CanCollide = false
  467. part.Transparency = 0
  468. part.CFrame = CFrame.new(a.Position.x,a.Position.y,a.Position.z)
  469. local SP = Instance.new("SpecialMesh",part)
  470. SP.MeshId = "rbxassetid://627995517"
  471. SP.Scale = Vector3.new(1, 1, 1)
  472.  
  473.  
  474. obj = part
  475. local lastPos = obj.CFrame.p
  476. objC = obj:Clone()
  477. objC.Name = "DoritoTrail"
  478. objC.Mesh:remove()
  479. objC.Parent = m
  480. objC.FormFactor = "Custom"
  481. objC.Anchored = true
  482. objC.Transparency = 0.5
  483. objC.BrickColor = BrickColor.new("CGA brown")
  484.  
  485. local distance = (b.Position- obj.CFrame.p).magnitude
  486. objC.Size = Vector3.new(1,0.2,distance)
  487. objC.CFrame = CFrame.new(b.Position,obj.Position)*CFrame.new(0,0,-distance/2)
  488. lastPos = obj.CFrame.p
  489. obj.CFrame = CFrame.new(b.Position,obj.Position)*CFrame.new(0,0,-distance)
  490. obj.CFrame = obj.CFrame * CFrame.fromEulerAnglesXYZ(0,math.random(1,99),0)
  491. objC.Size = Vector3.new(1,0.2,distance)
  492. print(distance)
  493. local target = mouse.Target
  494. local weld = Instance.new("ManualWeld")
  495. weld.Part0 = part
  496. weld.Part1 = target
  497. weld.C0 = CFrame.new()
  498. weld.C1 = target.CFrame:inverse() * part.CFrame
  499. weld.Parent = part
  500. part.Anchored = false
  501. if target.Parent:FindFirstChildOfClass("Humanoid") ~= nil then
  502. target.Parent:FindFirstChildOfClass("Humanoid"):TakeDamage(5)
  503. end
  504. despawn2(objC,distance)
  505. end
  506.  
  507.  
  508.  
  509.  
  510.  
  511.  
  512.  
  513.  
  514.  
  515. function shoot()
  516. print("FIRE!")
  517. TipPart.Transparency = 0.5
  518. if m:FindFirstChild("Line") == nil then
  519.  
  520. drawlazer(MousePart,TipPart)
  521. else
  522. drawlazer2(MousePart,TipPart)
  523. end
  524. local s = Instance.new("Sound",TipPart)
  525. s.SoundId = "rbxassetid://705502934"
  526. s.Volume = 2.5
  527. s.PlayOnRemove = true
  528. s:remove()
  529. wait()
  530. end
  531.  
  532. --.KEYS....KEYS....KEYSKEYSKEYS....KEYS....KEYS....KEYSKEYSKEYS......--
  533. --.KEYS....KEYS....KEYSKEYSKEYS....KEYS....KEYS..KEYSKEYS..KEYSKEYS..--
  534. --.KEYS..KEYS......KEYS..............KEYSKEYS...KEYS...........KEYS..--
  535. --.KEYS..KEYS......KEYS..............KEYSKEYS...KEYSKEYS.............--
  536. --.KEYSKEYS........KEYSKEYS............KEYS........KEYSKEYS..........--
  537. --.KEYSKEYS........KEYSKEYS............KEYS............KEYSKEYS......--
  538. --.KEYS..KEYS......KEYS..............KEYS..................KEYSKEYS..--
  539. --.KEYS..KEYS......KEYS..............KEYS.......KEYS...........KEYS..--
  540. --.KEYS....KEYS....KEYSKEYSKEYS....KEYS.........KEYSKEYS..KEYSKEYS...--
  541. --.KEYS....KEYS....KEYSKEYSKEYS....KEYS............KEYSKEYSKEYS......--
  542. mouse.Button1Up:connect(function()
  543. firing = false
  544. print("Stop")
  545. PE1.Enabled = false
  546. PE2.Enabled = false
  547. PE3.Enabled = false
  548. PE4.Enabled = false
  549. PE5.Enabled = false
  550. PE6.Enabled = false
  551. if m:FindFirstChild("Line") ~= nil then
  552. m.Line:remove()
  553. m.Location:remove()
  554. end
  555. TipPart.Transparency = 1
  556. repeat illum.CFrame = illum.CFrame * CFrame.fromEulerAnglesXYZ(0,0.05,0) illum.Position = char.Torso.Position + Vector3.new(0,.01,0) if m:FindFirstChild("Line") ~= nil then m:FindFirstChild("Line"):remove() end if m:FindFirstChild("Location") ~= nil then m:FindFirstChild("Location"):remove() end wait()
  557. until firing == true
  558. end)
  559.  
  560. mouse.Button1Down:connect(function()
  561. firing = true
  562. PE1.Enabled = true
  563. --PE2.Enabled = true
  564. --PE3.Enabled = true
  565. PE4.Enabled = true
  566. PE5.Enabled = true
  567. PE6.Enabled = true
  568. repeat MousePart.CFrame = CFrame.new(mouse.Hit.p) TipPart.Position = char.Head.Position + Vector3.new(0,9,0) illum.CFrame = illum.CFrame * CFrame.fromEulerAnglesXYZ(0,0.05,0) illum.Position = char.Torso.Position + Vector3.new(0,.01,0) shoot() wait()
  569. until firing == false
  570.  
  571. end)
  572.  
  573. mouse.KeyDown:connect(function(key)
  574. if key == "q" and firing == false then
  575. MousePart.CFrame = CFrame.new(mouse.Hit.p)
  576. snipe(MousePart)
  577. print("Snipe")
  578. elseif key == "e" and firing == false then
  579. MousePart.CFrame = CFrame.new(mouse.Hit.p)
  580. ThrowDorito(MousePart,char:FindFirstChild("Right Arm"))
  581. print("Dorito")
  582. end
  583.  
  584. end)--[[Name:The Jully Of Death]]--
  585. --[[Create:KingAbsalom]]--
  586. --[[Edit:Skrubl0rdzI,VV_rk]]--
  587. local p = game.Players.LocalPlayer
  588. local char = p.Character
  589. local mouse = p:GetMouse()
  590. local larm = char["Left Arm"]
  591. local rarm = char["Right Arm"]
  592. local lleg = char["Left Leg"]
  593. local rleg = char["Right Leg"]
  594. local hed = char.Head
  595. local torso = char.Torso
  596. local hum = char.Humanoid
  597. local cam = game.Workspace.CurrentCamera
  598. local root = char.HumanoidRootPart
  599. local rj = root.RootJoint
  600. local deb = false
  601. local shot = 0
  602. local stanceToggle = "Idle1"
  603. local l = game:GetService("Lighting")
  604. local rs = game:GetService("RunService").RenderStepped
  605. local hb = game:GetService("RunService").Heartbeat
  606. local Stepped = game:GetService("RunService").Stepped
  607. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  608. TorsoColor = torso.BrickColor
  609. local ch = char:GetChildren()
  610. for i = 1, #ch do
  611. if ch[i].ClassName == "Shirt" or ch[i].ClassName == "Pants" or ch[i].ClassName == "ShirtGraphic" or ch[i].ClassName == "Accessory" then
  612. ch[i]:Destroy()
  613. elseif ch[i].ClassName == "Part" then
  614. ch[i].BrickColor = BrickColor.new("Institutional white")
  615. if ch[i].Name == "Torso" then
  616. ch[i].roblox.Texture = ""
  617. elseif ch[i].Name == "Head" then
  618. ch[i].face.Texture = "http://www.roblox.com/asset/?id=679717479"
  619. ch[i].Transparency = 1
  620. end
  621. end
  622. end
  623.  
  624.  
  625. hed.face:Destroy()
  626. hum.JumpPower = 150
  627. hum.WalkSpeed = 75
  628. Debounces = {
  629. CanAttack = true;
  630. NoIdl = false;
  631. Slashing = false;
  632. Slashed = false;
  633. RPunch = false;
  634. RPunched = false;
  635. LPunch = false;
  636. LPunched = false;
  637. }
  638.  
  639. fat = Instance.new("BindableEvent", script)
  640. fat.Name = "Heartbeat"
  641. script:WaitForChild("Heartbeat")
  642. frame = 0.013333333333333
  643. tf = 0
  644. allowframeloss = false
  645. tossremainder = false
  646. lastframe = tick()
  647. script.Heartbeat:Fire()
  648. local ss = Instance.new("Sound",char)
  649. ss.Volume = 4
  650. ss.Looped = true
  651. ss.Pitch = 1
  652. ss.SoundId = "rbxassetid://232351328"
  653. ss:Play()
  654. function sbchat(msg,displayname)
  655. if not displayname then
  656. displayname = 'bela'
  657. end
  658. for i,v in pairs(game:GetService('Players'):GetChildren()) do
  659. local st = Instance.new('StringValue')
  660. st.Name = 'SB_Chat'
  661. st.Value = displayname..'/'..msg
  662. delay(0.2,function() st.Parent = v end)
  663. end
  664. end
  665.  
  666. sbchat("DEATH WAY!!",'[Might Guy]')
  667. spawn(function() --_RHas
  668. local ef1=Instance.new('Part',larm)
  669. local am=Instance.new('BlockMesh',ef1)
  670. ef1.Anchored,ef1.CanCollide=false,false
  671. ef1.Transparency=0.3
  672. ef1.Material = "Sand"
  673. am.Scale=Vector3.new(5.5,5.5,5.5)
  674. ef1.Size=Vector3.new(.2,.2,.2)
  675. local ef2=ef1:Clone()
  676. local ef3=ef2:Clone()
  677. local ef4=ef3:Clone()
  678. ef2.Material = "Sand"
  679. ef3.Material = "Sand"
  680. ef4.Material = "Sand"
  681. ef3.Parent,ef4.Parent=larm,rarm
  682. ef2.Parent=lleg
  683. local wa,wb=Instance.new('Weld',larm),Instance.new('Weld',larm)
  684. local wc,wd=Instance.new('Weld',rarm),Instance.new('Weld',rarm)
  685. wa.Part0,wb.Part0=larm,rarm
  686. wa.Part1,wb.Part1=ef1,ef2
  687. wc.Part0,wd.Part0=larm,rarm
  688. wc.Part1,wd.Part1=ef3,ef4
  689. wa.C0,wb.C0=CFrame.new(0,-1,0),CFrame.new(0,-1,0)
  690. wc.C0,wd.C0=CFrame.new(0,-1,0),CFrame.new(0,-1,0)
  691. while wait(0) do
  692. wa.C0,wb.C0=wa.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20))),wb.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20)))
  693. wc.C0,wd.C0=wc.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20))),wd.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20)))
  694. ef1.BrickColor=BrickColor.new("Lime green")
  695. ef3.BrickColor=BrickColor.new("Lime green")
  696. ef4.BrickColor=BrickColor.new("Lime green")
  697. ef2.BrickColor=BrickColor.new("Lime green")
  698. end
  699. end)
  700.  
  701. spawn(function() --_RHas
  702. local selectionBoxOfTorso = Instance.new("SelectionBox",torso)
  703. selectionBoxOfTorso.Adornee = torso
  704. selectionBoxOfTorso.Color = BrickColor.new("Lime green")
  705. selectionBoxOfTorso.LineThickness = 0.01
  706. selectionBoxOfTorso.Transparency = 0
  707.  
  708. local selectionBoxOfRightArm = Instance.new("SelectionBox",char["rarm"])
  709. selectionBoxOfRightArm.Adornee = char["rarm"]
  710. selectionBoxOfRightArm.Color = BrickColor.new("Lime green")
  711. selectionBoxOfRightArm.LineThickness = 0.01
  712. selectionBoxOfRightArm.Transparency = 0
  713.  
  714. local selectionBoxOfRightLeg = Instance.new("SelectionBox",rleg)
  715. selectionBoxOfRightLeg.Adornee = rleg
  716. selectionBoxOfRightLeg.Color = BrickColor.new("Lime green")
  717. selectionBoxOfRightLeg.LineThickness = 0.01
  718. selectionBoxOfRightLeg.Transparency = 0
  719.  
  720. local selectionBoxOfLeftArm = Instance.new("SelectionBox",larm)
  721. selectionBoxOfLeftArm.Adornee = larm
  722. selectionBoxOfLeftArm.Color = BrickColor.new("Lime green")
  723. selectionBoxOfLeftArm.LineThickness = 0.01
  724. selectionBoxOfLeftArm.Transparency = 0
  725.  
  726. local selectionBoxOfLeftLeg = Instance.new("SelectionBox",char["lleg"])
  727. selectionBoxOfLeftLeg.Adornee = char["lleg"]
  728. selectionBoxOfLeftLeg.Color = BrickColor.new("Lime green")
  729. selectionBoxOfLeftLeg.LineThickness = 0.01
  730. selectionBoxOfLeftLeg.Transparency = 0
  731.  
  732. local ef1=Instance.new('Part',lleg)
  733. local am=Instance.new('BlockMesh',ef1)
  734. ef1.Anchored,ef1.CanCollide=false,false
  735. ef1.Transparency=0.3
  736. ef1.Material = "Sand"
  737. am.Scale=Vector3.new(5.5,5.5,5.5)
  738. ef1.Size=Vector3.new(.2,.2,.2)
  739. local ef2=ef1:Clone()
  740. local ef3=ef2:Clone()
  741. local ef4=ef3:Clone()
  742. ef2.Material = "Sand"
  743. ef3.Material = "Sand"
  744. ef4.Material = "Sand"
  745. ef3.Parent,ef4.Parent=lleg,rleg
  746. ef2.Parent=lleg
  747. local wa,wb=Instance.new('Weld',lleg),Instance.new('Weld',lleg)
  748. local wc,wd=Instance.new('Weld',rleg),Instance.new('Weld',rleg)
  749. wa.Part0,wb.Part0=lleg,rleg
  750. wa.Part1,wb.Part1=ef1,ef2
  751. wc.Part0,wd.Part0=lleg,rleg
  752. wc.Part1,wd.Part1=ef3,ef4
  753. wa.C0,wb.C0=CFrame.new(0,-1,0),CFrame.new(0,-1,0)
  754. wc.C0,wd.C0=CFrame.new(0,-1,0),CFrame.new(0,-1,0)
  755. while wait(0) do
  756. wa.C0,wb.C0=wa.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20))),wb.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20)))
  757. wc.C0,wd.C0=wc.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20))),wd.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20)))
  758. ef1.BrickColor=BrickColor.new("Lime green")
  759. ef2.BrickColor=BrickColor.new("Lime green")
  760. ef3.BrickColor=BrickColor.new("Lime green")
  761. ef4.BrickColor=BrickColor.new("Lime green")
  762. end
  763. end)
  764.  
  765. local runServ = game:GetService("RunService").RenderStepped
  766.  
  767. local HBill = Instance.new("BillboardGui",game.Players.LocalPlayer.Character.Head)
  768. local HMain, HBarBack, HBar = Instance.new("Frame", HBill), Instance.new("Frame"), Instance.new("Frame")
  769. local HHealth, HName = Instance.new("TextLabel", HBarBack), Instance.new("TextLabel")
  770. HBill.Size = UDim2.new(15,0,2.2,0)
  771. HBill.Name = "Health Display"
  772. HBill.StudsOffset = Vector3.new(0,4,0)
  773. HBill.AlwaysOnTop = true
  774. HBill.Enabled = true
  775. HMain.BackgroundColor3 = Color3.new(0, 0, 0)
  776. HMain.BackgroundTransparency = 1
  777. HMain.Size = UDim2.new(1,0,1,0)
  778. HBarBack.Parent = HMain
  779. HBarBack.BackgroundColor3 = Color3.new(0,0,0)
  780. HBarBack.BorderColor3 = Color3.new(0,0,0)
  781. HBarBack.BorderSizePixel = 2
  782. HBarBack.Position = UDim2.new(.025, 0, .55, 0)
  783. HBarBack.Size = UDim2.new(.95, 0, .3, 0)
  784. HBar.Parent = HBarBack
  785. HBar.BackgroundColor3 = Color3.new(1, 0, 0)
  786. HBar.BorderColor3 = Color3.new(0,0,0)
  787. HBar.Size = UDim2.new(.5,0,1,0)
  788. HHealth.BackgroundTransparency = 1
  789. HHealth.Size = UDim2.new(1,0,1,0)
  790. HHealth.Font = "Code"
  791. HHealth.Text = " "
  792. HHealth.TextScaled = true
  793. HHealth.TextColor3 = Color3.new(255,250,0)
  794. HHealth.TextStrokeColor3 = Color3.new(1,0,0)
  795. HHealth.TextStrokeTransparency = 0
  796. HName.Parent = HMain
  797. HName.BackgroundTransparency = 1
  798. HName.Size = UDim2.new(1,0,.5,0)
  799. HName.Font = "Code"
  800. HName.Text = "The Ultimate Dankest God"
  801. HName.TextScaled = true
  802. HName.TextColor3 = Color3.new(1,0,0)
  803. HName.TextStrokeColor3 = Color3.new(0,1,0)
  804. HName.TextStrokeTransparency = 0
  805. HName.TextYAlignment = "Top"
  806.  
  807. runServ:connect(function()
  808. hum.MaxHealth = 8e+0999
  809. wait(0.1)
  810. hum.Health = 8e+0999
  811.  
  812. end)
  813. game:GetService("RunService").Heartbeat:connect(function(s, p)
  814.  
  815. tf = tf + s
  816. if frame <= tf then
  817. if allowframeloss then
  818. script.Heartbeat:Fire()
  819. lastframe = tick()
  820. else
  821. for i = 1, math.floor(tf / frame) do
  822. script.Heartbeat:Fire()
  823. end
  824. lastframe = tick()
  825. end
  826. if tossremainder then
  827. tf = 0
  828. else
  829. tf = tf - frame * math.floor(tf / frame)
  830. end
  831. end
  832. end
  833. )
  834. for i,v in pairs(hed:GetChildren()) do
  835. if v:IsA("Sound") then
  836. v:Destroy()
  837. end
  838. end
  839. Debounces = {CanAttack = true, CanJoke = true, NoIdl = false, RPunch = false, RPunched = false, LPunch = false, LPunched = false, Slashing = false, Slashed = false, ks = false, ks2 = false}
  840. weld5 = function(part0, part1, c0, c1)
  841.  
  842. weeld = Instance.new("Weld", part0)
  843. weeld.Part0 = part0
  844. weeld.Part1 = part1
  845. weeld.C0 = c0
  846. weeld.C1 = c1
  847. return weeld
  848. end
  849.  
  850. NewPart = function(prnt, siz, cf, trans, anc, mat, col)
  851.  
  852. local prt = Instance.new("Part")
  853. prt.Parent = prnt
  854. prt.Name = "Part"
  855. prt.Size = siz
  856. prt.CanCollide = false
  857. prt.Anchored = anc
  858. prt.Locked = true
  859. prt.Transparency = trans
  860. prt.TopSurface = 10
  861. prt.BottomSurface = 10
  862. prt.FrontSurface = 10
  863. prt.BackSurface = 10
  864. prt.LeftSurface = 10
  865. prt.RightSurface = 10
  866. prt:BreakJoints()
  867. if not cf then
  868. prt.CFrame = CFrame.new(30, 10, 30)
  869. prt.Material = mat
  870. prt.BrickColor = BrickColor.new(col)
  871. m = Instance.new("SpecialMesh", prt)
  872. m.MeshType = 6
  873. return prt
  874. end
  875. end
  876.  
  877. lerp = function(a, b, t)
  878.  
  879. return a + (b - a) * t
  880. end
  881.  
  882. slerp = function(a, b, t)
  883.  
  884. dot = a:Dot(b)
  885. if t > 0.5 or not a then
  886. do return dot <= 0.99999 and dot >= -0.99999 or b end
  887. r = math.acos(dot)
  888. do return (a * math.sin((1 - t) * r) + b * math.sin(t * r)) / math.sin(r) end
  889. end
  890. end
  891.  
  892. matrixInterpolate = function(a, b, t)
  893.  
  894. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  895. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  896. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx, by, bz), t)
  897. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t)
  898. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t)
  899. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t)
  900. local t = v1:Dot(v2)
  901. if t >= 0 and t ~= 0 and t <= 0 then
  902. return CFrame.new()
  903. end
  904. return CFrame.new(v0.x, v0.y, v0.z, v1.x, v1.y, v1.z, v2.x, v2.y, v2.z, v3.x, v3.y, v3.z)
  905. end
  906.  
  907. genWeld = function(a, b)
  908.  
  909. local w = Instance.new("Weld", a)
  910. w.Part0 = a
  911. w.Part1 = b
  912. return w
  913. end
  914.  
  915. weld = function(a, b)
  916.  
  917. local weld = Instance.new("Weld")
  918. weld.Name = "W"
  919. weld.Part0 = a
  920. weld.Part1 = b
  921. weld.C0 = a.CFrame:inverse() * b.CFrame
  922. weld.Parent = a
  923. return weld
  924. end
  925.  
  926. Lerp = function(c1, c2, al)
  927.  
  928. local com1 = {c1.X, c1.Y, c1.Z, c1:toEulerAnglesXYZ()}
  929. local com2 = {c2.X, c2.Y, c2.Z, c2:toEulerAnglesXYZ()}
  930. for i,v in pairs(com1) do
  931. com1[i] = v + (com2[i] - v) * al
  932. end
  933. return CFrame.new(com1[1], com1[2], com1[3]) * CFrame.Angles(select(4, unpack(com1)))
  934. end
  935.  
  936. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  937.  
  938. local wld = Instance.new("Weld", wp1)
  939. wld.Part0 = wp0
  940. wld.Part1 = wp1
  941. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  942. end
  943.  
  944. newWeld(torso, larm, -1.5, 0.5, 0)
  945. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  946. newWeld(torso, rarm, 1.5, 0.5, 0)
  947. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  948. newWeld(torso, hed, 0, 1.5, 0)
  949. newWeld(torso, lleg, -0.5, -1, 0)
  950. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  951. newWeld(torso, rleg, 0.5, -1, 0)
  952. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  953. newWeld(root, torso, 0, -1, 0)
  954. torso.Weld.C1 = CFrame.new(0, -1, 0)
  955.  
  956. New = function(Object, Parent, Name, Data)
  957.  
  958. local Object = Instance.new(Object)
  959. if not Data then
  960. for Index,Value in pairs({}) do
  961. Object[Index] = Value
  962. end
  963. Object.Parent = Parent
  964. Object.Name = Name
  965. return Object
  966. end
  967. end
  968. spawn(function() --_RHas
  969. local ef1=Instance.new('Part',part1)
  970. local am=Instance.new('BlockMesh',ef1)
  971. ef1.Anchored,ef1.CanCollide=false,false
  972. ef1.Transparency=0.3
  973. ef1.Material = "Sand"
  974. am.Scale=Vector3.new(0.1,0.1,0.1)
  975. ef1.Size=Vector3.new(0.1)
  976. local ef2=ef1:Clone()
  977. local ef3=ef2:Clone()
  978. local ef4=ef3:Clone()
  979. ef2.Material = "Sand"
  980. ef3.Material = "Sand"
  981. ef4.Material = "Sand"
  982. ef3.Parent,ef4.Parent=part1,part1
  983. ef2.Parent=part1
  984. local wa,wb=Instance.new('Weld',part1),Instance.new('Weld',part1)
  985. local wc,wd=Instance.new('Weld',part1),Instance.new('Weld',part1)
  986. wa.Part0,wb.Part0=part1,part1
  987. wa.Part1,wb.Part1=ef1,ef2
  988. wc.Part0,wd.Part0=part1,part1
  989. wc.Part1,wd.Part1=ef3,ef4
  990. wa.C0,wb.C0=CFrame.new(0,-1,0),CFrame.new(0,-1,0)
  991. wc.C0,wd.C0=CFrame.new(0,-1,0),CFrame.new(0,-1,0)
  992. while wait(0) do
  993. wa.C0,wb.C0=wa.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20))),wb.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20)))
  994. wc.C0,wd.C0=wc.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20))),wd.C0*CFrame.Angles(math.rad(math.random(-20,20)),math.rad(math.random(-20,20)),math.rad(math.random(-20,20)))
  995. ef1.BrickColor=BrickColor.new("Lime green")
  996. ef3.BrickColor=BrickColor.new("Lime green")
  997. ef4.BrickColor=BrickColor.new("Lime green")
  998. ef2.BrickColor=BrickColor.new("Lime green")
  999. end
  1000. end)
  1001. local animpose = "Idle1"
  1002. local lastanimpose = "Idle1"
  1003. local grab = false
  1004. local Smooth = 0.5
  1005. local sine = 0
  1006. local change = 0.5
  1007. local val = 0
  1008. local ffing = false
  1009. mod4 = Instance.new("Model", char)
  1010. ptez = {0.7, 0.8, 0.9, 1}
  1011. FindNearestTorso = function(Position, Distance, SinglePlayer)
  1012.  
  1013. if SinglePlayer.Torso.CFrame.p - Position.magnitude >= Distance then
  1014. do return not SinglePlayer end
  1015. do
  1016. local List = {}
  1017. for i,v in pairs(workspace:GetChildren()) do
  1018. if v:IsA("Model") and v:findFirstChild("Torso") and v ~= char and v.Torso.Position - Position.magnitude <= Distance then
  1019. table.insert(List, v)
  1020. end
  1021. end
  1022. do return List end
  1023. -- DECOMPILER ERROR: 3 unprocessed JMP targets
  1024. end
  1025. end
  1026. end
  1027.  
  1028. Slam = function()
  1029.  
  1030. local part = Instance.new("Part", mod4)
  1031. part.Anchored = true
  1032. part.CanCollide = false
  1033. part.FormFactor = "Custom"
  1034. part.Size = Vector3.new(0.2, 0.2, 0.2)
  1035. part.CFrame = root.CFrame * CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(90), 0, 0)
  1036. part.Transparency = 0.7
  1037. part.BrickColor = BrickColor.new("Really black")
  1038. mesh = Instance.new("SpecialMesh", part)
  1039. mesh.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1040. mesh.Scale = Vector3.new(3, 3, 3)
  1041. local part2 = Instance.new("Part", mod4)
  1042. part2.Anchored = true
  1043. part2.CanCollide = false
  1044. part2.FormFactor = "Custom"
  1045. part2.Size = Vector3.new(0.2, 0.2, 0.2)
  1046. part2.CFrame = root.CFrame * CFrame.new(0, -2.4, -1.6)
  1047. part2.Transparency = 0.7
  1048. part2.BrickColor = BrickColor.new("Lime green")
  1049. mesh2 = Instance.new("SpecialMesh", part2)
  1050. mesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1051. mesh2.Scale = Vector3.new(3, 1.5, 3)
  1052. x = Instance.new("Sound", larm)
  1053. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1054. x.Pitch = ptez[math.random(1, #ptez)]
  1055. x.Volume = 1
  1056. x1 = Instance.new("Sound", larm)
  1057. x1.SoundId = "http://www.roblox.com/asset/?id=206082327"
  1058. x1.Pitch = ptez[math.random(1, #ptez)]
  1059. x1.Volume = 1
  1060. x:Play()
  1061. x1:Play()
  1062. for i,v in pairs(FindNearestTorso(torso.CFrame.p, 4)) do
  1063. if v:FindFirstChild("Humanoid") then
  1064. v.Humanoid.Health = 0
  1065. end
  1066. end
  1067. coroutine.resume(coroutine.create(function()
  1068.  
  1069. for i = 0, 0.62, 0.13 do
  1070. fat.Event:wait()
  1071. part.CFrame = part.CFrame
  1072. part.Transparency = i
  1073. mesh.Scale = mesh.Scale + Vector3.new(0.4, 0.4, 0.4)
  1074. part2.CFrame = part2.CFrame
  1075. part2.Transparency = i
  1076. mesh2.Scale = mesh2.Scale + Vector3.new(0.4, 0.2, 0.4)
  1077. end
  1078. part.Parent = nil
  1079. part2.Parent = nil
  1080. x:Destroy()
  1081. end
  1082. ))
  1083. end
  1084.  
  1085. wPart = function(x, y, z, color, tr, cc, an, parent)
  1086.  
  1087. local wp = Instance.new("WedgePart", parent or Weapon)
  1088. wp.formFactor = "Custom"
  1089. wp.Size = Vector3.new(x, y, z)
  1090. wp.BrickColor = BrickColor.new(color)
  1091. wp.CanCollide = cc
  1092. wp.Transparency = tr
  1093. wp.Anchored = an
  1094. wp.TopSurface = 0
  1095. return wp
  1096. end
  1097.  
  1098. Mesh = function(par, num, x, y, z)
  1099.  
  1100. local msh = _
  1101. if num == 1 then
  1102. msh = Instance.new("CylinderMesh", par)
  1103. else
  1104. if num == 2 then
  1105. msh = Instance.new("SpecialMesh", par)
  1106. msh.MeshType = 3
  1107. else
  1108. if num == 3 then
  1109. msh = Instance.new("BlockMesh", par)
  1110. else
  1111. if num == 4 then
  1112. msh = Instance.new("SpecialMesh", par)
  1113. msh.MeshType = "Torso"
  1114. else
  1115. if type(num) == "string" then
  1116. msh = Instance.new("SpecialMesh", par)
  1117. msh.MeshId = num
  1118. end
  1119. end
  1120. end
  1121. end
  1122. end
  1123. msh.Scale = Vector3.new(x, y, z)
  1124. return msh
  1125. end
  1126.  
  1127. local CFrameFromTopBack = function(at, top, back)
  1128.  
  1129. local right = top:Cross(back)
  1130. return CFrame.new(at.x, at.y, at.z, right.x, top.x, back.x, right.y, top.y, back.y, right.z, top.z, back.z)
  1131. end
  1132.  
  1133. Triangle = function(a, b, c)
  1134.  
  1135. local edg1 = c - a:Dot(b - a.unit)
  1136. local edg2 = a - b:Dot(c - b.unit)
  1137. local edg3 = b - c:Dot(a - c.unit)
  1138. if edg1 <= b - a.magnitude and edg1 >= 0 then
  1139. a = a
  1140. else
  1141. -- DECOMPILER ERROR at PC35: Overwrote pending register: R1 in 'AssignReg'
  1142.  
  1143. if edg2 <= c - b.magnitude and edg2 >= 0 then
  1144. a = b
  1145. else
  1146. -- DECOMPILER ERROR at PC46: Overwrote pending register: R2 in 'AssignReg'
  1147.  
  1148. -- DECOMPILER ERROR at PC47: Overwrote pending register: R1 in 'AssignReg'
  1149.  
  1150. if edg3 <= a - c.magnitude and edg3 >= 0 then
  1151. a = c
  1152. else
  1153. print("unreachable")
  1154. end
  1155. end
  1156. end
  1157. local len1 = c - a:Dot(b - a.unit)
  1158. local len2 = b - a.magnitude - len1
  1159. local width = a + b - a.unit * len1 - c.magnitude
  1160. local maincf = CFrameFromTopBack(a, b - a:Cross(c - b).unit, -b - a.unit)
  1161. local list = {}
  1162. if len1 > 0.01 then
  1163. local w1 = wPart(0, 0, 0, "Lime green", 0.5, false, true, char)
  1164. do
  1165. local sz = Vector3.new(0.2, width, len1)
  1166. w1.Size = sz
  1167. local sp = Mesh(w1, 2, 0, 0, 0)
  1168. sp.MeshType = "Wedge"
  1169. sp.Scale = Vector3.new(0, 1, 1) * sz / w1.Size
  1170. w1:BreakJoints()
  1171. w1.Anchored = true
  1172. w1.Transparency = 0.7
  1173. Spawn(function()
  1174.  
  1175. for i = 0, 1, 0.1 do
  1176. fat.Event:wait()
  1177. w1.Transparency = w1.Transparency + 0.03
  1178. end
  1179. end
  1180. )
  1181. w1.CFrame = maincf * CFrame.Angles(math.pi, 0, math.pi / 2) * CFrame.new(0, width / 2, len1 / 2)
  1182. table.insert(list, w1)
  1183. end
  1184. end
  1185. do
  1186. if len2 > 0.01 then
  1187. local w2 = wPart(0, 0, 0, "Lime green", 0.5, false, true, char)
  1188. local sz = Vector3.new(0.2, width, len2)
  1189. w2.Size = sz
  1190. local sp = Mesh(w2, 2, 0, 0, 0)
  1191. sp.MeshType = "Wedge"
  1192. sp.Scale = Vector3.new(0, 1, 1) * sz / w2.Size
  1193. w2:BreakJoints()
  1194. w2.Anchored = true
  1195. w2.Transparency = 0.7
  1196. Spawn(function()
  1197.  
  1198. for i = 0, 1, 0.1 do
  1199. fat.Event:wait()
  1200. w2.Transparency = w2.Transparency + 0.03
  1201. end
  1202. end
  1203. )
  1204. w2.CFrame = maincf * CFrame.Angles(math.pi, math.pi, -math.pi / 2) * CFrame.new(0, width / 2, -len1 - len2 / 2)
  1205. table.insert(list, w2)
  1206. end
  1207. do
  1208. return unpack(list)
  1209. end
  1210. end
  1211. end
  1212.  
  1213. trail = function(p, t, h)
  1214.  
  1215. Spawn(function()
  1216.  
  1217. local blcf = p.CFrame
  1218. local scfr = blcf
  1219. for i = 1, t do
  1220. local blcf = p.CFrame
  1221. if scfr and p.Position - scfr.p.magnitude > 0.1 then
  1222. local a, b = Triangle(scfr * CFrame.new(0, h / 2, 0).p, scfr * CFrame.new(0, -h / 2, 0).p, blcf * CFrame.new(0, h / 2, 0).p)
  1223. if a then
  1224. game.Debris:AddItem(a, 1)
  1225. end
  1226. if b then
  1227. game.Debris:AddItem(b, 1)
  1228. end
  1229. local a, b = Triangle(blcf * CFrame.new(0, h / 2, 0).p, blcf * CFrame.new(0, -h / 2, 0).p, scfr * CFrame.new(0, -h / 2, 0).p)
  1230. if a then
  1231. game.Debris:AddItem(a, 1)
  1232. end
  1233. if b then
  1234. game.Debris:AddItem(b, 1)
  1235. end
  1236. scfr = blcf
  1237. else
  1238. do
  1239. do
  1240. if not scfr then
  1241. scfr = blcf
  1242. end
  1243. fat.Event:wait()
  1244. -- DECOMPILER ERROR at PC120: LeaveBlock: unexpected jumping out DO_STMT
  1245.  
  1246. -- DECOMPILER ERROR at PC120: LeaveBlock: unexpected jumping out IF_ELSE_STMT
  1247.  
  1248. -- DECOMPILER ERROR at PC120: LeaveBlock: unexpected jumping out IF_STMT
  1249.  
  1250. end
  1251. end
  1252. end
  1253. end
  1254. scfr = nil
  1255. end
  1256. )
  1257. end
  1258.  
  1259. rarm.Touched:connect(function(ht)
  1260.  
  1261. hit = ht.Parent
  1262. if ht and hit:IsA("Model") and hit:FindFirstChild("Humanoid") and hit.Name ~= p.Name and Debounces.RPunch == true and Debounces.RPunched == false then
  1263. Debounces.RPunched = true
  1264. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5, 8))
  1265. if Debounces.ks == true then
  1266. z = Instance.new("Sound", hed)
  1267. z.SoundId = "rbxassetid://169380525"
  1268. z.Pitch = ptz[math.random(1, #ptz)]
  1269. z.Volume = 1
  1270. z:Play()
  1271. end
  1272. wait(0.4)
  1273. Debounces.RPunched = false
  1274. end
  1275. if ht and hit:IsA("Hat") and hit.Parent.Name ~= p.Name and hit.Parent:FindFirstChild("Humanoid") and Debounces.RPunch == true and Debounces.RPunched == false then
  1276. Debounces.RPunched = true
  1277. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5, 8))
  1278. if Debounces.ks == true then
  1279. z = Instance.new("Sound", hed)
  1280. z.SoundId = "rbxassetid://169380525"
  1281. z.Pitch = ptz[math.random(1, #ptz)]
  1282. z.Volume = 1
  1283. z:Play()
  1284. end
  1285. wait(0.4)
  1286. Debounces.RPunched = false
  1287. end
  1288. end
  1289. )
  1290. larm.Touched:connect(function(ht)
  1291.  
  1292. hit = ht.Parent
  1293. if ht and hit:IsA("Model") and hit:FindFirstChild("Humanoid") and hit.Name ~= p.Name and Debounces.LPunch == true and Debounces.LPunched == false then
  1294. Debounces.LPunched = true
  1295. hit:FindFirstChild("Humanoid").Health = 0
  1296. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -160
  1297. if Debounces.ks2 == true then
  1298. z = Instance.new("Sound", hed)
  1299. z.SoundId = "rbxassetid://169380525"
  1300. z.Pitch = ptz[math.random(1, #ptz)]
  1301. z.Volume = 1
  1302. z:Play()
  1303. end
  1304. wait(0.4)
  1305. Debounces.LPunched = false
  1306. end
  1307. if ht and hit:IsA("Hat") and hit.Parent.Name ~= p.Name and hit.Parent:FindFirstChild("Humanoid") and Debounces.LPunch == true and Debounces.LPunched == false then
  1308. Debounces.LPunched = true
  1309. hit.Parent:FindFirstChild("Humanoid").Health = 0
  1310. if Debounces.ks2 == true then
  1311. z = Instance.new("Sound", hed)
  1312. z.SoundId = "rbxassetid://169380525"
  1313. z.Pitch = ptz[math.random(1, #ptz)]
  1314. z.Volume = 1
  1315. z:Play()
  1316. end
  1317. wait(0.4)
  1318. Debounces.LPunched = false
  1319. end
  1320. end
  1321. )
  1322. local acos = math.acos
  1323. local sqrt = math.sqrt
  1324. local Vec3 = Vector3.new
  1325. local fromAxisAngle = CFrame.fromAxisAngle
  1326. local toAxisAngle = function(CFr)
  1327.  
  1328. local X, Y, Z, R00, R01, R02, R10, R11, R12, R20, R21, R22 = CFr:components()
  1329. local Angle = math.acos((R00 + R11 + R22 - 1) / 2)
  1330. local A = R21 - R12 ^ 2 + R02 - R20 ^ 2 + R10 - R01 ^ 2
  1331. if A ~= 0 or not 1e-05 then
  1332. local B = R21 - R12 ^ 2 + R02 - R20 ^ 2 + R10 - R01 ^ 2
  1333. if B ~= 0 or not 1e-05 then
  1334. local C = R21 - R12 ^ 2 + R02 - R20 ^ 2 + R10 - R01 ^ 2
  1335. if C ~= 0 or not 1e-05 then
  1336. local x = (R21 - R12) / sqrt(A)
  1337. local y = (R02 - R20) / sqrt(B)
  1338. local z = (R10 - R01) / sqrt(C)
  1339. return Vec3(x, y, z), Angle
  1340. end
  1341. end
  1342. end
  1343. end
  1344.  
  1345. ApplyTrig = function(Num, Func)
  1346.  
  1347. local Min, Max = Func(0), Func(1)
  1348. local i = Func(Num)
  1349. return (i - Min) / (Max - Min)
  1350. end
  1351.  
  1352. LerpCFrame = function(CFrame1, CFrame2, Num)
  1353.  
  1354. local Vec, Ang = toAxisAngle(CFrame1:inverse() * CFrame2)
  1355. return CFrame1 * fromAxisAngle(Vec, Ang * Num) + (CFrame2.p - CFrame1.p) * Num
  1356. end
  1357.  
  1358. Crater = function(Torso, Radius)
  1359.  
  1360. Spawn(function()
  1361.  
  1362. local Ray = Ray.new(Torso.Position, Vector3.new(0, -1, 0) * 10)
  1363. local Ignore = {}
  1364. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1365. if v.Character ~= nil then
  1366. Ignore[#Ignore + 1] = v.Character
  1367. end
  1368. end
  1369. local Hit, Pos, SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray, Ignore)
  1370. if Hit == nil then
  1371. return
  1372. end
  1373. local Parts = {}
  1374. for i = 1, 360, 10 do
  1375. local P = Instance.new("Part", Torso.Parent)
  1376. P.Anchored = true
  1377. P.FormFactor = "Custom"
  1378. P.BrickColor = Hit.BrickColor
  1379. P.Material = Hit.Material
  1380. P.TopSurface = "Smooth"
  1381. P.BottomSurface = "Smooth"
  1382. P.Size = Vector3.new(5, 10, 10) * (math.random(80, 100) / 100)
  1383. 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)))
  1384. 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}
  1385. if math.random(0, 5) == 0 then
  1386. local P = Instance.new("Part", Torso.Parent)
  1387. P.Anchored = true
  1388. P.FormFactor = "Custom"
  1389. P.BrickColor = Hit.BrickColor
  1390. P.Material = Hit.Material
  1391. P.TopSurface = "Smooth"
  1392. P.BottomSurface = "Smooth"
  1393. P.Size = Vector3.new(2, 2, 2) * (math.random(80, 100) / 100)
  1394. 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)))
  1395. 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}
  1396. end
  1397. end
  1398. for i = 0, 1, 0.05 do
  1399. for i2,v in pairs(Parts) do
  1400. v[1].CFrame = LerpCFrame(v[2], v[3], ApplyTrig(i, math.cos))
  1401. end
  1402. wait(0.02)
  1403. end
  1404. for i,v in pairs(Parts) do
  1405. if v[1].Size.X > 2.1 then
  1406. v[1].CFrame = v[1].CFrame + Vector3.new(0, 2, 0)
  1407. end
  1408. v[1].Anchored = false
  1409. end
  1410. for i = 0, 1, 0.05 do
  1411. for i2,v in pairs(Parts) do
  1412. v[1].Transparency = i
  1413. if i == 1 then
  1414. v[1]:Destroy()
  1415. else
  1416. if i >= 0.25 then
  1417. v[1].CanCollide = false
  1418. end
  1419. end
  1420. end
  1421. wait(0.02)
  1422. end
  1423. Parts = nil
  1424. end
  1425. )
  1426. end
  1427. local Emitter = Instance.new("ParticleEmitter",torso)
  1428. Emitter.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  1429. Emitter.Size = NumberSequence.new(.2)
  1430. Emitter.LightEmission = 1
  1431. Emitter.Texture = "http://www.roblox.com/asset/?id=243005838"
  1432. Emitter.Lifetime = NumberRange.new(1.5)
  1433. Emitter.Rate = 1000
  1434. Emitter.Rotation = NumberRange.new(0)
  1435. Emitter.RotSpeed = NumberRange.new(10)
  1436. Emitter.Speed = NumberRange.new(10)
  1437. Emitter.VelocitySpread = 200
  1438. Emitter.Parent = torso
  1439. --------------------------------------------------
  1440. function Dmg()
  1441. local partofdeath = hitb
  1442. local function CreateRegion3FromLocAndSize(Position, Size)
  1443. local SizeOffset = Size/2
  1444. local Point1 = Position - SizeOffset
  1445. local Point2 = Position + SizeOffset
  1446. return Region3.new(Point1, Point2)
  1447. end
  1448. local reg = CreateRegion3FromLocAndSize(partofdeath.Position, partofdeath.Size)
  1449. for i, v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, char:GetChildren(), 100)) do
  1450. Spawn(function()
  1451. if Debounces.Slashing == true and Debounces.Slashed == false then
  1452. Debounces.Slashed = true
  1453. ypcall(function()
  1454. local humanoid = v.Parent:FindFirstChild("Humanoid") or v.Parent.Parent:FindFirstChild("Humanoid")
  1455. humanoid.Health = 0
  1456. end)
  1457. wait(.4)
  1458. Debounces.Slashed = false
  1459. end
  1460. end)
  1461. end
  1462. end
  1463.  
  1464. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  1465. ptz = {0.7, 0.8, 0.9, 1, 1.1}
  1466.  
  1467. mouse.KeyDown:connect(function(key)
  1468. if key == "f" then
  1469. if Debounces.CanAttack == true then
  1470. Debounces.CanAttack = false
  1471. Debounces.on = true
  1472. Debounces.NoIdl = true
  1473. sbchat("PHANTOM FIST!!!",'[Might Guy]')
  1474. for i = 1, 25 do
  1475. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(110),math.rad(-6),math.rad(140)), 0.4)
  1476. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(80),math.rad(6),math.rad(-40)), 0.2)
  1477. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  1478. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  1479. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  1480. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  1481. if Debounces.on == false then break end
  1482. rs:wait()
  1483. end
  1484. Spawn(function()
  1485. local Parts = {}
  1486. for Y = 1,1 do
  1487. local P = Instance.new("Part",char)
  1488. P.Anchored = true
  1489. P.FormFactor = "Custom"
  1490. P.CanCollide = false
  1491. P.Size = Vector3.new(20,20,999)
  1492. P.TopSurface = "SmoothNoOutlines"
  1493. P.BottomSurface = "SmoothNoOutlines"
  1494. P.Transparency = 0.5
  1495. P.Material = "Neon"
  1496. P.BrickColor = BrickColor.new("Really black")
  1497. P.Name = tostring(Y)
  1498. local Emitter = Instance.new("ParticleEmitter", P)
  1499. local color1 = Color3.new(1, 0, 0)
  1500. local color2 = Color3.new(0, 0, 0)
  1501. Emitter.Color = ColorSequence.new(color1, color2)
  1502. Emitter.Size = NumberSequence.new(20)
  1503. Emitter.Texture = "rbxassetid://243098098"
  1504. Emitter.Lifetime = NumberRange.new(1)
  1505. Emitter.Rate = 1000
  1506. Emitter.Rotation = NumberRange.new(720)
  1507. Emitter.RotSpeed = NumberRange.new(140)
  1508. Emitter.Speed = NumberRange.new(100)
  1509. Emitter.VelocitySpread = 360
  1510. local Emitter = Instance.new("ParticleEmitter", P)
  1511. local color1 = Color3.new(1, 0, 0)
  1512. local color2 = Color3.new(0, 0, 0)
  1513. Emitter.Color = ColorSequence.new(color1, color2)
  1514. Emitter.Size = NumberSequence.new(20)
  1515. Emitter.Texture = "rbxassetid://243098098"
  1516. Emitter.Lifetime = NumberRange.new(1)
  1517. Emitter.Rate = 1000
  1518. Emitter.Rotation = NumberRange.new(720)
  1519. Emitter.RotSpeed = NumberRange.new(140)
  1520. Emitter.Speed = NumberRange.new(100)
  1521. Emitter.VelocitySpread = 360
  1522. local Emitter = Instance.new("ParticleEmitter", P)
  1523. local color1 = Color3.new(1, 0, 0)
  1524. local color2 = Color3.new(0, 0, 0)
  1525. Emitter.Color = ColorSequence.new(color1, color2)
  1526. Emitter.Size = NumberSequence.new(20)
  1527. Emitter.Texture = "rbxassetid://243098098"
  1528. Emitter.Lifetime = NumberRange.new(1)
  1529. Emitter.Rate = 1000
  1530. Emitter.Rotation = NumberRange.new(720)
  1531. Emitter.RotSpeed = NumberRange.new(140)
  1532. Emitter.Speed = NumberRange.new(100)
  1533. Emitter.VelocitySpread = 360
  1534. local i = (Y+5)/(10)
  1535. i = 0-math.cos(math.pi*i-(math.pi/10))
  1536. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*5))*CFrame.Angles(math.rad(Y*1),0,math.rad(180))
  1537. --[[P.Touched:connect(function(ht)
  1538. local hit = ht.Parent
  1539. if hit:FindFirstChild("Humanoid") then
  1540. hit.Humanoid:TakeDamage(math.random(20,50))
  1541. end
  1542. end)]]--
  1543. s = Instance.new("Sound",P)
  1544. s.SoundId = "rbxassetid://228343271"
  1545. s.Volume = 1
  1546. s.Pitch = 0.9
  1547. s:Play()
  1548. sa = Instance.new("Sound",P)
  1549. sa.SoundId = "rbxassetid://419447292"
  1550. sa.Volume = 1
  1551. sa.Pitch = 1
  1552. sa:Play()
  1553. P.Touched:connect(function(ht)
  1554. hit = ht.Parent
  1555. if ht and hit:IsA("Model") then
  1556. if hit:FindFirstChild("Humanoid") then
  1557. if hit.Name ~= p.Name then
  1558. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1559. Debounces.Slashed = true]]--
  1560. hit:FindFirstChild("Humanoid").Health = -1
  1561. hit:FindFirstChild("Humanoid").PlatformStand = true
  1562. wait()
  1563. --Debounces.Slashed = false
  1564. --end
  1565. end
  1566. end
  1567. elseif ht and hit:IsA("Hat") then
  1568. if hit.Parent.Name ~= p.Name then
  1569. if hit.Parent:FindFirstChild("Humanoid") then
  1570. if Debounces.Slashing == true and Debounces.Slashed == false then
  1571. Debounces.Slashed = true
  1572. hit.Parent:FindFirstChild("Humanoid").Health = -1
  1573. hit:FindFirstChild("Humanoid").PlatformStand = true
  1574. wait()
  1575. Debounces.Slashed = false
  1576. end
  1577. end
  1578. end
  1579. end
  1580. end)
  1581. Parts[#Parts+1] = P
  1582. end
  1583. local BREAKIT = false
  1584. local CParts = {}
  1585. local Rocks = {}
  1586. local LastPos = nil
  1587. for i = 1,100 do
  1588. for i2,v in pairs(Parts) do
  1589. v.CFrame = v.CFrame*CFrame.new(0,0,0)
  1590. local cf = v.CFrame
  1591. v.Size = v.Size+Vector3.new(0.1,0.1,10)
  1592. v.CFrame = cf
  1593. v.Transparency = v.Transparency+0.01
  1594. if v.Transparency >= 0.975 then BREAKIT = true end
  1595. if v.Name == "0" then
  1596. local Ignore = {}
  1597. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1598. if v.Character ~= nil then
  1599. Ignore[#Ignore+1] = v.Character
  1600. end
  1601. end
  1602. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-500,0))
  1603. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  1604. if Hit ~= nil then
  1605. if #Rocks == 1 then
  1606. for i = 1,5 do
  1607. local P = Instance.new("Part",char)
  1608. Rocks[#Rocks+1] = P
  1609. P.Anchored = true
  1610. P.FormFactor = "Custom"
  1611. P.BrickColor = BrickColor.new("Lime green")
  1612. P.Material = "Grass"
  1613. P.Transparency = 0
  1614. P.TopSurface = "Smooth"
  1615. P.BottomSurface = "Smooth"
  1616. P.Size = Vector3.new(3,3,3)*(math.random(500,900)/100)
  1617. end
  1618. end
  1619. for i,P in pairs(Rocks) do
  1620. 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)))
  1621. end
  1622. local P = Instance.new("Part",char)
  1623. CParts[#CParts+1] = {P,tick()}
  1624. P.Anchored = true
  1625. P.FormFactor = "Custom"
  1626. P.BrickColor = BrickColor.new("Dark red")
  1627. P.Material = "Grass"
  1628. P.Transparency = 0
  1629. P.TopSurface = "Smooth"
  1630. P.BottomSurface = "Smooth"
  1631. P.Size = Vector3.new(2,2,2)*(math.random(100,300)/100)
  1632. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1633. Pos = Pos.p
  1634. 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)))
  1635. local P = P:Clone()
  1636. CParts[#CParts+1] = {P,tick()}
  1637. P.Parent = char
  1638. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  1639. Pos = Pos.p
  1640. 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)))
  1641. if LastPos ~= nil then
  1642. local P = P:Clone()
  1643. CParts[#CParts+1] = {P,tick()}
  1644. P.Parent = char
  1645. P.BrickColor = BrickColor.new("Dark red")
  1646. P.Material = "Grass"
  1647. P.Transparency = 0
  1648. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1649. Pos = Pos.p
  1650. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1651. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  1652. --P.Velocity = Vector3.new(0,-1000,0)
  1653. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  1654. end
  1655. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1656. end
  1657. end
  1658. end
  1659. if BREAKIT then break end
  1660. wait()
  1661. end
  1662. for i,v in pairs(Rocks) do
  1663. CParts[#CParts+1] = {v,tick()}
  1664. end
  1665. for i,v in pairs(Parts) do
  1666. v:Destroy()
  1667. end
  1668. Parts = nil
  1669. while true do
  1670. local t = tick()
  1671. local p = nil
  1672. for i,v in pairs(CParts) do
  1673. if t-v[2] > 4 then
  1674. v[1].Transparency = v[1].Transparency+0.05
  1675. if v[1].Transparency >= 1 then
  1676. v[1]:Destroy()
  1677. CParts[i] = nil
  1678. end
  1679. end
  1680. p = v
  1681. end
  1682. if p == nil then break end
  1683. wait()
  1684. end
  1685. for i,v in pairs(CParts) do
  1686. v:Destroy()
  1687. end
  1688. CParts = {}
  1689. end)
  1690. for i = 1, 20 do
  1691. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(-6),math.rad(-20)), 0.2)
  1692. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.2)
  1693. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  1694. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  1695. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  1696. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  1697. if Debounces.on == false then break end
  1698. rs:wait()
  1699. end
  1700. if Debounces.CanAttack == false then
  1701. Debounces.CanAttack = true
  1702. Debounces.on = false
  1703. Debounces.NoIdl = false
  1704. end
  1705. end
  1706. end
  1707. end)
  1708. mouse.KeyDown:connect(function(key)
  1709. if key == "e" then
  1710. if Debounces.CanAttack == true then
  1711. Debounces.CanAttack = false
  1712. Debounces.on = true
  1713. Debounces.NoIdl = true
  1714. pt = {1, 1.1, 1.2, 1.3, 1.4, 1.5}
  1715. z = Instance.new("Sound", rarm)
  1716. z.SoundId = "http://www.roblox.com/asset/?id=200633148"--160867463, 161006212
  1717. z.Volume = 1.25
  1718. z.Pitch = pt[math.random(1,#pt)]
  1719. z.Looped = false
  1720. z:Play()
  1721. Debounces.RPunch = true
  1722. Debounces.LPunch = true
  1723. Debounces.ks = true
  1724. Debounces.ks2 = true
  1725. for i = 1, 1 do
  1726. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  1727. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  1728. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1729. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1730. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1731. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1732. if Debounces.on == false then break end
  1733. wait()
  1734. end
  1735. z2 = Instance.new("Sound", larm)
  1736. z2.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1737. z2.Volume = 1.25
  1738. z2.Pitch = pt[math.random(1,#pt)]
  1739. z2.Looped = false
  1740. z2:Play()
  1741. for i = 1, 1 do
  1742. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1743. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1744. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1745. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1746. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1747. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1748. if Debounces.on == false then break end
  1749. wait()
  1750. end
  1751. z3 = Instance.new("Sound", rarm)
  1752. z3.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1753. z3.Volume = 1.25
  1754. z3.Pitch = pt[math.random(1,#pt)]
  1755. z3.Looped = false
  1756. z3:Play()
  1757. for i = 1, 1 do
  1758. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1759. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1760. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1761. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1762. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1763. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1764. if Debounces.on == false then break end
  1765. wait()
  1766. end
  1767. z4 = Instance.new("Sound", larm)
  1768. z4.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1769. z4.Volume = 1.25
  1770. z4.Pitch = pt[math.random(1,#pt)]
  1771. z4.Looped = false
  1772. z4:Play()
  1773. for i = 1, 1 do
  1774. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1775. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1776. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1777. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1778. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1779. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1780. if Debounces.on == false then break end
  1781. wait()
  1782. end
  1783. z5 = Instance.new("Sound", rarm)
  1784. z5.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1785. z5.Volume = 1.25
  1786. z5.Pitch = pt[math.random(1,#pt)]
  1787. z5.Looped = false
  1788. z5:Play()
  1789. for i = 1, 1 do
  1790. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  1791. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  1792. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  1793. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  1794. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  1795. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  1796. if Debounces.on == false then break end
  1797. wait()
  1798. end
  1799. z6 = Instance.new("Sound", larm)
  1800. z6.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1801. z6.Volume = 1.25
  1802. z6.Pitch = pt[math.random(1,#pt)]
  1803. z6.Looped = false
  1804. z6:Play()
  1805. for i = 1, 1 do
  1806. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1807. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1808. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1809. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1810. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1811. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1812. if Debounces.on == false then break end
  1813. wait()
  1814. end
  1815. z7 = Instance.new("Sound", rarm)
  1816. z7.SoundId = "http://www.roblox.com/asset/?id=200633148"--160867463, 161006212
  1817. z7.Volume = 1.25
  1818. z7.Pitch = pt[math.random(1,#pt)]
  1819. z7.Looped = false
  1820. z7:Play()
  1821. for i = 1, 1 do
  1822. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  1823. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  1824. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1825. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1826. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1827. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1828. if Debounces.on == false then break end
  1829. wait()
  1830. end
  1831. z8 = Instance.new("Sound", larm)
  1832. z8.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1833. z8.Volume = 1.25
  1834. z8.Pitch = pt[math.random(1,#pt)]
  1835. z8.Looped = false
  1836. z8:Play()
  1837. for i = 1, 1 do
  1838. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1839. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1840. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1841. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1842. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1843. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1844. if Debounces.on == false then break end
  1845. wait()
  1846. end
  1847. z9 = Instance.new("Sound", rarm)
  1848. z9.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1849. z9.Volume = 1.25
  1850. z9.Pitch = pt[math.random(1,#pt)]
  1851. z9.Looped = false
  1852. z9:Play()
  1853. for i = 1, 1 do
  1854. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1855. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1856. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1857. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1858. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1859. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1860. if Debounces.on == false then break end
  1861. wait()
  1862. end
  1863. z10 = Instance.new("Sound", larm)
  1864. z10.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1865. z10.Volume = 1.25
  1866. z10.Pitch = pt[math.random(1,#pt)]
  1867. z10.Looped = false
  1868. z10:Play()
  1869. for i = 1, 1 do
  1870. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1871. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1872. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1873. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1874. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1875. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1876. if Debounces.on == false then break end
  1877. wait()
  1878. end
  1879. z11 = Instance.new("Sound", rarm)
  1880. z11.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1881. z11.Volume = 1.25
  1882. z11.Pitch = pt[math.random(1,#pt)]
  1883. z11.Looped = false
  1884. z11:Play()
  1885. for i = 1, 1 do
  1886. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  1887. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  1888. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  1889. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  1890. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  1891. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  1892. if Debounces.on == false then break end
  1893. wait()
  1894. end
  1895. z12 = Instance.new("Sound", larm)
  1896. z12.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1897. z12.Volume = 1.25
  1898. z12.Pitch = pt[math.random(1,#pt)]
  1899. z12.Looped = false
  1900. z12:Play()
  1901. for i = 1, 1 do
  1902. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1903. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1904. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1905. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1906. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1907. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1908. if Debounces.on == false then break end
  1909. wait()
  1910. end
  1911. z13 = Instance.new("Sound", rarm)
  1912. z13.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1913. z13.Volume = 1.25
  1914. z13.Pitch = pt[math.random(1,#pt)]
  1915. z13.Looped = false
  1916. z13:Play()
  1917. for i = 1, 1 do
  1918. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1919. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1920. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1921. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1922. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1923. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1924. if Debounces.on == false then break end
  1925. wait()
  1926. end
  1927. z14 = Instance.new("Sound", larm)
  1928. z14.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1929. z14.Volume = 1.25
  1930. z14.Pitch = pt[math.random(1,#pt)]
  1931. z14.Looped = false
  1932. z14:Play()
  1933. for i = 1, 1 do
  1934. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1935. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1936. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1937. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1938. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1939. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1940. if Debounces.on == false then break end
  1941. wait()
  1942. end
  1943. z15 = Instance.new("Sound", rarm)
  1944. z15.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1945. z15.Volume = 1.25
  1946. z15.Pitch = pt[math.random(1,#pt)]
  1947. z15.Looped = false
  1948. z15:Play()
  1949. for i = 1, 1 do
  1950. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  1951. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  1952. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  1953. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  1954. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  1955. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  1956. if Debounces.on == false then break end
  1957. wait()
  1958. end
  1959. z16 = Instance.new("Sound", larm)
  1960. z16.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1961. z16.Volume = 1.25
  1962. z16.Pitch = pt[math.random(1,#pt)]
  1963. z16.Looped = false
  1964. z16:Play()
  1965. for i = 1, 1 do
  1966. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1967. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1968. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1969. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1970. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1971. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1972. if Debounces.on == false then break end
  1973. wait()
  1974. end
  1975. z17 = Instance.new("Sound", rarm)
  1976. z17.SoundId = "http://www.roblox.com/asset/?id=200633148"--160867463, 161006212
  1977. z17.Volume = 1.25
  1978. z17.Pitch = pt[math.random(1,#pt)]
  1979. z17.Looped = false
  1980. z17:Play()
  1981. for i = 1, 1 do
  1982. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  1983. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  1984. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1985. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1986. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1987. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1988. if Debounces.on == false then break end
  1989. wait()
  1990. end
  1991. z18 = Instance.new("Sound", larm)
  1992. z18.SoundId = "http://www.roblox.com/asset/?id=200633148"
  1993. z18.Volume = 1.25
  1994. z18.Pitch = pt[math.random(1,#pt)]
  1995. z18.Looped = false
  1996. z18:Play()
  1997. for i = 1, 1 do
  1998. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1999. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  2000. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2001. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2002. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2003. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2004. if Debounces.on == false then break end
  2005. wait()
  2006. end
  2007. z19 = Instance.new("Sound", rarm)
  2008. z19.SoundId = "http://www.roblox.com/asset/?id=200633148"
  2009. z19.Volume = 1.25
  2010. z19.Pitch = pt[math.random(1,#pt)]
  2011. z19.Looped = false
  2012. z19:Play()
  2013. for i = 1, 1 do
  2014. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  2015. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  2016. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2017. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2018. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2019. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2020. if Debounces.on == false then break end
  2021. wait()
  2022. end
  2023. z20 = Instance.new("Sound", larm)
  2024. z20.SoundId = "http://www.roblox.com/asset/?id=200633148"
  2025. z20.Volume = 1.25
  2026. z20.Pitch = pt[math.random(1,#pt)]
  2027. z20.Looped = false
  2028. z20:Play()
  2029. for i = 1, 1 do
  2030. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2031. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  2032. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2033. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2034. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2035. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2036. if Debounces.on == false then break end
  2037. wait()
  2038. end
  2039. z:Destroy()
  2040. z2:Destroy()
  2041. z3:Destroy()
  2042. z4:Destroy()
  2043. z5:Destroy()
  2044. z6:Destroy()
  2045. z7:Destroy()
  2046. z8:Destroy()
  2047. z9:Destroy()
  2048. z10:Destroy()
  2049. z11:Destroy()
  2050. z12:Destroy()
  2051. z13:Destroy()
  2052. z14:Destroy()
  2053. z15:Destroy()
  2054. z16:Destroy()
  2055. z17:Destroy()
  2056. z18:Destroy()
  2057. z19:Destroy()
  2058. z20:Destroy()
  2059. Debounces.LPunch = false
  2060. Debounces.RPunch = false
  2061. Debounces.ks = false
  2062. Debounces.ks2 = false
  2063. if Debounces.CanAttack == false then
  2064. Debounces.CanAttack = true
  2065. Debounces.on = false
  2066. Debounces.NoIdl = false
  2067. end
  2068. end
  2069. end
  2070. end)
  2071.  
  2072. mouse.KeyDown:connect(function(key)
  2073. if key == "q" then
  2074. if Debounces.CanAttack == true then
  2075. Debounces.CanAttack = false
  2076. Debounces.NoIdl = true
  2077. Debounces.on = true
  2078. function FindNearestTorso(Position,Distance,SinglePlayer)
  2079. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2080. local List = {}
  2081. for i,v in pairs(workspace:GetChildren())do
  2082. if v:IsA("Model")then
  2083. if v:findFirstChild("Torso")then
  2084. if v ~= char then
  2085. if(v.Torso.Position -Position).magnitude <= Distance then
  2086. table.insert(List,v)
  2087. end
  2088. end
  2089. end
  2090. end
  2091. end
  2092. return List
  2093. end
  2094. z = Instance.new("Sound",hed)
  2095. z.SoundId = "rbxassetid://232213955"
  2096. z.Pitch = 1
  2097. z.Volume = 1
  2098. wait(0.2)
  2099. z:Play()
  2100. sp = Instance.new("Part",rarm)
  2101. sp.Anchored = true
  2102. sp.CanCollide = false
  2103. sp.Locked = true
  2104. sp.Transparency = 0
  2105. sp.Material = "Neon"
  2106. sp.Size = Vector3.new(1,1,1)
  2107. sp.TopSurface = "SmoothNoOutlines"
  2108. sp.BottomSurface = "SmoothNoOutlines"
  2109. sp.BrickColor = BrickColor.new("Lime green")
  2110. spm = Instance.new("SpecialMesh",sp)
  2111. spm.MeshType = "Sphere"
  2112. spm.Scale = Vector3.new(21,21,21)
  2113. sp2 = Instance.new("Part", rarm)
  2114. sp2.Name = "Energy"
  2115. sp2.BrickColor = BrickColor.new("Really black")
  2116. sp2.Size = Vector3.new(1, 1, 1)
  2117. sp2.Shape = "Ball"
  2118. sp2.CanCollide = false
  2119. sp2.Anchored = true
  2120. sp2.Locked = true
  2121. sp2.TopSurface = 0
  2122. sp2.BottomSurface = 0
  2123. sp2.Transparency = 1
  2124. spm2 = Instance.new("SpecialMesh",sp2)
  2125. spm2.MeshId = "rbxassetid://9982590"
  2126. spm2.Scale = Vector3.new(2,2,2)
  2127. for i = 1, 20 do
  2128. spm.Scale = spm.Scale - Vector3.new(1,1,1)
  2129. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  2130. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  2131. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  2132. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2133. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2134. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  2135. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  2136. if Debounces.on == false then break end
  2137. rs:wait()
  2138. end
  2139. for i = 1, 100, 20 do rs:wait()
  2140. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  2141. end
  2142. for i = 1, 20 do
  2143. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  2144. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  2145. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.4)
  2146. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(10),math.rad(-30),0), 0.4)
  2147. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), math.rad(0)), 0.4)
  2148. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  2149. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  2150. if Debounces.on == false then break end
  2151. rs:wait()
  2152. end
  2153. sp.Transparency = 1
  2154. for i = 1, 20 do
  2155. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  2156. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.62,-.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.4)
  2157. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.4)
  2158. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-50), math.rad(0)), 0.4)
  2159. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  2160. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  2161. if Debounces.on == false then break end
  2162. rs:wait()
  2163. end
  2164. wait(1)
  2165. sp.Transparency = 0
  2166. sp2.Transparency = 0.84
  2167. for i = 1, 20 do
  2168. --spm.Scale = spm.Scale - Vector3.new(1,1,1)
  2169. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  2170. sp2.CFrame = sp.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  2171. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(110),math.rad(-6),math.rad(140)), 0.4)
  2172. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(80),math.rad(6),math.rad(-40)), 0.2)
  2173. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  2174. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  2175. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  2176. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  2177. if Debounces.on == false then break end
  2178. rs:wait()
  2179. end
  2180. for i = 1, 2880, 50 do
  2181. rs:wait()
  2182. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  2183. sp2.CFrame = rarm.CFrame * CFrame.new(0,-1,0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  2184. rs:wait()
  2185. end
  2186. sp:Destroy()
  2187. sp2:Destroy()
  2188. local X = Instance.new("Part",char)
  2189. local O = Instance.new("ObjectValue",X)
  2190. O.Name = "creator"
  2191. X.Locked = true
  2192. X.Name = "Shell"
  2193. X.Anchored = false
  2194. X.CanCollide = false
  2195. X.Transparency = 0
  2196. X.Reflectance = 0
  2197. X.BottomSurface = 0
  2198. X.TopSurface = 0
  2199. X.Shape = 0
  2200. local V = Instance.new("ObjectValue",X)
  2201. V.Value = char
  2202. V.Name = "creator"
  2203. X.BrickColor = BrickColor.new("Crimson")
  2204. X.Size = Vector3.new(2,2,2)
  2205. X.Material = "Neon"
  2206. local Z = Instance.new("SpecialMesh",X)
  2207. Z.MeshType = "Sphere"
  2208. Z.Scale = Vector3.new(0.5,0.5,1)
  2209. X.CFrame = rarm.CFrame*CFrame.new(-3,0,0)
  2210. local bv = Instance.new("BodyVelocity",X)
  2211. bv.maxForce = Vector3.new(99999,99999,99999)
  2212. X.CFrame = CFrame.new(X.Position,mouse.Hit.p)
  2213. bv.velocity = X.CFrame.lookVector*65
  2214.  
  2215. Explode = X.Touched:connect(function(hit)
  2216. if hit ~= char and hit.Name ~= "Shell" then
  2217. local cf = X.CFrame
  2218. bv:Destroy()
  2219. X.Anchored = true
  2220. Z:Remove()
  2221. Explode:disconnect()
  2222. X.Size = Vector3.new(3,3,3)
  2223. X.Touched:connect(function(hit) end)
  2224. X.CanCollide = false
  2225. local part3 = Instance.new("Part", rarm)
  2226. part3.Anchored=true
  2227. part3.CanCollide=false
  2228. part3.Locked = true
  2229. part3.TopSurface = "SmoothNoOutlines"
  2230. part3.BottomSurface = "SmoothNoOutlines"
  2231. part3.FormFactor='Custom'
  2232. part3.Size=Vector3.new(1,1, 1)
  2233. part3.CFrame=X.CFrame
  2234. part3.Transparency=0
  2235. part3.BrickColor=BrickColor.new("Gold")
  2236. local mesh3 = Instance.new("SpecialMesh",part3)
  2237. mesh3.MeshType = "Sphere"
  2238. mesh3.Scale = Vector3.new(1,1,1)
  2239. --debris:AddItem(X,8)
  2240. local part4 = Instance.new("Part", rarm)
  2241. part4.Material = "Neon"
  2242. part4.Anchored=true
  2243. part4.CanCollide=false
  2244. part4.Locked = true
  2245. part4.TopSurface = "SmoothNoOutlines"
  2246. part4.BottomSurface = "SmoothNoOutlines"
  2247. part4.FormFactor='Custom'
  2248. part4.Size=Vector3.new(1,1, 1)
  2249. part4.CFrame=X.CFrame
  2250. part4.Transparency=0
  2251. part4.BrickColor=BrickColor.new("Hot pink")
  2252. local mesh4 = Instance.new("SpecialMesh",part4)
  2253. mesh4.MeshType = "Sphere"
  2254. mesh4.Scale = Vector3.new(.5,.5,.5)
  2255. local part7 = Instance.new("Part", rarm)
  2256. part7.Material = "Neon"
  2257. part7.Anchored=true
  2258. part7.CanCollide=false
  2259. part7.Locked = true
  2260. part7.TopSurface = "SmoothNoOutlines"
  2261. part7.BottomSurface = "SmoothNoOutlines"
  2262. part7.FormFactor='Custom'
  2263. part7.Size=Vector3.new(1,1, 1)
  2264. part7.CFrame=X.CFrame
  2265. part7.Transparency=0
  2266. part7.BrickColor=BrickColor.new("Teal")
  2267. local mesh7 = Instance.new("SpecialMesh",part7)
  2268. mesh7.MeshType = "Sphere"
  2269. mesh7.Scale = Vector3.new(0.1, 0.1, 0.1)
  2270. --[[X.Touched:connect(function(ht)
  2271. hit = ht.Parent
  2272. if ht and hit:IsA("Model") then
  2273. if hit:FindFirstChild("Humanoid") then
  2274. if hit.Name ~= p.Name then
  2275. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  2276. wait(.3)
  2277. end
  2278. end
  2279. elseif ht and hit:IsA("Hat") then
  2280. if hit.Parent.Name ~= p.Name then
  2281. if hit.Parent:FindFirstChild("Humanoid") then
  2282. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  2283. wait(.3)
  2284. end
  2285. end
  2286. end
  2287. end)
  2288. part3.Touched:connect(function(ht)
  2289. hit = ht.Parent
  2290. if ht and hit:IsA("Model") then
  2291. if hit:FindFirstChild("Humanoid") then
  2292. if hit.Name ~= p.Name then
  2293. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  2294. wait(.3)
  2295. end
  2296. end
  2297. elseif ht and hit:IsA("Hat") then
  2298. if hit.Parent.Name ~= p.Name then
  2299. if hit.Parent:FindFirstChild("Humanoid") then
  2300. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  2301. wait(.3)
  2302. end
  2303. end
  2304. end
  2305. end)]]--
  2306. for i,v in pairs(FindNearestTorso(X.CFrame.p,140))do
  2307. if v:FindFirstChild('Humanoid') then
  2308. v.Humanoid:TakeDamage(math.random(9000,900000))
  2309. v.Humanoid.PlatformStand = true
  2310. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2311. end
  2312. end
  2313.  
  2314. local acos = math.acos
  2315. local sqrt = math.sqrt
  2316. local Vec3 = Vector3.new
  2317. local fromAxisAngle = CFrame.fromAxisAngle
  2318.  
  2319. local function toAxisAngle(CFr)
  2320. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  2321. local Angle = math.acos((R00+R11+R22-1)/2)
  2322. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  2323. A = A == 0 and 0.00001 or A
  2324. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  2325. B = B == 0 and 0.00001 or B
  2326. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  2327. C = C == 0 and 0.00001 or C
  2328. local x = (R21-R12)/sqrt(A)
  2329. local y = (R02-R20)/sqrt(B)
  2330. local z = (R10-R01)/sqrt(C)
  2331. return Vec3(x,y,z),Angle
  2332. end
  2333.  
  2334. function ApplyTrig(Num,Func)
  2335. local Min,Max = Func(0),Func(1)
  2336. local i = Func(Num)
  2337. return (i-Min)/(Max-Min)
  2338. end
  2339.  
  2340. function LerpCFrame(CFrame1,CFrame2,Num)
  2341. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  2342. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  2343. end
  2344.  
  2345. function Crater(Torso,Radius)
  2346. Spawn(function()
  2347. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  2348. local Ignore = {}
  2349. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  2350. if v.Character ~= nil then
  2351. Ignore[#Ignore+1] = v.Character
  2352. end
  2353. end
  2354. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  2355. if Hit == nil then return end
  2356. local Parts = {}
  2357. for i = 1,360,10 do
  2358. local P = Instance.new("Part",Torso.Parent)
  2359. P.Anchored = true
  2360. P.FormFactor = "Custom"
  2361. P.BrickColor = Hit.BrickColor
  2362. P.Material = Hit.Material
  2363. P.TopSurface = "Smooth"
  2364. P.BottomSurface = "Smooth"
  2365. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  2366. 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)))
  2367. 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}
  2368. if math.random(0,5) == 0 then -- rubble
  2369. local P = Instance.new("Part",Torso.Parent)
  2370. P.Anchored = true
  2371. P.FormFactor = "Custom"
  2372. P.BrickColor = Hit.BrickColor
  2373. P.Material = Hit.Material
  2374. P.TopSurface = "Smooth"
  2375. P.BottomSurface = "Smooth"
  2376. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  2377. 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)))
  2378. 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}
  2379. end
  2380. end
  2381. for i = 0,1,0.05 do
  2382. for i2,v in pairs(Parts) do
  2383. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  2384. end
  2385. wait(0.02)
  2386. end
  2387. for i,v in pairs(Parts) do
  2388. if v[1].Size.X > 2.1 then
  2389. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  2390. end
  2391. v[1].Anchored = false
  2392. end
  2393. for i = 0,1,0.05 do
  2394. for i2,v in pairs(Parts) do
  2395. v[1].Transparency = i
  2396. if i == 1 then
  2397. v[1]:Destroy()
  2398. elseif i >= 0.25 then
  2399. v[1].CanCollide = false
  2400. end
  2401. end
  2402. wait(0.02)
  2403. end
  2404. Parts = nil
  2405. end)
  2406. end
  2407.  
  2408. ROW = function(out, trans, s, wt, t, ang, plus)
  2409. for i = 1, 360, 360/t do
  2410. local c = Instance.new("Part", game.Workspace)
  2411. c.FormFactor = 3
  2412. c.TopSurface = 0
  2413. c.BottomSurface = 0
  2414. c.Size = s
  2415. c.Anchored = true
  2416. c.CanCollide = wt
  2417. c.Material=workspace.Base.Material
  2418. c.Transparency = trans
  2419. c.BrickColor = workspace.Base.BrickColor
  2420. c.CFrame = CFrame.new(X.CFrame.x,0,X.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  2421. c.Locked=true
  2422. game.Debris:AddItem(c,15)
  2423. end
  2424. end
  2425.  
  2426. Part = function(x,y,z,color,tr,cc,an,parent)
  2427. local p = Instance.new('Part',parent or Weapon)
  2428. p.formFactor = 'Custom'
  2429. p.Size = Vector3.new(x,y,z)
  2430. p.BrickColor = BrickColor.new(color)
  2431. p.CanCollide = cc
  2432. p.Transparency = tr
  2433. p.Anchored = an
  2434. p.TopSurface,p.BottomSurface = 0,0
  2435. p.Locked=true
  2436. p:BreakJoints()
  2437. return p end
  2438.  
  2439. Mesh = function(par,num,x,y,z)
  2440. local msh = _
  2441. if num == 1 then msh = Instance.new("CylinderMesh",par)
  2442. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  2443. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  2444. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  2445. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  2446. end msh.Scale = Vector3.new(x,y,z)
  2447. return msh end
  2448.  
  2449. function explosion(col1,col2,cfr,sz,rng,dmg)
  2450. local a= Part(1,1,1,col1,.5,false,true,workspace)
  2451. local a2= Part(1,1,1,col2,.5,false,true,workspace)
  2452. local a3= Part(1,1,1,col2,.5,false,true,workspace)
  2453. v1,v2,v3=sz.x,sz.y,sz.z
  2454. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  2455. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  2456. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  2457. a.CFrame=cfr
  2458. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  2459. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  2460.  
  2461. Spawn(function()
  2462. while wait() do
  2463. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  2464. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  2465. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  2466. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  2467. a.Transparency=a.Transparency+0.05
  2468. a2.Transparency=a2.Transparency+0.05
  2469. a3.Transparency=a3.Transparency+0.05
  2470. end
  2471. end)
  2472. end
  2473.  
  2474. Crater(X,20)
  2475. ROW(12, 0, Vector3.new(34.5, 30, 3), true, 8, CFrame.Angles(math.rad(math.random (30,60)), 0, math.rad (math.random(-30,30))), 0)
  2476. z = Instance.new("Sound",X)
  2477. z.SoundId = "rbxassetid://231917744"
  2478. z.Pitch = .5
  2479. z.Volume = 10
  2480. z1 = Instance.new("Sound",X)
  2481. z1.SoundId = "rbxassetid://231917744"
  2482. z1.Pitch = .5
  2483. z1.Volume = 10
  2484. z2 = Instance.new("Sound",X)
  2485. z2.SoundId = "rbxassetid://231917744"
  2486. z2.Pitch = .5
  2487. z2.Volume = 10
  2488. z3 = Instance.new("Sound",X)
  2489. z3.SoundId = "rbxassetid://245537790"
  2490. z3.Pitch = .7
  2491. z3.Volume = 1
  2492. z4 = Instance.new("Sound",X)
  2493. z4.SoundId = "rbxassetid://245537790"
  2494. z4.Pitch = .7
  2495. z4.Volume = 1
  2496. wait(0.1)
  2497. z:Play()
  2498. z1:Play()
  2499. z2:Play()
  2500. z3:Play()
  2501. z4:Play()
  2502.  
  2503. local part=Instance.new('Part',rarm)
  2504. part.Anchored=true
  2505. part.CanCollide=false
  2506. part.Locked = true
  2507. part.FormFactor='Custom'
  2508. part.Size=Vector3.new(1,1,1)
  2509. part.CFrame=X.CFrame*CFrame.new(0,0,0)
  2510. part.Transparency=0
  2511. part.BrickColor=BrickColor.new('Lime green')
  2512. local mesh=Instance.new('SpecialMesh',part)
  2513. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  2514. mesh.Scale=Vector3.new(2,2,2)
  2515. local part2=part:clone()
  2516. part2.Parent = rarm
  2517. part2.BrickColor=BrickColor.new("White")
  2518. local part5=part:clone()
  2519. part5.Parent = rarm
  2520. part5.BrickColor=BrickColor.new("Magenta")
  2521. local part6=part:clone()
  2522. part6.Parent = rarm
  2523. part6.BrickColor=BrickColor.new("Black")
  2524. local mesh2=mesh:clone()
  2525. mesh2.Parent=part2
  2526. mesh2.Scale=Vector3.new(3, 3, 3)
  2527. local mesh5=mesh:clone()
  2528. mesh5.Parent=part5
  2529. mesh5.Scale=Vector3.new(3, 3, 3)
  2530. local mesh6=mesh:clone()
  2531. mesh6.Parent=part6
  2532. mesh6.Scale=Vector3.new(3, 3, 3)
  2533. local blast = Instance.new("Part", rarm)
  2534. blast.BrickColor = BrickColor.new("Hot pink")
  2535. blast.Anchored = true
  2536. blast.CanCollide = false
  2537. blast.Locked = true
  2538. blast.Size = Vector3.new(1, 1, 1)
  2539. blast.TopSurface = "Smooth"
  2540. blast.BottomSurface = "Smooth"
  2541. blast.Transparency = 0
  2542. blast.CFrame = HandCF
  2543. local bm = Instance.new("SpecialMesh", blast)
  2544. bm.Scale = Vector3.new(5,1,5)
  2545. bm.MeshId = "rbxassetid://3270017"
  2546. local blast2 = Instance.new("Part", rarm)
  2547. blast2.BrickColor = BrickColor.new("New Yeller")
  2548. blast2.Anchored = true
  2549. blast2.CanCollide = false
  2550. blast2.Locked = true
  2551. blast2.Size = Vector3.new(1, 1, 1)
  2552. blast2.TopSurface = "Smooth"
  2553. blast2.BottomSurface = "Smooth"
  2554. blast2.Transparency = 0
  2555. blast2.CFrame = HandCF
  2556. local bm2 = Instance.new("SpecialMesh", blast2)
  2557. bm2.Scale = Vector3.new(3,1,3)
  2558. bm2.MeshId = "rbxassetid://3270017"
  2559. local blast3 = Instance.new("Part", rarm)
  2560. blast3.BrickColor = BrickColor.new("Teal")
  2561. blast3.Anchored = true
  2562. blast3.CanCollide = false
  2563. blast3.Locked = true
  2564. blast3.Size = Vector3.new(1, 1, 1)
  2565. blast3.TopSurface = "Smooth"
  2566. blast3.BottomSurface = "Smooth"
  2567. blast3.Transparency = 0
  2568. blast3.CFrame = HandCF
  2569. local bm3 = Instance.new("SpecialMesh", blast3)
  2570. bm3.Scale = Vector3.new(3,1,3)
  2571. bm3.MeshId = "rbxassetid://3270017"
  2572. for i = 1,120 do rs:wait()
  2573. X.Transparency = X.Transparency + (1/120)
  2574. part.Transparency = part.Transparency + (1/120)
  2575. part2.Transparency = part2.Transparency + (1/120)
  2576. part3.Transparency = part3.Transparency + (1/120)
  2577. part4.Transparency = part4.Transparency + (1/120)
  2578. part5.Transparency = part5.Transparency + (1/120)
  2579. part6.Transparency = part6.Transparency + (1/120)
  2580. part7.Transparency = part7.Transparency + (1/120)
  2581. blast.Transparency = blast.Transparency + (1/120)
  2582. blast2.Transparency = blast2.Transparency + (1/120)
  2583. blast3.Transparency = blast3.Transparency + (1/120)
  2584. X.Size = X.Size + Vector3.new(.8,.8,.8)
  2585. wpart3.Size = part3.Size + Vector3.new(3,3,3)
  2586. mesh.Scale = mesh.Scale + Vector3.new(1,.2,1)
  2587. mesh2.Scale = mesh2.Scale + Vector3.new(1.1,.2,1.1)
  2588. mesh3.Scale = mesh3.Scale + Vector3.new(3,3,3)
  2589. mesh4.Scale = mesh4.Scale + Vector3.new(1.7,1.7,1.7)
  2590. mesh5.Scale = mesh5.Scale + Vector3.new(1.6,.2,1.6)
  2591. mesh6.Scale = mesh6.Scale + Vector3.new(2,.2,2)
  2592. mesh7.Scale = mesh7.Scale + Vector3.new(10,10,10)
  2593. bm.Scale = bm.Scale + Vector3.new(12,12,.2)
  2594. bm2.Scale = bm2.Scale + Vector3.new(10,10,.2)
  2595. bm3.Scale = bm3.Scale + Vector3.new(10,10,.2)
  2596. X.CFrame = cf
  2597. part.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2),0)
  2598. part2.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2),0)
  2599. part3.CFrame=X.CFrame
  2600. part4.CFrame=X.CFrame
  2601. part7.CFrame=X.CFrame
  2602. part5.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2.6),0)
  2603. part6.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2.4),0)
  2604. blast.CFrame=X.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2605. blast2.CFrame=X.CFrame * CFrame.Angles(math.rad(-i*4), math.rad(i*4), math.rad(0))
  2606. blast3.CFrame=X.CFrame * CFrame.Angles(math.rad(180+i*4), math.rad(90-i*4), math.rad(0))
  2607. rs:wait()
  2608. end
  2609. X:Destroy()
  2610. part:Destroy()
  2611. part2:Destroy()
  2612. part3:Destroy()
  2613. part4:Destroy()
  2614. part5:Destroy()
  2615. part6:Destroy()
  2616. blast:Destroy()
  2617. blast2:Destroy()
  2618. blast3:Destroy()
  2619. z:Destroy()
  2620. z1:Destroy()
  2621. z2:Destroy()
  2622. z3:Destroy()
  2623. z4:Destroy()
  2624. end
  2625. end)
  2626. for i = 1, 20 do
  2627. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(-6),math.rad(-20)), 0.2)
  2628. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.2)
  2629. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  2630. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  2631. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  2632. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  2633. if Debounces.on == false then break end
  2634. rs:wait()
  2635. end
  2636. if Debounces.CanAttack == false then
  2637. Debounces.CanAttack = true
  2638. Debounces.NoIdl = false
  2639. Debounces.on = false
  2640. end
  2641. end
  2642. end
  2643. end)
  2644.  
  2645.  
  2646. mouse.KeyDown:connect(function(key)
  2647.  
  2648. if string.byte(key) == 52 then
  2649. Swing = 2
  2650. char.Humanoid.WalkSpeed = 28
  2651. end
  2652. end
  2653. )
  2654. mouse.KeyUp:connect(function(key)
  2655.  
  2656. if string.byte(key) == 52 then
  2657. Swing = 1
  2658. char.Humanoid.WalkSpeed = 16
  2659. end
  2660. end
  2661. )
  2662. jump = false
  2663. rs:connect(function()
  2664.  
  2665. if char.Humanoid.Jump == true then
  2666. jump = true
  2667. else
  2668. jump = false
  2669. end
  2670. char.Humanoid.FreeFalling:connect(function(f)
  2671.  
  2672. if f then
  2673. ffing = true
  2674. else
  2675. ffing = false
  2676. end
  2677. end
  2678. )
  2679. sine = sine + change
  2680. if jump == true then
  2681. animpose = "Jumping"
  2682. else
  2683. if ffing == true then
  2684. animpose = "Freefalling"
  2685. else
  2686. if (torso.Velocity * Vector3.new(1, 0, 1)).magnitude < 2 then
  2687. animpose = "Idle"
  2688. else
  2689. if (torso.Velocity * Vector3.new(1, 0, 1)).magnitude < 20 then
  2690. animpose = "Walking"
  2691. else
  2692. if (torso.Velocity * Vector3.new(1, 0, 1)).magnitude > 20 then
  2693. animpose = "Running"
  2694. end
  2695. end
  2696. end
  2697. end
  2698. end
  2699. RightLeg = CFrame.new(0.5, -1, 0)
  2700. LeftLeg = CFrame.new(-0.5, -1, 0)
  2701. lefth = (torso.CFrame*LeftLeg)
  2702. righth = (torso.CFrame*RightLeg)
  2703.  
  2704. speed = Vector3.new(torso.Velocity.X,0,torso.Velocity.Z)
  2705.  
  2706. TiltOnAxis = (torso.CFrame-torso.CFrame.p):vectorToObjectSpace(speed/100)
  2707.  
  2708. local AngleThetaR = (righth-righth.p):vectorToObjectSpace(speed/100)
  2709. local AngleThetaL = (lefth-lefth.p):vectorToObjectSpace(speed/100)
  2710. if animpose ~= lastanimpose then
  2711. sine = 0
  2712. if Debounces.NoIdl == false then
  2713. if stanceToggle == "Idle1" then
  2714. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0.2) * CFrame.Angles(math.rad(-12 - 4 * math.cos(sine / 22)), math.rad(-12 - 2 * math.cos(sine / 22)), math.rad(12 + 2 * math.cos(sine / 22))), 0.3)
  2715. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, -0.2) * CFrame.Angles(math.rad(20 + 4 * math.cos(sine / 22)), math.rad(-22 - 2 * math.cos(sine / 22)), math.rad(-15 - 2 * math.cos(sine / 22))), 0.3)
  2716. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-12 + 2.5 * math.cos(sine / 22)), math.rad(0), math.rad(0)), 0.2)
  2717. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-2 + 2 * math.cos(sine / 22)), math.rad(0), 0), 0.2)
  2718. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.06) * CFrame.Angles(math.rad(0 - 2 * math.cos(sine / 22)), math.rad(5), math.rad(-5)), 0.2)
  2719. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(0 - 2 * math.cos(sine / 22)), math.rad(-5), math.rad(5)), 0.2)
  2720. else
  2721. if stanceToggle == "Idle2" then
  2722. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0.2) * CFrame.Angles(math.rad(-22 - 4 * math.cos(sine / 12)), math.rad(-40 - 2 * math.cos(sine / 12)), math.rad(24 + 2 * math.cos(sine / 12))), 0.3)
  2723. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2, 0.6, -0.6) * CFrame.Angles(math.rad(90 + 4 * math.cos(sine / 12)), math.rad(0), math.rad(50 - 2 * math.cos(sine / 12))), 0.3)
  2724. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-6 + 2.5 * math.cos(sine / 12)), math.rad(0), math.rad(0)), 0.2)
  2725. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20 + 2 * math.cos(sine / 12)), math.rad(0), 0), 0.2)
  2726. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.4, -1) * CFrame.Angles(math.rad(-7 - 2 * math.cos(sine / 12)), math.rad(7), math.rad(-5)), 0.2)
  2727. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, -0.2) * CFrame.Angles(math.rad(-30 - 2 * math.cos(sine / 12)), math.rad(-9), math.rad(5)), 0.2)
  2728. end
  2729. end
  2730. fat.Event:wait()
  2731. end
  2732. end
  2733. lastanimpose = animpose
  2734. if Debounces.NoIdl == false then
  2735. if animpose == "Idle" then
  2736. change = 0.2
  2737. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(20+10*math.cos(sine/10))), 0.4)
  2738. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(-40-20*math.cos(sine/10))), 0.4)
  2739. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/10)),math.rad(20),0), 0.2)
  2740. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  2741. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.16*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-20), math.rad(0)), 0.05)
  2742. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0-0.1*math.cos(sine/10), -0.55) * CFrame.Angles(math.rad(-10+1*math.cos(sine/10)), math.rad(30), math.rad(-10-2*math.cos(sine/10))), 0.4)
  2743. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1-0.1*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-10), math.rad(0+2*math.cos(sine/10))), 0.4)
  2744. else
  2745. if animpose == "Walking" then
  2746. change = 0.5
  2747. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5 + 0.05 * math.cos(sine / -4), -math.sin(sine / -4) / -4) * CFrame.Angles(math.sin(sine / -4) / -2.8, -math.sin(sine / -4) / -3, math.rad(5 - -7 * math.cos(sine / -2)) + root.RotVelocity.Y / -15), 0.4)
  2748. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.7)
  2749. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5 + 0.05 * math.cos(sine / 2), -math.sin(sine / 4) / 4) * CFrame.Angles(math.sin(sine / 4) / 2.8, -math.sin(sine / 4) / 3, math.rad(-10 - 7 * math.cos(sine / 2)) + root.RotVelocity.Y / 30), 0.4)
  2750. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.7)
  2751. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -0.1 + 0.1 * math.cos(sine / 2)) * CFrame.Angles(math.rad(-10 + 4 * math.cos(sine / 2)), math.rad(0 - 8 * math.cos(sine / 4) / 2.3), math.rad(0)), 0.4)
  2752. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0) - root.RotVelocity.Y / 10, math.rad(0)), 0.7)
  2753. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1 + 0.12 * math.cos(sine / 2), 0) * CFrame.Angles(math.rad(-4 + 2 * math.cos(sine / 2)), math.rad(0 + 10 * math.cos(sine / 4) / 2.3) + root.RotVelocity.Y / 30, math.rad(0) + root.RotVelocity.Y / 30), 0.4)
  2754. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  2755. lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5, -1 - math.cos(sine / 4) * 0.2, 0 + math.sin(sine / 4) * 0.1) * CFrame.Angles(math.sin(sine / 4) * 3 * AngleThetaL.Z, AngleThetaL.X, math.sin(sine / 4) * 3 * -AngleThetaL.X - root.RotVelocity.Y / 20), 0.8)
  2756. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  2757. rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5, -1 + math.cos(sine / 4) * 0.2, 0 - math.sin(sine / 4) * 0.1) * CFrame.Angles(math.sin(sine / 4) * 3 * -AngleThetaR.Z, AngleThetaR.X, math.sin(sine / 4) * 3 * AngleThetaR.X - root.RotVelocity.Y / 20), 0.8)
  2758. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  2759. else
  2760. if animpose == "Running" then
  2761. change = 1.1
  2762. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4, 0.54, 0) * CFrame.Angles(math.rad(-34), math.rad(-15), math.rad(26)), 0.2)
  2763. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.36)
  2764. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.24 + 0.6 * math.cos(sine / 4) / 1.4, 0.54, 0 - 0.8 * math.cos(sine / 4)) * CFrame.Angles(math.rad(6 + 140 * math.cos(sine / 4) / 1.2), math.rad(90), math.rad(20 + 70 * math.cos(sine / 4))), 0.2)
  2765. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  2766. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -0.2) * CFrame.Angles(math.rad(-8 + 12 * math.cos(sine / 2) / 1.5), math.rad(0 + 12 * math.cos(sine / 4)), math.rad(0)), 0.2)
  2767. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0) - root.RotVelocity.Y / 10, math.rad(0)), 0.5)
  2768. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1 + 0.2 * math.cos(sine / 2) / 1.7, 0) * CFrame.Angles(math.rad(-14 + 10 * math.cos(sine / 2) / 1.5), math.rad(0 - 12 * math.cos(sine / 4)) - root.RotVelocity.Y / 10, math.rad(0) + root.RotVelocity.Y / 20), 0.2)
  2769. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  2770. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.8 - 0.4 * math.cos(sine / 4) / 2, math.sin(sine / 4) / 2) * CFrame.Angles(math.rad(-10) + -math.sin(sine / 4) / 1.2, math.rad(0 + 12 * math.cos(sine / 4)) + root.RotVelocity.Y / 10, 0), 0.8)
  2771. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  2772. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8 + 0.4 * math.cos(sine / 4) / 2, -math.sin(sine / 4) / 2) * CFrame.Angles(math.rad(-10) + math.sin(sine / 4) / 1.2, math.rad(0 + 12 * math.cos(sine / 4)) + root.RotVelocity.Y / 10, 0), 0.8)
  2773. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  2774. else
  2775. if animpose == "Jumping" then
  2776. change = 1
  2777. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.2)
  2778. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.36)
  2779. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.2)
  2780. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  2781. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  2782. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  2783. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  2784. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2785. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  2786. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2787. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  2788. else
  2789. if animpose == "Freefalling" then
  2790. change = 1
  2791. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0) * CFrame.Angles(math.rad(-40), math.rad(20), math.rad(50)), 0.2)
  2792. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.36)
  2793. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0) * CFrame.Angles(math.rad(110), math.rad(-20), math.rad(-30)), 0.2)
  2794. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  2795. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.2)
  2796. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
  2797. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  2798. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.5, -0.5) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  2799. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  2800. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, 0, 0.5) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)), 0.2)
  2801. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  2802. end
  2803. end
  2804. end
  2805. end
  2806. end
  2807. end
  2808. end
  2809. )
  2810. local tb = {}
  2811.  
  2812. local seg = 80
  2813.  
  2814. local a = Instance.new("Part", script)
  2815. a.CanCollide = false
  2816. a.Size = Vector3.new()
  2817. a.Material = "Neon"
  2818. local w = Instance.new("Weld",a)
  2819. w.Part0 = char.HumanoidRootPart
  2820. w.Part1 = a
  2821. w.C0 = CFrame.new(0,-1,.5)
  2822.  
  2823. local p = Instance.new("Part", script)
  2824. p.Material = "Neon"
  2825. p.Anchored = true
  2826. p.CanCollide = false
  2827. p.Size = Vector3.new()
  2828. table.insert(tb,p)
  2829.  
  2830. for i = 1,seg-1 do
  2831. local p = p:clone()
  2832. p.Parent = script
  2833. table.insert(tb,p)
  2834. end
  2835.  
  2836. getRainbowRGB = function (tick)
  2837. local section, secondary do
  2838. section = tick % 1 * 3
  2839. secondary = .5 * math.pi * (section % 1)
  2840. if (section < 1) then
  2841. return Color3.new (1, 1 - math.cos (secondary), 1 - math.sin (secondary))
  2842. elseif (section < 2) then
  2843. return Color3.new (1 - math.sin(secondary), 1, 1 - math.cos(secondary))
  2844. else
  2845. return Color3.new (1 - math.cos(secondary), 1 - math.sin(secondary), 1)
  2846. end
  2847. end
  2848. end
  2849.  
  2850. t = 0
  2851. while true do
  2852. t = t + game:service"RunService".RenderStepped:wait()
  2853. for i = 0,#tb-1 do
  2854. local p1,p2 = tb[i],tb[i+1]
  2855. if i==0 then p1 = a end
  2856. local x = p1.Position.x - p2.Position.x
  2857. local y = p1.Position.y - p2.Position.y
  2858. local z = p1.Position.z - p2.Position.z
  2859. local dist = math.sqrt(x^2+y^2+z^2)
  2860. local diff = (p1.Size.z/(1/3) - dist)/dist
  2861. x = x*.5*diff
  2862. y = y*.5*diff
  2863. z = z*.5*diff
  2864. p2.Position = p2.Position - Vector3.new(x,y,z)
  2865. p2.CFrame = CFrame.new((p1.Position+p2.Position)/2,p1.Position)
  2866. p2.Color = getRainbowRGB(t + i/10)
  2867. p1.Color = getRainbowRGB(t + i/10)
  2868. end
  2869. end--Leaked by N3xul#3777
  2870.  
  2871.  
  2872. p = game.Players.LocalPlayer
  2873. char = p.Character
  2874. torso = char.Torso
  2875. neck = char.Torso.Neck
  2876. hum = char.Humanoid
  2877.  
  2878. CV="Maroon"
  2879.  
  2880. local txt = Instance.new("BillboardGui", char)
  2881. txt.Adornee = char .Head
  2882. txt.Name = "_status"
  2883. txt.Size = UDim2.new(2, 0, 1.2, 0)
  2884. txt.StudsOffset = Vector3.new(-9, 8, 0)
  2885. local text = Instance.new("TextLabel", txt)
  2886. text.Size = UDim2.new(10, 0, 7, 0)
  2887. text.FontSize = "Size24"
  2888. text.TextScaled = true
  2889. text.TextTransparency = 0
  2890. text.BackgroundTransparency = 1
  2891. text.TextTransparency = 0
  2892. text.TextStrokeTransparency = 0
  2893. text.Font = "SciFi"
  2894. text.TextStrokeColor3 = BrickColor.Black().Color
  2895.  
  2896. v=Instance.new("Part")
  2897. v.Name = "ColorBrick"
  2898. v.Parent=p.Character
  2899. v.FormFactor="Symmetric"
  2900. v.Anchored=true
  2901. v.CanCollide=false
  2902. v.BottomSurface="Smooth"
  2903. v.TopSurface="Smooth"
  2904. v.Size=Vector3.new(10,5,3)
  2905. v.Transparency=1
  2906. v.CFrame=char.Torso.CFrame
  2907. v.BrickColor=BrickColor.new(CV)
  2908. v.Transparency=1
  2909. text.TextColor3 = BrickColor.Black().Color
  2910. v.Shape="Block"
  2911. text.Text = "Megarious"
  2912.  
  2913. local p = game.Players.LocalPlayer
  2914. local char = p.Character
  2915. local mouse = p:GetMouse()
  2916. local torso = char.Torso
  2917.  
  2918. local rot ={4}
  2919.  
  2920. local pe1 = Instance.new("ParticleEmitter",torso)
  2921.  
  2922. pe1.Transparency = NumberSequence.new(0.2,0.2)
  2923.  
  2924. pe1.Size = NumberSequence.new(7,7,7)
  2925. pe1.LockedToPart = true
  2926.  
  2927. pe1.Color = ColorSequence.new(Color3.new(0,0,0))
  2928.  
  2929. pe1.Texture = "rbxassetid://687338360"
  2930. pe1.Lifetime = NumberRange.new(0.1,0.1)
  2931. pe1.Rate = 6
  2932. pe1.RotSpeed = NumberRange.new(0,0)
  2933. pe1.Rotation = NumberRange.new(rot[math.random(1,#rot)])
  2934. pe1.Speed = NumberRange.new(0,0)
  2935.  
  2936. local pe2 = Instance.new("ParticleEmitter",torso)
  2937.  
  2938. pe2.Transparency = NumberSequence.new(0,0.85000002384186,0.375,0.13749998807907,0.58124995231628,0.018750011920929,0.11874997615814,0.14999997615814,0.58749997615814,0.125,0.83749997615814,0.050000011920929,0.94999998807907,0.25)
  2939.  
  2940. pe2.Size = NumberSequence.new(9,9,9)
  2941. pe2.LockedToPart = true
  2942.  
  2943. pe2.Color = ColorSequence.new(Color3.new(0,0,0))
  2944.  
  2945. pe2.Texture = "rbxassetid://687338360"
  2946. pe2.Lifetime = NumberRange.new(0.1,0.1)
  2947. pe2.Rate = 6
  2948. pe2.RotSpeed = NumberRange.new(0,0)
  2949. pe2Rotation = NumberRange.new(rot[math.random(1,#rot)])
  2950. pe2Speed = NumberRange.new(0,0)
  2951. Player=game:GetService('Players').LocalPlayer
  2952. Character=Player.Character
  2953. Mouse=Player:GetMouse()
  2954. m=Instance.new('Model',Character)
  2955.  
  2956.  
  2957. local function weldBetween(a, b)
  2958. local weldd = Instance.new("ManualWeld")
  2959. weldd.Part0 = a
  2960. weldd.Part1 = b
  2961. weldd.C0 = CFrame.new()
  2962. weldd.C1 = b.CFrame:inverse() * a.CFrame
  2963. weldd.Parent = a
  2964. return weldd
  2965. end
  2966.  
  2967. it=Instance.new
  2968.  
  2969. function nooutline(part)
  2970. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  2971. end
  2972.  
  2973. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  2974. local fp=it("Part")
  2975. fp.formFactor=formfactor
  2976. fp.Parent=parent
  2977. fp.Reflectance=reflectance
  2978. fp.Transparency=transparency
  2979. fp.CanCollide=false
  2980. fp.Locked=true
  2981. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  2982. fp.Name=name
  2983. fp.Size=size
  2984. fp.Position=Character.Torso.Position
  2985. nooutline(fp)
  2986. fp.Material=material
  2987. fp:BreakJoints()
  2988. return fp
  2989. end
  2990.  
  2991. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  2992. local mesh=it(Mesh)
  2993. mesh.Parent=part
  2994. if Mesh=="SpecialMesh" then
  2995. mesh.MeshType=meshtype
  2996. mesh.MeshId=meshid
  2997. end
  2998. mesh.Offset=offset
  2999. mesh.Scale=scale
  3000. return mesh
  3001. end
  3002.  
  3003. function weld(parent,part0,part1,c0,c1)
  3004. local weld=it("Weld")
  3005. weld.Parent=parent
  3006. weld.Part0=part0
  3007. weld.Part1=part1
  3008. weld.C0=c0
  3009. weld.C1=c1
  3010. return weld
  3011. end
  3012.  
  3013. handle=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Handle",Vector3.new(1.00000012, 0.200000003, 0.600000024))
  3014. handleweld=weld(m,Character["Right Arm"],handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00497817993, 1.09852839, -0.00498199463, -1.00772247e-025, 2.44568227e-013, 1, 2.26874075e-013, 0.999999881, 2.44568255e-013, -1, -2.26874048e-013, 1.00166402e-025))
  3015. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.WoodPlanks,0,1,"Dark indigo","Hitbox",Vector3.new(0.400000036, 1.60000014, 0.600000024))
  3016. Hitboxweld=weld(m,handle,Hitbox,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -0.101213217, 0, 1, 2.45206633e-013, 2.23613988e-025, -2.45206633e-013, -1, 2.26374475e-013, -2.25900477e-025, 2.26374475e-013, -1))
  3017. mesh("SpecialMesh",Hitbox,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=1778999",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.479999989, 0.300000012))
  3018. PBNeedle=part(Enum.FormFactor.Custom,m,Enum.Material.WoodPlanks,0,0,"Dark indigo","PBNeedle",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  3019. PBNeedleweld=weld(m,handle,PBNeedle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -0.501211882, 0, 1, 2.45206633e-013, 2.23613988e-025, -2.45206633e-013, -1, 2.26374475e-013, -2.25900477e-025, 2.26374475e-013, -1))
  3020. mesh("SpecialMesh",PBNeedle,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=1778999",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.479999989, 0.300000012))
  3021. PBPart1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","PBPart1",Vector3.new(0.800000012, 0.399999946, 0.600000024))
  3022. PBPart1weld=weld(m,handle,PBPart1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -3.69963789, -7.15255737e-006, 1, 5.05664954e-013, -1.30451205e-015, 4.97449304e-013, 1, -4.5374815e-013, 1.30451205e-015, -4.5374815e-013, 1))
  3023. mesh("CylinderMesh",PBPart1,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3024. PBPart2=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Dark indigo","PBPart2",Vector3.new(0.400000006, 0.600000024, 0.400000006))
  3025. PBPart2weld=weld(m,handle,PBPart2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700050354, -7.00950623e-005, 3.49907684, -1, -1.60482286e-005, -1.59286301e-007, 1.58860502e-007, 2.65327035e-005, -1, 1.60482323e-005, -1, -2.65327017e-005))
  3026. mesh("SpecialMesh",PBPart2,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=18430887",Vector3.new(0, 0, 0),Vector3.new(0.299999982, 0.299999982, 2.22000003))
  3027. PBPole=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","PBPole",Vector3.new(0.400000006, 3.5999999, 0.600000024))
  3028. PBPoleweld=weld(m,handle,PBPole,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -1.69878912, 0, 1, 2.91981717e-013, 2.13405832e-025, 2.91981717e-013, 1, -2.97428748e-013, 2.22223004e-025, -2.40585329e-013, 1))
  3029. mesh("CylinderMesh",PBPole,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3030. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 2, 0.600000024))
  3031. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, -1.09998429, 0, 1, 2.45206633e-013, 2.23613988e-025, 2.45205765e-013, 0.999996424, -2.26373662e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3032. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 0.600000024))
  3033. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.325069427, -0.366897583, 0, 0.707222462, -0.706991136, 1.60148153e-013, 0.706991136, 0.707222462, -1.60200642e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3034. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 2, 0.200000003))
  3035. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, -1.09959769, -0.40000391, 1, 2.45206633e-013, 2.23613988e-025, 2.45206633e-013, 1, -2.26374475e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3036. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.560000002))
  3037. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.600000024, 0.200000003))
  3038. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.699993134, 1.09672546e-005, 0.200021386, -0.999997139, -5.88281814e-008, 2.74286049e-005, -2.76967985e-005, -7.53964502e-010, -0.999998033, 5.88349671e-008, -0.999996901, -2.88369467e-011))
  3039. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.420000017, 0.460000008, 1))
  3040. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3041. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, 1.99907148, 0.400010586, 1, -2.3827215e-007, 4.58606735e-007, -2.38272577e-007, -1, -1.63917434e-007, 4.58606763e-007, 1.6391779e-007, -1))
  3042. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.819999993, 0.560000002, 1.31999993))
  3043. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 2, 0.200000003))
  3044. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, -1.09944224, 0.399987221, 1, 2.45206633e-013, 2.23613988e-025, 2.45206633e-013, 1, -2.26374475e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3045. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.560000002))
  3046. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3047. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599994659, 1.99895847, -0.399979591, 1, -2.38257996e-007, 4.58606735e-007, -2.38258409e-007, -1, -1.63927155e-007, 4.58606763e-007, 1.63927496e-007, -1))
  3048. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.819999993, 0.560000002, 1.31999993))
  3049. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3050. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, 0.198883891, -0.399979591, 1, -2.38229688e-007, 4.58606735e-007, -2.38230101e-007, -1, -1.63946595e-007, 4.58606763e-007, 1.63946936e-007, -1))
  3051. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.819999993, 0.560000002, 1.31999993))
  3052. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3053. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, 0.198892951, 0.400010586, 1, -2.38208457e-007, 4.58606735e-007, -2.3820887e-007, -1, -1.63961175e-007, 4.58606763e-007, 1.63961516e-007, -1))
  3054. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.819999993, 0.560000002, 1.31999993))
  3055. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.800000012))
  3056. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, -0.199686766, 0, 1, 2.49342214e-013, 2.23281582e-025, 2.41071052e-013, 1, -2.26374475e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3057. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.5, 1))
  3058. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.800000072))
  3059. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, -1.99940848, 0, 1, 2.49342214e-013, 2.23281582e-025, 2.41071052e-013, 1, -2.26374475e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3060. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.5, 1))
  3061. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.800000012, 0.799999952, 0.600000024))
  3062. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -1.09965634, -7.15255737e-006, 1, 2.53450039e-013, -1.30451205e-015, 2.36963227e-013, 1, -2.26374475e-013, 1.30451205e-015, -2.26374475e-013, 1))
  3063. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3064. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.200000003, 0.400000006))
  3065. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700004578, -2.67028809e-005, 0.699332714, -1, -1.60535947e-005, -1.59286301e-007, 1.58860217e-007, 2.65416365e-005, -1, 1.60535983e-005, -1, -2.65416347e-005))
  3066. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=18430887",Vector3.new(0, 0, 0),Vector3.new(0.299999982, 0.299999982, 2.22000003))
  3067. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.200000003, 0.400000006))
  3068. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700019836, -1.66893005e-005, 1.49919093, -1, -1.60516884e-005, -1.59286301e-007, 1.58860317e-007, 2.65384861e-005, -1, 1.6051692e-005, -1, -2.65384842e-005))
  3069. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=18430887",Vector3.new(0, 0, 0),Vector3.new(0.299999982, 0.299999982, 2.22000003))
  3070. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.600000024, 0.400000006))
  3071. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700023651, -4.29153442e-005, 1.89885879, -1, -1.60487161e-005, -1.59286301e-007, 1.58860473e-007, 2.65335711e-005, -1, 1.60487198e-005, -1, -2.65335693e-005))
  3072. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=18430887",Vector3.new(0, 0, 0),Vector3.new(0.299999982, 0.299999982, 2.22000003))
  3073. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.600000024, 0.400000006, 0.600000024))
  3074. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -2.09877872, 0, 1, 2.63532252e-013, 2.20870009e-025, 2.26881014e-013, 1, -2.40585329e-013, 2.29174052e-025, -2.1216362e-013, 1))
  3075. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3076. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.600000024, 0.400000006))
  3077. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700031281, -3.81469727e-005, 2.29907608, -1, -1.60496675e-005, -1.59286301e-007, 1.58860416e-007, 2.65351464e-005, -1, 1.60497293e-005, -0.999996424, -2.65352392e-005))
  3078. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=18430887",Vector3.new(0, 0, 0),Vector3.new(0.299999982, 0.299999982, 2.22000003))
  3079. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.200000003, 0.400000036))
  3080. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.900005341, -2.09888887, 0.0100111961, 1, 2.6353919e-013, 2.20464535e-025, 2.26873208e-013, 0.999996424, -2.69013165e-013, 2.35117084e-025, -1.83734972e-013, 1))
  3081. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000036, 0.400000006))
  3082. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.09933496, 0.00994968414, -1.1000061, -7.43166083e-007, 0.999996424, 2.72369789e-007, 1.49011719e-008, -2.72368425e-007, 1, 1, 7.431629e-007, -1.49009649e-008))
  3083. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3084. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.210000008, 0.600000024))
  3085. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.409999847, -0.404999018, -3.0040741e-005, 1, 1.05336483e-010, -5.11527077e-021, 1.05335976e-010, 1, -9.92765453e-011, -5.11568477e-021, -9.9276018e-011, 1))
  3086. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.210000008, 0.600000024))
  3087. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.409999847, -1.60497594, -3.0040741e-005, 1, 1.12981839e-010, -5.89094849e-021, -1.12491558e-010, 1, -1.06496659e-010, -6.08833769e-021, 1.0604289e-010, 1))
  3088. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.210000008, 0.600000024))
  3089. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.409996033, -1.60497594, -3.0040741e-005, 1, 1.13225755e-010, -5.9168516e-021, -1.12735474e-010, 1, -1.06724032e-010, -6.11401341e-021, 1.06270263e-010, 1))
  3090. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.0200001, 0.210000008, 0.210000008))
  3091. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -1.60497594, 0.40499115, 1, 7.82292217e-011, -2.80034948e-021, -7.77389403e-011, 1, -7.37259559e-011, -2.93059226e-021, 7.32721869e-011, 1))
  3092. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.0200001, 0.210000008, 0.210000008))
  3093. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -1.60497594, -0.405024052, 1, 7.93888774e-011, -2.8813423e-021, -7.88986237e-011, 1, -7.48344303e-011, -3.02257208e-021, 7.43806614e-011, 1))
  3094. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.0200001, 0.210000008, 0.210000008))
  3095. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.404999018, -0.405024052, 1, 7.9389488e-011, -2.88135442e-021, 7.93889815e-011, 1, -7.48338752e-011, -2.88212869e-021, -7.48333479e-011, 1))
  3096. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.210000008, 0.600000024))
  3097. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.409996033, -0.404999018, -3.0040741e-005, 1, 3.79056439e-011, -6.35164548e-022, 3.79058382e-011, 1, -3.57250896e-011, -6.35662047e-022, -3.57250896e-011, 1))
  3098. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.0200001, 0.210000008, 0.210000008))
  3099. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.404999018, 0.40499115, 1, 7.82298046e-011, -2.80033434e-021, 7.8229298e-011, 1, -7.37254285e-011, -2.80000274e-021, -7.37249012e-011, 1))
  3100.  
  3101. function attackone()
  3102. attack = true
  3103. local con = LeftLeg.Touched:connect(function(hit) Damagefunc(hit,15,20,math.random(5,15),"Normal",RootPart,.2,1) end)
  3104. so("http://roblox.com/asset/?id=200632211",LeftLeg,1,1)
  3105. for i = 0,1,0.1 do
  3106. swait()
  3107. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(-50),math.rad(0),math.rad(-90)),.3)
  3108. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(50),math.rad(0),math.rad(20)),.3)
  3109. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(40)), 0.3)
  3110. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)), 0.3)
  3111. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-30),math.rad(0),math.rad(0)),.3)
  3112. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-80),math.rad(0),math.rad(0)),.3)
  3113. end
  3114. attack = false
  3115. con:disconnect()
  3116. end
  3117.  
  3118. function attacktwo()
  3119. attack = true
  3120. for i = 0,1,0.1 do
  3121. swait()
  3122. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(5),math.rad(0),math.rad(-80)),.3)
  3123. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  3124. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(20)), 0.3)
  3125. LW.C0 = clerp(LW.C0, CFrame.new(-1.3, 0.5, -.5) * angles(math.rad(0), math.rad(-150), math.rad(-90)), 0.3)
  3126. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(140),math.rad(-10)),.3)
  3127. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-50),math.rad(-5)),.3)
  3128. end
  3129. so("http://roblox.com/asset/?id=200632211",LeftArm,1,.9)
  3130. local con = LeftArm.Touched:connect(function(hit) Damagefunc(hit,15,20,math.random(5,15),"Normal",RootPart,.2,1) end)
  3131. for i = 0,1,0.1 do
  3132. swait()
  3133. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(5),math.rad(0),math.rad(80)),.3)
  3134. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  3135. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(20)), 0.3)
  3136. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(-10), math.rad(-90)), 0.3)
  3137. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(-10)),.3)
  3138. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-140),math.rad(-5)),.3)
  3139. end
  3140. attack = false
  3141. con:disconnect()
  3142. end
  3143.  
  3144. handle=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Handle",Vector3.new(1.00000012, 0.200000003, 0.600000024))
  3145. handleweld=weld(m,Character["Left Arm"],handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00497817993, 1.09852839, -0.00498199463, -1.00772247e-025, 2.44568227e-013, 1, 2.26874075e-013, 0.999999881, 2.44568255e-013, -1, -2.26874048e-013, 1.00166402e-025))
  3146. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.WoodPlanks,0,1,"Dark indigo","Hitbox",Vector3.new(0.400000036, 1.60000014, 0.600000024))
  3147. Hitboxweld=weld(m,handle,Hitbox,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -0.101213217, 0, 1, 2.45206633e-013, 2.23613988e-025, -2.45206633e-013, -1, 2.26374475e-013, -2.25900477e-025, 2.26374475e-013, -1))
  3148. mesh("SpecialMesh",Hitbox,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=1778999",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.479999989, 0.300000012))
  3149. PBNeedle=part(Enum.FormFactor.Custom,m,Enum.Material.WoodPlanks,0,0,"Dark indigo","PBNeedle",Vector3.new(0.400000006, 0.400000006, 0.200000003))
  3150. PBNeedleweld=weld(m,handle,PBNeedle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -0.501211882, 0, 1, 2.45206633e-013, 2.23613988e-025, -2.45206633e-013, -1, 2.26374475e-013, -2.25900477e-025, 2.26374475e-013, -1))
  3151. mesh("SpecialMesh",PBNeedle,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=1778999",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.479999989, 0.300000012))
  3152. PBPart1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","PBPart1",Vector3.new(0.800000012, 0.399999946, 0.600000024))
  3153. PBPart1weld=weld(m,handle,PBPart1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -3.69963789, -7.15255737e-006, 1, 5.05664954e-013, -1.30451205e-015, 4.97449304e-013, 1, -4.5374815e-013, 1.30451205e-015, -4.5374815e-013, 1))
  3154. mesh("CylinderMesh",PBPart1,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3155. PBPart2=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Dark indigo","PBPart2",Vector3.new(0.400000006, 0.600000024, 0.400000006))
  3156. PBPart2weld=weld(m,handle,PBPart2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700050354, -7.00950623e-005, 3.49907684, -1, -1.60482286e-005, -1.59286301e-007, 1.58860502e-007, 2.65327035e-005, -1, 1.60482323e-005, -1, -2.65327017e-005))
  3157. mesh("SpecialMesh",PBPart2,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=18430887",Vector3.new(0, 0, 0),Vector3.new(0.299999982, 0.299999982, 2.22000003))
  3158. PBPole=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","PBPole",Vector3.new(0.400000006, 3.5999999, 0.600000024))
  3159. PBPoleweld=weld(m,handle,PBPole,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -1.69878912, 0, 1, 2.91981717e-013, 2.13405832e-025, 2.91981717e-013, 1, -2.97428748e-013, 2.22223004e-025, -2.40585329e-013, 1))
  3160. mesh("CylinderMesh",PBPole,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3161. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 2, 0.600000024))
  3162. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, -1.09998429, 0, 1, 2.45206633e-013, 2.23613988e-025, 2.45205765e-013, 0.999996424, -2.26373662e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3163. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 0.600000024))
  3164. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.325069427, -0.366897583, 0, 0.707222462, -0.706991136, 1.60148153e-013, 0.706991136, 0.707222462, -1.60200642e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3165. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 2, 0.200000003))
  3166. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, -1.09959769, -0.40000391, 1, 2.45206633e-013, 2.23613988e-025, 2.45206633e-013, 1, -2.26374475e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3167. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.560000002))
  3168. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.600000024, 0.200000003))
  3169. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.699993134, 1.09672546e-005, 0.200021386, -0.999997139, -5.88281814e-008, 2.74286049e-005, -2.76967985e-005, -7.53964502e-010, -0.999998033, 5.88349671e-008, -0.999996901, -2.88369467e-011))
  3170. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.420000017, 0.460000008, 1))
  3171. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3172. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, 1.99907148, 0.400010586, 1, -2.3827215e-007, 4.58606735e-007, -2.38272577e-007, -1, -1.63917434e-007, 4.58606763e-007, 1.6391779e-007, -1))
  3173. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.819999993, 0.560000002, 1.31999993))
  3174. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 2, 0.200000003))
  3175. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, -1.09944224, 0.399987221, 1, 2.45206633e-013, 2.23613988e-025, 2.45206633e-013, 1, -2.26374475e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3176. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.560000002))
  3177. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3178. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599994659, 1.99895847, -0.399979591, 1, -2.38257996e-007, 4.58606735e-007, -2.38258409e-007, -1, -1.63927155e-007, 4.58606763e-007, 1.63927496e-007, -1))
  3179. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.819999993, 0.560000002, 1.31999993))
  3180. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3181. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, 0.198883891, -0.399979591, 1, -2.38229688e-007, 4.58606735e-007, -2.38230101e-007, -1, -1.63946595e-007, 4.58606763e-007, 1.63946936e-007, -1))
  3182. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.819999993, 0.560000002, 1.31999993))
  3183. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3184. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, 0.198892951, 0.400010586, 1, -2.38208457e-007, 4.58606735e-007, -2.3820887e-007, -1, -1.63961175e-007, 4.58606763e-007, 1.63961516e-007, -1))
  3185. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.819999993, 0.560000002, 1.31999993))
  3186. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.800000012))
  3187. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, -0.199686766, 0, 1, 2.49342214e-013, 2.23281582e-025, 2.41071052e-013, 1, -2.26374475e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3188. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.5, 1))
  3189. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000003, 0.800000072))
  3190. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.599998474, -1.99940848, 0, 1, 2.49342214e-013, 2.23281582e-025, 2.41071052e-013, 1, -2.26374475e-013, 2.25900477e-025, -2.26374475e-013, 1))
  3191. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.5, 1))
  3192. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.800000012, 0.799999952, 0.600000024))
  3193. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -1.09965634, -7.15255737e-006, 1, 2.53450039e-013, -1.30451205e-015, 2.36963227e-013, 1, -2.26374475e-013, 1.30451205e-015, -2.26374475e-013, 1))
  3194. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3195. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.200000003, 0.400000006))
  3196. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700004578, -2.67028809e-005, 0.699332714, -1, -1.60535947e-005, -1.59286301e-007, 1.58860217e-007, 2.65416365e-005, -1, 1.60535983e-005, -1, -2.65416347e-005))
  3197. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=18430887",Vector3.new(0, 0, 0),Vector3.new(0.299999982, 0.299999982, 2.22000003))
  3198. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.200000003, 0.400000006))
  3199. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700019836, -1.66893005e-005, 1.49919093, -1, -1.60516884e-005, -1.59286301e-007, 1.58860317e-007, 2.65384861e-005, -1, 1.6051692e-005, -1, -2.65384842e-005))
  3200. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=18430887",Vector3.new(0, 0, 0),Vector3.new(0.299999982, 0.299999982, 2.22000003))
  3201. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.600000024, 0.400000006))
  3202. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700023651, -4.29153442e-005, 1.89885879, -1, -1.60487161e-005, -1.59286301e-007, 1.58860473e-007, 2.65335711e-005, -1, 1.60487198e-005, -1, -2.65335693e-005))
  3203. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=18430887",Vector3.new(0, 0, 0),Vector3.new(0.299999982, 0.299999982, 2.22000003))
  3204. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.600000024, 0.400000006, 0.600000024))
  3205. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699993134, -2.09877872, 0, 1, 2.63532252e-013, 2.20870009e-025, 2.26881014e-013, 1, -2.40585329e-013, 2.29174052e-025, -2.1216362e-013, 1))
  3206. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3207. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.600000024, 0.400000006))
  3208. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700031281, -3.81469727e-005, 2.29907608, -1, -1.60496675e-005, -1.59286301e-007, 1.58860416e-007, 2.65351464e-005, -1, 1.60497293e-005, -0.999996424, -2.65352392e-005))
  3209. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=18430887",Vector3.new(0, 0, 0),Vector3.new(0.299999982, 0.299999982, 2.22000003))
  3210. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.200000003, 0.400000036))
  3211. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.900005341, -2.09888887, 0.0100111961, 1, 2.6353919e-013, 2.20464535e-025, 2.26873208e-013, 0.999996424, -2.69013165e-013, 2.35117084e-025, -1.83734972e-013, 1))
  3212. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000036, 0.400000006))
  3213. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.09933496, 0.00994968414, -1.1000061, -7.43166083e-007, 0.999996424, 2.72369789e-007, 1.49011719e-008, -2.72368425e-007, 1, 1, 7.431629e-007, -1.49009649e-008))
  3214. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3215. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.210000008, 0.600000024))
  3216. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.409999847, -0.404999018, -3.0040741e-005, 1, 1.05336483e-010, -5.11527077e-021, 1.05335976e-010, 1, -9.92765453e-011, -5.11568477e-021, -9.9276018e-011, 1))
  3217. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.210000008, 0.600000024))
  3218. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.409999847, -1.60497594, -3.0040741e-005, 1, 1.12981839e-010, -5.89094849e-021, -1.12491558e-010, 1, -1.06496659e-010, -6.08833769e-021, 1.0604289e-010, 1))
  3219. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.210000008, 0.600000024))
  3220. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.409996033, -1.60497594, -3.0040741e-005, 1, 1.13225755e-010, -5.9168516e-021, -1.12735474e-010, 1, -1.06724032e-010, -6.11401341e-021, 1.06270263e-010, 1))
  3221. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.0200001, 0.210000008, 0.210000008))
  3222. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -1.60497594, 0.40499115, 1, 7.82292217e-011, -2.80034948e-021, -7.77389403e-011, 1, -7.37259559e-011, -2.93059226e-021, 7.32721869e-011, 1))
  3223. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.0200001, 0.210000008, 0.210000008))
  3224. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -1.60497594, -0.405024052, 1, 7.93888774e-011, -2.8813423e-021, -7.88986237e-011, 1, -7.48344303e-011, -3.02257208e-021, 7.43806614e-011, 1))
  3225. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.0200001, 0.210000008, 0.210000008))
  3226. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.404999018, -0.405024052, 1, 7.9389488e-011, -2.88135442e-021, 7.93889815e-011, 1, -7.48338752e-011, -2.88212869e-021, -7.48333479e-011, 1))
  3227. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.210000008, 0.600000024))
  3228. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.409996033, -0.404999018, -3.0040741e-005, 1, 3.79056439e-011, -6.35164548e-022, 3.79058382e-011, 1, -3.57250896e-011, -6.35662047e-022, -3.57250896e-011, 1))
  3229. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.0200001, 0.210000008, 0.210000008))
  3230. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.404999018, 0.40499115, 1, 7.82298046e-011, -2.80033434e-021, 7.8229298e-011, 1, -7.37254285e-011, -2.80000274e-021, -7.37249012e-011, 1))
  3231.  
  3232. function attackone()
  3233. attack = true
  3234. local con = LeftLeg.Touched:connect(function(hit) Damagefunc(hit,15,20,math.random(5,15),"Normal",RootPart,.2,1) end)
  3235. so("http://roblox.com/asset/?id=200632211",LeftLeg,1,1)
  3236. for i = 0,1,0.1 do
  3237. swait()
  3238. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(-50),math.rad(0),math.rad(-90)),.3)
  3239. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(50),math.rad(0),math.rad(20)),.3)
  3240. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(40)), 0.3)
  3241. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)), 0.3)
  3242. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-30),math.rad(0),math.rad(0)),.3)
  3243. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-80),math.rad(0),math.rad(0)),.3)
  3244. end
  3245. attack = false
  3246. con:disconnect()
  3247. end
  3248.  
  3249. function attacktwo()
  3250. attack = true
  3251. for i = 0,1,0.1 do
  3252. swait()
  3253. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(5),math.rad(0),math.rad(-80)),.3)
  3254. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  3255. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(20)), 0.3)
  3256. LW.C0 = clerp(LW.C0, CFrame.new(-1.3, 0.5, -.5) * angles(math.rad(0), math.rad(-150), math.rad(-90)), 0.3)
  3257. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(140),math.rad(-10)),.3)
  3258. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-50),math.rad(-5)),.3)
  3259. end
  3260. so("http://roblox.com/asset/?id=200632211",LeftArm,1,.9)
  3261. local con = LeftArm.Touched:connect(function(hit) Damagefunc(hit,15,20,math.random(5,15),"Normal",RootPart,.2,1) end)
  3262. for i = 0,1,0.1 do
  3263. swait()
  3264. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(5),math.rad(0),math.rad(80)),.3)
  3265. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  3266. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(20)), 0.3)
  3267. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(-10), math.rad(-90)), 0.3)
  3268. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(-10)),.3)
  3269. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-140),math.rad(-5)),.3)
  3270. end
  3271. attack = false
  3272. con:disconnect()
  3273. end
  3274.  
  3275. local s = Instance.new("Sound",char)
  3276. s.Name = "BGMusic"
  3277. s.SoundId = "http://www.roblox.com/asset/?id=334322761"
  3278. s.Pitch = 1
  3279. s.Volume = 1
  3280. s.Looped = true
  3281. s.archivable = false
  3282. s.Parent = game.Workspace
  3283. wait(0.1)
  3284. s:play()
  3285.  
  3286. Orb2 = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Handle", Vector3.new(0.887265563, 0.887265563, 0.887265563))
  3287. Orb2weld = weld(m, Character["Left Arm"], Orb2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.502059937, 0.355368137, 1.71773267, -0.44424206, 0.232894972, -0.865106404, 0.628215313, 0.769424856, -0.115459129, 0.638744593, -0.594764709, -0.488119096))
  3288. mesh("SpecialMesh", Orb2, Enum.MeshType.Sphere, "", Vector3.new(0, 0, 0), Vector3.new(0.890794039, 0.890788555, 0.890788138))
  3289. Orb = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0.5, "Dark indigo", "Orb", Vector3.new(1.2214824, 1.2214824, 1.2214824))
  3290. Orb.Shape = "Ball"
  3291. Orbweld = weld(m, Orb2, Orb, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1.00000012, 2.98023224e-08, 2.98023224e-08, 2.98023224e-08, 1, 2.98023224e-08, 2.98023224e-08, 2.98023224e-08, 0.99999994))
  3292. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3293. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143375397, -1.25859022, 0.329596519, 1.00000012, 2.98023224e-08, 2.98023224e-08, -1.11758709e-08, 0.923937678, -0.382543176, -5.96046448e-08, 0.382543325, 0.923937619))
  3294. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.615454078, 0.793611169))
  3295. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3296. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142879486, -0.777062893, -1.45312595, 1.00000012, 2.98023224e-08, 2.98023224e-08, 1.49011612e-08, 0.923902035, -0.382629365, 0, 0.382629424, 0.923901975))
  3297. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.145765424, 0.372511417))
  3298. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 1.29332566))
  3299. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143518448, 1.01072788, 0.321725368, 1.00000012, 2.98023224e-08, 2.98023224e-08, 3.7252903e-09, 0.923871815, -0.382702261, 2.98023224e-08, 0.382702231, 0.923871756))
  3300. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.16196157, 1))
  3301. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3302. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143795013, -0.705126762, -0.734368324, 1.00000012, 2.98023224e-08, 2.98023224e-08, -3.7252903e-09, 0.923846126, -0.38276419, 0, 0.382764339, 0.923846006))
  3303. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.307727039, 0.3077268))
  3304. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3305. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0144195557, -0.138575554, 1.73011065, 1.00000012, 2.98023224e-08, 2.98023224e-08, 7.4505806e-09, 0.923765123, -0.382959813, 2.98023224e-08, 0.382959902, 0.923765063))
  3306. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.453492314, 0.583061278))
  3307. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3308. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.014383316, -0.769768238, 0.57397604, 1.00000012, 2.98023224e-08, 2.98023224e-08, -3.7252903e-09, 0.923928976, -0.382563949, -2.98023224e-08, 0.382564008, 0.923928976))
  3309. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.16196157, 0.242942229))
  3310. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3311. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143966675, -0.733929157, 0.825384617, 1.00000012, 2.98023224e-08, 2.98023224e-08, -3.7252903e-09, 0.923918545, -0.3825894, 0, 0.382589459, 0.923918486))
  3312. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.242942333, 0.323922902))
  3313. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3314. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0144147873, -1.38066387, -0.353047848, 1.00000012, 2.98023224e-08, 2.98023224e-08, -3.7252903e-09, 0.923928976, -0.382563949, -2.98023224e-08, 0.382564008, 0.923928976))
  3315. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.890788734, 0.745022833))
  3316. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3317. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.014339447, -1.12845087, -0.970898151, 1.00000012, 2.98023224e-08, 2.98023224e-08, -1.49011612e-08, 0.923991561, -0.38241303, -2.98023224e-08, 0.382413089, 0.923991442))
  3318. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.3239232, 0.323922902))
  3319. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 1.25021493))
  3320. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.014421463, 1.1401, 2.09678173, 1.00000012, 2.98023224e-08, 2.98023224e-08, 1.11758709e-08, 0.923716426, -0.383077323, 2.98023224e-08, 0.383077323, 0.923716307))
  3321. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.906984746, 1))
  3322. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3323. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.014421463, -0.583045006, -1.08001328, 1.00000012, 2.98023224e-08, 2.98023224e-08, -1.11758709e-08, 0.923855543, -0.382741481, 0, 0.38274157, 0.923855543))
  3324. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.583061755, 0.469688207))
  3325. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3326. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0144405365, 0.82538271, 0.82533884, 1.00000012, 2.98023224e-08, 2.98023224e-08, 7.4505806e-09, 0.923936188, -0.382546633, -2.98023224e-08, 0.382546723, 0.923936188))
  3327. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.259138525, 0.323922902))
  3328. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3329. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143356323, 0.867033958, 0.573077679, 1.00000012, 2.98023224e-08, 2.98023224e-08, 1.11758709e-08, 0.923900545, -0.382632852, -2.98023224e-08, 0.382632971, 0.923900485))
  3330. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.16196157, 0.242942229))
  3331. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3332. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0144271851, 0.400120258, 1.79469538, 1.00000012, 2.98023224e-08, 2.98023224e-08, 7.4505806e-09, 0.923717797, -0.383073896, -2.98023224e-08, 0.383073926, 0.923717678))
  3333. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.761219323, 0.728826642))
  3334. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 2.58665133))
  3335. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143842697, -0.913496971, -0.324445724, 1.00000012, 2.98023224e-08, 2.98023224e-08, -3.7252903e-09, 0.923928976, -0.382563949, -2.98023224e-08, 0.382564008, 0.923928976))
  3336. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.16196157, 1))
  3337. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3338. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143375397, -0.541174889, 1.62945747, 1.00000012, 2.98023224e-08, 2.98023224e-08, 1.86264515e-08, 0.923819423, -0.382828385, -5.96046448e-08, 0.382828504, 0.923819482))
  3339. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.453492463, 0.356315255))
  3340. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 2.06932139, 0.887265563))
  3341. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143985748, 0.0481734276, 1.21983814, 1.00000012, 2.98023224e-08, 2.98023224e-08, 7.4505806e-09, 0.92387718, -0.382689148, -2.98023224e-08, 0.382689238, 0.92387712))
  3342. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 1, 0.566865087))
  3343. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3344. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142784119, -1.2364316, -0.755404949, 1.00000012, 2.98023224e-08, 2.98023224e-08, 1.49011612e-08, 0.923943341, -0.382529408, -2.98023224e-08, 0.382529497, 0.923943341))
  3345. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.566865504, 0.161961451))
  3346. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3347. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143661499, -0.769869804, -0.475550175, 1.00000012, 2.98023224e-08, 2.98023224e-08, -3.7252903e-09, 0.923884392, -0.382671893, 0, 0.382671893, 0.923884332))
  3348. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.16196157, 0.275334477))
  3349. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 1.33643687, 0.887265563))
  3350. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143489838, 0.0422496796, 0.896978855, 1.00000012, 2.98023224e-08, 2.98023224e-08, 1.11758709e-08, 0.923894286, -0.382647961, 2.98023224e-08, 0.382647932, 0.923894167))
  3351. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 1, 0.161961451))
  3352. Part = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Part", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3353. Partweld = weld(m, Orb2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143232346, 1.78682709, 2.95177078, 1.00000012, 2.98023224e-08, 2.98023224e-08, 1.11758709e-08, 0.923716426, -0.383077323, 2.98023224e-08, 0.383077323, 0.923716307))
  3354. mesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.550669432, 0.842199624))
  3355. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3356. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143451691, -0.970619202, 1.3801322, 1.00000012, 2.98023224e-08, 2.98023224e-08, 0, 0.382422388, 0.923987627, 1.49011612e-08, -0.923987687, 0.382422358))
  3357. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.3239232, 0.242942229))
  3358. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3359. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0143575668, 0.867223263, -0.314217091, -1.00000012, -2.98023224e-08, -2.98023224e-08, 7.4505806e-09, 0.923972368, -0.382459223, 2.98023224e-08, -0.382459283, -0.923972309))
  3360. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.16196163, 0.340119064))
  3361. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3362. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142812729, 0.769894123, -0.315297604, 1.00000012, 2.98023224e-08, 2.98023224e-08, -7.4505806e-09, -0.923946202, 0.382522434, 2.98023224e-08, -0.382522523, -0.923946202))
  3363. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.16196157, 0.340119064))
  3364. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3365. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.014169693, -0.540971756, 1.88808012, 1.00000012, 2.98023224e-08, 2.98023224e-08, 0, 0.923836112, -0.38278845, 0, 0.38278845, 0.923835993))
  3366. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.453492463, 0.226746053))
  3367. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3368. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0142345428, 0.769889832, -0.0939731598, -1.00000012, -2.98023224e-08, -2.98023224e-08, -1.49011612e-08, -0.923993051, 0.382409662, 0, 0.382409692, 0.923992991))
  3369. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.16196157, 0.583061278))
  3370. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3371. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143318176, -1.25844002, 1.07650661, 1.00000012, 2.98023224e-08, 2.98023224e-08, -3.7252903e-09, 0.923928976, -0.382563949, -2.98023224e-08, 0.382564008, 0.923928976))
  3372. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.615454078, 0.890788138))
  3373. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3374. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143594742, -1.65409946, 0.329646587, 1, -1.38580799e-06, -3.48687172e-06, -3.35276127e-08, 0.92394191, -0.382532895, 3.78489494e-06, 0.382532895, 0.92394191))
  3375. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.275334716, 0.793611169))
  3376. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3377. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0144309998, 0.633481979, -0.47542429, -1.00000012, -2.98023224e-08, -2.98023224e-08, -1.11758709e-08, -0.923920572, 0.382584453, 2.98023224e-08, 0.382584512, 0.923920512))
  3378. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.145765424, 0.275334477))
  3379. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3380. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0142469406, 0.446671486, -0.734605312, -1.00000012, -2.98023224e-08, -2.98023224e-08, 1.11758709e-08, -0.923937678, 0.382543176, -5.96046448e-08, 0.382543325, 0.923937619))
  3381. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.275334716, 0.3077268))
  3382. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 1.79628587, 0.887265563))
  3383. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0143251419, 0.573383808, 1.31253004, -1.00000012, -2.98023224e-08, -2.98023224e-08, 2.98023224e-08, 0.383082122, 0.92371434, -1.49011612e-08, 0.92371428, -0.383082002))
  3384. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 1, 0.518276632))
  3385. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3386. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0146627426, -1.36505795, 1.12887478, 1.00000012, 2.98023224e-08, 2.98023224e-08, -2.98023224e-08, 0.38210234, 0.924120009, -3.7252903e-09, -0.924120188, 0.38210237))
  3387. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.566865504, 0.323922902))
  3388. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3389. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0144557953, 0.467606068, -0.753456116, 1.00000012, 2.98023224e-08, 2.98023224e-08, 2.60770321e-08, -0.923965275, 0.382476479, 0, -0.382476568, -0.923965216))
  3390. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.356315494, 0.161961451))
  3391. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3392. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.014333725, -2.05626631, -0.353295326, 1.00000012, 2.98023224e-08, 2.98023224e-08, -3.7252903e-09, 0.92394191, -0.382532805, 0, 0.382532895, 0.92394197))
  3393. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.631650209, 0.745022833))
  3394. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3395. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0143194199, 0.552689552, -0.753513813, -1.00000012, -2.98023224e-08, -2.98023224e-08, -1.86264515e-08, 0.923968136, -0.382469654, 0, -0.382469654, -0.923968077))
  3396. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.356315523, 0.161961451))
  3397. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3398. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142192841, 0.399952888, 2.41989946, 1.00000012, 2.98023224e-08, 2.98023224e-08, 3.35276127e-08, 0.923707485, -0.383098871, 0, 0.383098871, 0.923707426))
  3399. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.761219621, 0.680238068))
  3400. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3401. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0143661499, -0.935334206, -2.05619001, -1.00000012, -2.98023224e-08, -2.98023224e-08, -2.98023224e-08, 0.382503301, 0.923954129, 3.7252903e-09, 0.923954248, -0.382503211))
  3402. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.566865504, 0.631649613))
  3403. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3404. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142612457, -0.755482197, 1.63165283, 1.00000012, 2.98023224e-08, 2.98023224e-08, 0, 0.382535756, 0.923940659, 3.7252903e-09, -0.923940778, 0.382535726))
  3405. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.16196157, 0.323922902))
  3406. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3407. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0142774582, 0.573737621, -0.662068844, -1.00000012, -2.98023224e-08, -2.98023224e-08, 2.98023224e-08, 0.382720828, 0.923864007, 3.7252903e-09, 0.923864126, -0.382720768))
  3408. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.242942333, 0.0809807107))
  3409. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 2.14117265))
  3410. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0142974854, 2.95166492, 3.10171676, -1.00000012, -2.98023224e-08, -2.98023224e-08, 2.98023224e-08, 0.383082122, 0.92371434, -1.49011612e-08, 0.92371428, -0.383082002))
  3411. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.842200279, 1))
  3412. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3413. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0144081116, 0.752276421, -0.573189259, -1.00000012, -2.98023224e-08, -2.98023224e-08, -3.7252903e-09, 0.923968792, -0.382468104, 2.98023224e-08, -0.382468164, -0.923968673))
  3414. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.0971769989, 0.242942229))
  3415. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3416. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143461227, -0.864406586, 1.62925768, 1.00000012, 2.98023224e-08, 2.98023224e-08, 3.7252903e-09, 0.923863828, -0.382721543, 2.98023224e-08, 0.382721603, 0.923863888))
  3417. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.275334716, 0.356315255))
  3418. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3419. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142230988, -1.01077271, 0.396942616, 1.00000012, 2.98023224e-08, 2.98023224e-08, -7.4505806e-09, -0.92387718, 0.382689148, 2.98023224e-08, -0.382689238, -0.92387712))
  3420. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.16196157, 0.161961451))
  3421. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3422. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142660141, -0.139053822, 2.05354023, 1.00000012, 2.98023224e-08, 2.98023224e-08, 1.11758709e-08, 0.923669994, -0.383188933, 0, 0.383188993, 0.923670053))
  3423. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.453492463, 0.145765319))
  3424. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3425. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0143957138, 0.0443892479, -1.0795331, -1.00000012, -2.98023224e-08, -2.98023224e-08, 1.11758709e-08, -0.923923314, 0.382577747, 0, 0.382577837, 0.923923254))
  3426. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.631650209, 0.469688356))
  3427. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 1.10651183))
  3428. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143852234, -1.78688002, -2.02518988, 1.00000012, 2.98023224e-08, 2.98023224e-08, -1.11758709e-08, -0.923716426, 0.383077323, -2.98023224e-08, -0.383077323, -0.923716307))
  3429. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962584, 0.550669432, 1))
  3430. Wedge = part(Enum.FormFactor.Brick, m, Enum.Material.Neon, 0, 0, "Dark indigo", "Wedge", Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3431. Wedgeweld = weld(m, Orb2, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142145157, 1.14002323, 3.02335072, 1.00000012, 2.98023224e-08, 2.98023224e-08, 3.35276127e-08, 0.923707485, -0.383098871, 0, 0.383098871, 0.923707426))
  3432. mesh("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.161962539, 0.906985044, 0.680238068))
  3433.  
  3434. handle=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Handle",Vector3.new(0.800000012, 0.600000024, 0.400000036))
  3435. handleweld=weld(m,Character["Right Arm"],handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0999984741, 0.00293731689, -0.997625113, 0.999999762, 0, 0, -0, -2.98023224e-008, 1, 0, -0.999999642, -2.98023206e-008))
  3436. mesh("CylinderMesh",handle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3437. BarrelA=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,1,"Dark indigo","BarrelA",Vector3.new(0.400000006, 0.400000036, 0.200000003))
  3438. BarrelAweld=weld(m,handle,BarrelA,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-006, -0.501502991, 0.70533812, 0.999999762, 8.9397489e-013, -4.26325811e-014, 8.93974673e-013, -1, -7.63833441e-014, -4.2632554e-014, 7.81597009e-014, -0.999999762))
  3439. mesh("BlockMesh",BarrelA,"","",Vector3.new(0, 0, 0),Vector3.new(0.170000017, 1, 2))
  3440. BarrelB=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,1,"Dark indigo","BarrelB",Vector3.new(0.400000006, 0.400000036, 0.200000003))
  3441. BarrelBweld=weld(m,handle,BarrelB,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-006, 0.498413086, 0.705340028, 0.999999762, 8.93975215e-013, -4.26325811e-014, 8.93974998e-013, -1, -7.99360578e-014, -4.2632554e-014, 8.17124146e-014, -0.999999762))
  3442. mesh("BlockMesh",BarrelB,"","",Vector3.new(0, 0, 0),Vector3.new(0.170000017, 1, 2))
  3443. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000024, 2.60000038))
  3444. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.701442719, -0.600021362, 2.49932575, 0.999998927, 1.87752244e-006, -0.000799447123, -1.84774353e-006, 0.999999166, -1.93715053e-007, 0.000799283211, 2.23561045e-007, 0.999998808))
  3445. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3446. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.800000012, 0.200000003))
  3447. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-006, 0.405347705, 0.497962952, 0.999999285, -0, 0, 0, 1.49011647e-008, -0.999999046, -0, 0.999999762, 1.49011594e-008))
  3448. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3449. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.800000012, 0.200000003))
  3450. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-006, 0.405347705, 0.501495361, 0.999999285, -0, 0, 0, 1.49011647e-008, -0.999999046, -0, 0.999999762, 1.49011594e-008))
  3451. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.170000017, 1, 2))
  3452. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 1.00000012, 1.20000029))
  3453. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.700000763, -3.05175781e-005, -3.76701355e-005, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3454. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 2.20000005, 0.599999964))
  3455. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.700000763, -3.05175781e-005, 0.899943829, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3456. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.20000005, 0.200000003, 1.20000005))
  3457. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.599975586, 3.38554382e-005, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3458. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3459. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 1.79999995, 0.599999964))
  3460. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.709243774, -2.28881836e-005, 0.899943829, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3461. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.800000012, 0.200000003, 0.400000036))
  3462. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.399993896, -5.96046448e-006, 0.999999762, -0, 0, -0, 1, -1.77635684e-015, 0, 0, 0.999999762))
  3463. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3464. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.800000012, 0.99999994))
  3465. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.713443756, -0.500030518, 1.69926405, 0.999998927, -2.26500038e-006, -0.000799596135, 2.27987721e-006, 0.999999225, 1.93017172e-007, 0.000799476926, -2.231682e-007, 0.999998927))
  3466. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3467. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 1.20000017))
  3468. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700153351, -0.700019836, 0.000669956207, -0.999999106, 1.87757018e-006, 0.000799469941, 1.84774353e-006, 0.999999166, 1.34110437e-007, -0.000799469592, 1.63956443e-007, -0.999999166))
  3469. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3470. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000083, 2.60000038))
  3471. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.698387146, -0.599975586, 2.50042844, -0.999998689, -1.90737251e-006, -0.000799447123, 1.90734818e-006, -0.999998927, -1.34110465e-007, -0.000799282978, -1.64014665e-007, 0.999998808))
  3472. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3473. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000024, 2.5999999))
  3474. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.709453583, -0.399978638, 2.50040436, -0.999999166, 2.30715773e-006, -0.000799596135, -2.33717014e-006, -0.999999523, 2.5262176e-007, -0.000799476926, 2.82754144e-007, 0.999998927))
  3475. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3476. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000024, 0.600000024))
  3477. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.700153351, -0.80002594, -0.2993083, -0.999999106, 1.87757018e-006, 0.000799469941, 1.84774353e-006, 0.999999166, 1.34110437e-007, -0.000799469592, 1.63956443e-007, -0.999999166))
  3478. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3479. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000024, 0.599999964))
  3480. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.70142746, -0.80002594, 1.49932528, 0.999998927, 1.87752244e-006, -0.000799447123, -1.84774353e-006, 0.999999166, -1.93715053e-007, 0.000799283211, 2.23561045e-007, 0.999998808))
  3481. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3482. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000036, 1.20000005))
  3483. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699836731, -0.69997406, -0.000449538231, 0.999999344, -1.89480204e-006, 0.000799469941, -1.92476682e-006, -0.999999523, 1.93715039e-007, 0.000799469766, -2.23517404e-007, -0.999999166))
  3484. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3485. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.99999994, 0.200000003, 2))
  3486. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0999984741, 0.599975586, 0.999940634, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3487. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.40000045, 0.200000003, 1.20000005))
  3488. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.05175781e-005, -0.000755310059, 5.96046448e-005, -1.48553302e-013, -0.999995828, 2.98021838e-008, -0.999999762, -1.503297e-013, -2.98021909e-008, 2.98023295e-008, -2.9802214e-008, -0.999995589))
  3489. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.285999984, 1.01199996))
  3490. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000024, 0.599999964))
  3491. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.698394775, -0.799972534, 1.50044394, -0.999998689, -1.90737251e-006, -0.000799447123, 1.90734818e-006, -0.999998927, -1.34110465e-007, -0.000799282978, -1.64014665e-007, 0.999998808))
  3492. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3493. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.800000012, 0.200000003))
  3494. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-006, 0.405347705, -0.502029419, 0.999999285, -0, 0, 0, 1.49011647e-008, -0.999999046, -0, 0.999999762, 1.49011594e-008))
  3495. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3496. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.20000005, 0.400000006, 0.200000003))
  3497. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.39996767, 0.599975586, 0.999999762, -0, 0, 0, 1.49011647e-008, -0.999999523, -0, 0.999999762, 1.49011594e-008))
  3498. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3499. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000024, 0.600000024))
  3500. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.699840546, -0.799964905, -0.300427675, 0.999999344, -1.89480204e-006, 0.000799469941, -1.92476682e-006, -0.999999523, 1.93715039e-007, 0.000799469766, -2.23517404e-007, -0.999999166))
  3501. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3502. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
  3503. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.195159912, -0.900024414, 0.899938345, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3504. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  3505. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.194999695, -0.900024414, 0.200763583, -0.999999106, 1.87757018e-006, 0.000799469941, 1.84774353e-006, 0.999999166, 1.34110437e-007, -0.000799469592, 1.63956443e-007, -0.999999166))
  3506. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3507. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.20000005, 0.800000012, 0.400000006))
  3508. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.39996767, 0.499969482, 0.999999642, -0, 0, 0, 1.49011647e-008, -0.999999404, -0, 0.999999762, 1.49011594e-008))
  3509. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3510. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  3511. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.203845978, -0.899963379, 1.90046763, 0.99999851, -1.38333075e-006, 0.000811993901, 1.25192548e-006, 0.999998987, 9.15403871e-006, -0.00081211311, -9.18428123e-006, 0.999998808))
  3512. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3513. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.800000012, 0.999999881))
  3514. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.709457397, -0.499977112, 1.70040178, -0.999999166, 2.30715773e-006, -0.000799596135, -2.33717014e-006, -0.999999523, 2.5262176e-007, -0.000799476926, 2.82754144e-007, 0.999998927))
  3515. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3516. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.400000006, 0.800000012, 0.200000003))
  3517. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.405341506, -0.502037048, 0.999999285, -0, 0, 0, 1.49011647e-008, -0.999999046, -0, 0.999999762, 1.49011594e-008))
  3518. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.170000017, 1, 2))
  3519. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000143, 1.21000028))
  3520. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.708374023, -3.05175781e-005, -0.00504338741, 0.999999523, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999523))
  3521. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 1.20000005))
  3522. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.709457397, -0.500030518, 0.000697374344, -0.999999166, 1.89247135e-006, 0.000799469941, 1.86264469e-006, 0.999999225, 1.34110437e-007, -0.000799469533, 1.63927339e-007, -0.999999166))
  3523. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3524. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.20000005, 0.400000006, 0.200000003))
  3525. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.39996767, -0.600021362, 0.999999762, -0, 0, 0, 1.49011647e-008, -0.999999523, -0, 0.999999762, 1.49011594e-008))
  3526. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3527. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
  3528. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.196155548, -0.899963379, 1.90047097, 0.99999851, -1.38333075e-006, 0.000811993901, 1.25192548e-006, 0.999998987, 9.15403871e-006, -0.00081211311, -9.18428123e-006, 0.999998808))
  3529. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3530. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000024, 2.5999999))
  3531. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.713447571, -0.400032043, 2.49926639, 0.999998927, -2.26500038e-006, -0.000799596135, 2.27987721e-006, 0.999999225, 1.93017172e-007, 0.000799476926, -2.231682e-007, 0.999998927))
  3532. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3533. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 1.4000001, 2))
  3534. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.5, -3.05175781e-005, 0.999940634, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3535. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 1.20000005))
  3536. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.709461212, -0.499969482, -0.000437021255, 0.999999344, -1.89480204e-006, 0.000799469941, -1.92476682e-006, -0.999999523, 1.93715039e-007, 0.000799469766, -2.23517404e-007, -0.999999166))
  3537. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3538. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.20000005, 0.200000003, 1.20000005))
  3539. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.600028992, 3.38554382e-005, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3540. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3541. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1.20000005, 0.800000012, 0.400000006))
  3542. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.39996767, -0.500030518, 0.999999642, -0, 0, 0, 1.49011647e-008, -0.999999404, -0, 0.999999762, 1.49011594e-008))
  3543. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3544. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(1.40000045, 0.200000018, 1.20000005))
  3545. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-005, -0.000755310059, 6.81877136e-005, 8.88178631e-016, -1, 2.98023206e-008, -0.999999762, -1.77635769e-015, -2.98023224e-008, 2.98023224e-008, -2.98023259e-008, -0.999999762))
  3546. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3547. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
  3548. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.190341949, -0.900024414, 0.899938345, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3549. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.800000012, 0.200000003, 0.400000036))
  3550. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.400001526, -5.96046448e-006, 0.999999762, -0, 0, -0, 1, -1.77635684e-015, 0, 0, 0.999999762))
  3551. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3552. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.400000006, 0.400000036))
  3553. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.190494537, -0.900024414, 0.200588226, -0.999999106, 1.87757018e-006, 0.000799469941, 1.84774353e-006, 0.999999166, 1.34110437e-007, -0.000799469592, 1.63956443e-007, -0.999999166))
  3554. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3555. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000024, 0.600000024))
  3556. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.709449768, -0.600021362, -0.299300909, -0.999999166, 1.89247135e-006, 0.000799469941, 1.86264469e-006, 0.999999225, 1.34110437e-007, -0.000799469533, 1.63927339e-007, -0.999999166))
  3557. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3558. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.200000152, 2.61000037))
  3559. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.708377838, 2.28881836e-005, -2.50490212, 0.999999642, -0, 0, 0, -0.999999702, -4.470348e-008, 0, 2.98023295e-008, -0.999999344))
  3560. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.20000000298023,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000024, 0.600000024))
  3561. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.709445953, -0.599967957, -0.300435305, 0.999999344, -1.89480204e-006, 0.000799469941, -1.92476682e-006, -0.999999523, 1.93715039e-007, 0.000799469766, -2.23517404e-007, -0.999999166))
  3562. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3563. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(1, 0.200000003, 2))
  3564. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0999984741, -0.600021362, 0.999940634, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3565. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Dark indigo","Part",Vector3.new(0.200000003, 0.600000143, 2.60000014))
  3566. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.700000763, -3.05175781e-005, 2.49992704, 0.999999762, -0, 0, -0, 1, 1.77635684e-015, 0, -3.55271368e-015, 0.999999762))
  3567.  
  3568. BladeHandle=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,0,"Dark indigo","BladeHandle",Vector3.new(0.200000003, 1, 3.39999986))
  3569. BladeHandleweld=weld(m,Character["Right Arm"],BladeHandle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0872383118, -1.20300293, 0.302297354, 1, -2.21671375e-008, 7.04762897e-008, -7.04762684e-008, 2.98023188e-008, 0.999999404, -2.2167157e-008, -0.999999285, 2.98023224e-008))
  3570. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,1,"Dark indigo","Hitbox",Vector3.new(0.200000003, 4.79999971, 1))
  3571. Hitboxweld=weld(m,BladeHandle,Hitbox,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.699994326, 0, 1, -9.99836402e-007, 1.80018773e-007, -1.80019143e-007, 1.49011647e-008, 0.999998808, -9.99837425e-007, -0.999998808, 1.49011719e-008))
  3572. BladePart=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,0,"Dark indigo","BladePart",Vector3.new(0.220000014, 0.200000003, 3.4000001))
  3573. BladePartweld=weld(m,BladeHandle,BladePart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00135803223, -0.393920898, -0.000129699707, -0.999998927, 2.05645279e-006, 0.000802798022, -2.0555824e-006, -0.999997914, 3.17394552e-006, 0.000802962692, 3.11428425e-006, 0.999998093))
  3574. BladePart=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,0,"Dark indigo","BladePart",Vector3.new(0.200000003, 0.220000014, 0.800000072))
  3575. BladePartweld=weld(m,BladeHandle,BladePart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.399986267, -5.7220459e-006, 1.70002365, 1.42108547e-014, -0.999998808, -1.77635684e-015, -1, 2.13162821e-014, -2.98022744e-008, 2.98023828e-008, -3.55271368e-015, -0.999998808))
  3576. mesh("CylinderMesh",BladePart,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3577. BladePart=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,0,"Dark indigo","BladePart",Vector3.new(0.200000003, 0.220000014, 0.800000072))
  3578. BladePartweld=weld(m,BladeHandle,BladePart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.400005341, -5.7220459e-006, 1.70001566, 4.33431069e-013, -0.999998093, 1.63424829e-013, -1, -9.23705556e-014, -2.98015639e-008, 2.98019547e-008, 2.14939178e-013, -0.999998093))
  3579. mesh("CylinderMesh",BladePart,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3580. BladePart=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,0,"Dark indigo","BladePart",Vector3.new(0.220000014, 0.200000003, 0.399999976))
  3581. BladePartweld=weld(m,BladeHandle,BladePart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00168228149, -0.399024963, 1.89990211, 0.999998748, -2.1309047e-006, 0.000802797964, 2.13086582e-006, 0.999997854, 3.29315458e-006, -0.000802962575, -3.21859238e-006, 0.999998093))
  3582. mesh("SpecialMesh",BladePart,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3583. BladePart=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,0,"Dark indigo","BladePart",Vector3.new(0.220000014, 0.200000003, 3.4000001))
  3584. BladePartweld=weld(m,BladeHandle,BladePart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00168037415, -0.399391174, -0.000123500824, 0.999998748, -2.1309047e-006, 0.000802797964, 2.13086582e-006, 0.999997854, 3.29315458e-006, -0.000802962575, -3.21859238e-006, 0.999998093))
  3585. BladePart=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,0,"Dark indigo","BladePart",Vector3.new(0.220000014, 0.200000003, 0.399999976))
  3586. BladePartweld=weld(m,BladeHandle,BladePart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00135612488, -0.39358139, 1.89990449, -0.999998927, 2.05645279e-006, 0.000802798022, -2.0555824e-006, -0.999997914, 3.17394552e-006, 0.000802962692, 3.11428425e-006, 0.999998093))
  3587. mesh("SpecialMesh",BladePart,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3588. BladePart=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,0,"Dark indigo","BladePart",Vector3.new(0.200000003, 0.520000041, 1.39999998))
  3589. BladePartweld=weld(m,BladeHandle,BladePart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00136566162, -0.239994049, 2.3998909, 0.999999166, -1.95434222e-006, -0.000799282745, 1.92285847e-006, 0.999998212, -1.86264401e-006, 0.000799447356, 2.07120365e-006, 0.999998033))
  3590. mesh("SpecialMesh",BladePart,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3591. BladePart=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,0,"Dark indigo","BladePart",Vector3.new(1.00000012, 0.200000003, 1.00000012))
  3592. BladePartweld=weld(m,BladeHandle,BladePart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.62939453e-006, -5.7220459e-006, 1.60001981, 3.26849658e-013, -0.999999404, -3.01980663e-014, -1, -3.05533376e-013, -2.98017593e-008, 2.98018055e-008, 2.84217094e-014, -0.999999404))
  3593. mesh("CylinderMesh",BladePart,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3594. BladePart=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0.20000000298023,0,"Dark indigo","BladePart",Vector3.new(0.200000003, 0.479999989, 1.39999998))
  3595. BladePartweld=weld(m,BladeHandle,BladePart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00135612488, -0.260002136, 2.39991736, -0.999998927, 2.05645279e-006, 0.000802798022, -2.0555824e-006, -0.999997914, 3.17394552e-006, 0.000802962692, 3.11428425e-006, 0.999998093))
  3596. mesh("SpecialMesh",BladePart,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3597.  
  3598. char.Head.face.Texture = "rbxassetid://0"
  3599.  
  3600. purple = Color3.new(0.5, 0.05, 1)
  3601. local p = game.Players.LocalPlayer
  3602. local char = p.Character
  3603. local mouse = p:GetMouse()
  3604. local larm = char["Left Arm"]
  3605. local rarm = char["Right Arm"]
  3606. local lleg = char["Left Leg"]
  3607. local rleg = char["Right Leg"]
  3608. local hed = char.Head
  3609. local torso = char.Torso
  3610. local hum = char.Humanoid
  3611. local cam = game.Workspace.CurrentCamera
  3612. local root = char.HumanoidRootPart
  3613. local deb = false
  3614. local shot = 0
  3615. local debris=game:service"Debris"
  3616. local l = game:GetService("Lighting")
  3617. local rs = game:GetService("RunService").RenderStepped
  3618. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  3619. math.randomseed(os.time())
  3620. for i,v in pairs (hed:GetChildren()) do
  3621. if v:IsA("Sound") then
  3622. v:Destroy()
  3623. end
  3624. end
  3625. ----------------------------------------------------
  3626. Debounces = {
  3627. CanAttack = true;
  3628. NoIdl = false;
  3629. Slashing = false;
  3630. Slashed = false;
  3631. RPunch = false;
  3632. RPunched = false;
  3633. LPunch = false;
  3634. LPunched = false;
  3635. }
  3636. local Touche = {char.Name, }
  3637. ----------------------------------------------------
  3638. function lerp(a, b, t) -- Linear interpolation
  3639. return a + (b - a)*t
  3640. end
  3641.  
  3642. function slerp(a, b, t) --Spherical interpolation
  3643. dot = a:Dot(b)
  3644. if dot > 0.99999 or dot < -0.99999 then
  3645. return t <= 0.5 and a or b
  3646. else
  3647. r = math.acos(dot)
  3648. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  3649. end
  3650. end
  3651.  
  3652. function matrixInterpolate(a, b, t)
  3653. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  3654. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  3655. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  3656. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  3657. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  3658. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  3659. local t = v1:Dot(v2)
  3660. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  3661. return CFrame.new()
  3662. end
  3663. return CFrame.new(
  3664. v0.x, v0.y, v0.z,
  3665. v1.x, v1.y, v1.z,
  3666. v2.x, v2.y, v2.z,
  3667. v3.x, v3.y, v3.z)
  3668. end
  3669. ----------------------------------------------------
  3670. function genWeld(a,b)
  3671. local w = Instance.new("Weld",a)
  3672. w.Part0 = a
  3673. w.Part1 = b
  3674. return w
  3675. end
  3676. function weld(a, b)
  3677. local weld = Instance.new("Weld")
  3678. weld.Name = "W"
  3679. weld.Part0 = a
  3680. weld.Part1 = b
  3681. weld.C0 = a.CFrame:inverse() * b.CFrame
  3682. weld.Parent = a
  3683. return weld;
  3684. end
  3685. ----------------------------------------------------
  3686. function Lerp(c1,c2,al)
  3687. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  3688. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  3689. for i,v in pairs(com1) do
  3690. com1[i] = v+(com2[i]-v)*al
  3691. end
  3692. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  3693. end
  3694. ----------------------------------------------------
  3695. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  3696. local wld = Instance.new("Weld", wp1)
  3697. wld.Part0 = wp0
  3698. wld.Part1 = wp1
  3699. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  3700. end
  3701. ----------------------------------------------------
  3702. function Tween(a,b,c)
  3703. return a+(b-a)*c
  3704. end
  3705. ----------------------------------------------------
  3706. function FindNearestTorso(Position,Distance,SinglePlayer)
  3707. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3708. local List = {}
  3709. for i,v in pairs(workspace:GetChildren())do
  3710. if v:IsA("Model")then
  3711. if v:findFirstChild("Torso")then
  3712. if v ~= char then
  3713. if(v.Torso.Position -Position).magnitude <= Distance then
  3714. table.insert(List,v)
  3715. end
  3716. end
  3717. end
  3718. end
  3719. end
  3720. return List
  3721. end
  3722.  
  3723. mod3 = Instance.new("Model",rleg)
  3724.  
  3725. function Stomp()
  3726. part=Instance.new('Part',mod3)
  3727. part.Anchored=true
  3728. part.CanCollide=false
  3729. part.FormFactor='Custom'
  3730. part.Size=Vector3.new(.2,.2,.2)
  3731. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3732. part.Transparency=.7
  3733. part.BrickColor=BrickColor.new('Bright green')
  3734. mesh=Instance.new('SpecialMesh',part)
  3735. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3736. mesh.Scale=Vector3.new(25,25,25)
  3737. part2=part:clone()
  3738. part2.Parent=mod3
  3739. part2.BrickColor=BrickColor.new('Bright green')
  3740. mesh2=mesh:clone()
  3741. mesh2.Parent=part2
  3742. mesh2.Scale=Vector3.new(15,15,15)
  3743. part3=part:clone()
  3744. part3.Parent=mod3
  3745. part3.TopSurface=0
  3746. part3.BottomSurface=0
  3747. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3748. mesh3=Instance.new('SpecialMesh',part3)
  3749. mesh3.MeshType = 3
  3750. mesh3.Scale=Vector3.new(12,12,12)
  3751. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3752. if v:FindFirstChild('Humanoid') then
  3753. v.Humanoid:TakeDamage(math.random(20,60))
  3754. v.Humanoid.PlatformStand = true
  3755. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3756. end
  3757. end
  3758. coroutine.resume(coroutine.create(function()
  3759. for i=0,3.8,0.05 do
  3760. wait()
  3761. part.CFrame=part.CFrame
  3762. part.Transparency=i
  3763. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3764. part2.CFrame=part2.CFrame
  3765. part2.Transparency=i
  3766. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3767. part3.CFrame=part3.CFrame
  3768. part3.Transparency=i
  3769. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3770. end
  3771. end))
  3772. end
  3773. ----------------------------------------------------
  3774. function nwPrt(prnt,siz,cf,col)
  3775. local prt=Instance.new("Part")
  3776. prt.Parent=prnt
  3777. prt.FormFactor=3
  3778. prt.Name="Part"
  3779. prt.Size=siz
  3780. prt.CanCollide=false
  3781. prt.Anchored=true
  3782. prt.Locked=true
  3783. prt.TopSurface=10
  3784. prt.BottomSurface=10
  3785. prt.FrontSurface=10
  3786. prt.BackSurface=10
  3787. prt.LeftSurface=10
  3788. prt.RightSurface=10
  3789. prt:BreakJoints()
  3790. prt.CFrame=cf or CFrame.new(30,10,30)
  3791. prt.Material="Neon"
  3792. prt.BrickColor=BrickColor.new(col)
  3793. m=Instance.new("SpecialMesh",prt)
  3794. m.MeshType=6
  3795. return prt
  3796. end
  3797. ----------------------------------------------------
  3798. function nwSnd(prnt,pch,vol,id)
  3799. local s=Instance.new("Sound",prnt)
  3800. s.Pitch=pch
  3801. s.Volume=vol
  3802. s.SoundId="rbxassetid://"..id
  3803. s.PlayOnRemove=true
  3804. return s
  3805. end
  3806. ----------------------------------------------------
  3807. function newRay(start,face,range,wat)
  3808. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3809. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3810. return rey,hit,pos
  3811. end
  3812. ----------------------------------------------------
  3813. function Lerp(c1,c2,al)
  3814. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  3815. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  3816. for i,v in pairs(com1) do
  3817. com1[i] = v+(com2[i]-v)*al
  3818. end
  3819. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  3820. end
  3821. ----------------------------------------------------
  3822. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  3823. local wld = Instance.new("Weld", wp1)
  3824. wld.Part0 = wp0
  3825. wld.Part1 = wp1
  3826. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  3827. end
  3828. ----------------------------------------------------
  3829. function weld5(part0, part1, c0, c1)
  3830. weeld=Instance.new("Weld", part0)
  3831. weeld.Part0=part0
  3832. weeld.Part1=part1
  3833. weeld.C0=c0
  3834. weeld.C1=c1
  3835. return weeld
  3836. end
  3837. ----------------------------------------------------
  3838. function HasntTouched(plrname)
  3839. local ret = true
  3840. for _, v in pairs(Touche) do
  3841. if v == plrname then
  3842. ret = false
  3843. end
  3844. end
  3845. return ret
  3846. end
  3847. ----------------------------------------------------
  3848. newWeld(torso, larm, -1.5, 0.5, 0)
  3849. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  3850. newWeld(torso, rarm, 1.5, 0.5, 0)
  3851. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  3852. newWeld(torso, hed, 0, 1.5, 0)
  3853. newWeld(torso, lleg, -0.5, -1, 0)
  3854. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  3855. newWeld(torso, rleg, 0.5, -1, 0)
  3856. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  3857. newWeld(root, torso, 0, -1, 0)
  3858. torso.Weld.C1 = CFrame.new(0, -1, 0)
  3859. ----------------------------------------------------
  3860. z = Instance.new("Sound", char)
  3861. z.SoundId = "rbxassetid://"--303570180
  3862. z.Looped = true
  3863. z.Pitch = 1
  3864. z.Volume = 1
  3865. wait(.1)
  3866. z:Play()
  3867. ----------------------------------------------------
  3868. local Transforming = true
  3869. hum.WalkSpeed = 0
  3870. local fx = Instance.new("Part",torso)
  3871. fx.Anchored = true
  3872. fx.Material = "Neon"
  3873. fx.CanCollide = false
  3874. fx.Locked = true
  3875. fx.Transparency = 1
  3876. fx.Material = "Neon"
  3877. fx.Size = Vector3.new(1,1,1)
  3878. fx.TopSurface = "SmoothNoOutlines"
  3879. fx.BottomSurface = "SmoothNoOutlines"
  3880. fx.BrickColor = BrickColor.new("Really black")
  3881. fxm = Instance.new("SpecialMesh",fx)
  3882. fxm.MeshType = "Sphere"
  3883. fxm.Scale = Vector3.new(1,1,1)
  3884. for i = 1, 20 do rs:wait()
  3885. fx.Transparency = fx.Transparency - (1/20)
  3886. fx.CFrame = torso.CFrame
  3887. fxm.Scale = fxm.Scale + Vector3.new(0.5,0.5,0.5)
  3888. rs:wait()
  3889. end
  3890. ----------------------------------------------------
  3891. GroundWave1 = function()
  3892. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  3893. local Colors = {"Royal purple", "Really black"}
  3894. local wave = Instance.new("Part", torso)
  3895. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  3896. wave.Anchored = true
  3897. wave.CanCollide = false
  3898. wave.Locked = true
  3899. wave.Size = Vector3.new(1, 1, 1)
  3900. wave.TopSurface = "Smooth"
  3901. wave.BottomSurface = "Smooth"
  3902. wave.Transparency = 0.35
  3903. wave.CFrame = HandCF
  3904. wm = Instance.new("SpecialMesh", wave)
  3905. wm.MeshId = "rbxassetid://3270017"
  3906. coroutine.wrap(function()
  3907. for i = 1, 30, 1 do
  3908. wm.Scale = Vector3.new(50, 50, 1 + i*50)
  3909. wave.Size = wm.Scale
  3910. wave.CFrame = HandCF
  3911. wave.Transparency = i/30
  3912. wait()
  3913. end
  3914. wait()
  3915. wave:Destroy()
  3916. end)()
  3917. end
  3918. ----------------------------------------------------
  3919. GroundWave = function()
  3920. if Transforming == true then
  3921. local wave = Instance.new("Part", torso)
  3922. wave.BrickColor = BrickColor.new("Royal purple")
  3923. wave.Anchored = true
  3924. wave.CanCollide = false
  3925. wave.Locked = true
  3926. wave.Size = Vector3.new(1, 1, 1)
  3927. wave.TopSurface = "Smooth"
  3928. wave.BottomSurface = "Smooth"
  3929. wave.Transparency = 0.35
  3930. wave.CFrame = fx.CFrame
  3931. wave.Material = "Neon"
  3932. wm = Instance.new("SpecialMesh", wave)
  3933. wm.MeshType = "Sphere"
  3934. wm.Scale = Vector3.new(1,1,1)
  3935. local wave2 = Instance.new("Part", torso)
  3936. wave2.BrickColor = BrickColor.new("Royal purple")
  3937. wave2.Anchored = true
  3938. wave2.CanCollide = false
  3939. wave2.Locked = true
  3940. wave2.Size = Vector3.new(1, 1, 1)
  3941. wave2.TopSurface = "Smooth"
  3942. wave2.BottomSurface = "Smooth"
  3943. wave2.Transparency = 0.35
  3944. wave2.CFrame = fx.CFrame
  3945. wave2.Material = "Neon"
  3946. wm2 = Instance.new("SpecialMesh", wave2)
  3947. wm2.MeshType = "FileMesh"
  3948. wm2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3949. wm2.Scale = Vector3.new(1,1,1)
  3950. local wave3 = Instance.new("Part", torso)
  3951. wave3.BrickColor = BrickColor.new("Really black")
  3952. wave3.Anchored = true
  3953. wave3.CanCollide = false
  3954. wave3.Locked = true
  3955. wave3.Size = Vector3.new(1, 1, 1)
  3956. wave3.TopSurface = "Smooth"
  3957. wave3.BottomSurface = "Smooth"
  3958. wave3.Transparency = 0.35
  3959. wave3.CFrame = fx.CFrame
  3960. wave3.Material = "Neon"
  3961. wm3 = Instance.new("SpecialMesh", wave3)
  3962. wm3.MeshType = "FileMesh"
  3963. wm3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3964. wm3.Scale = Vector3.new(1,1,1)
  3965. coroutine.wrap(function()
  3966. for i = 1, 18, 1 do
  3967. wm.Scale = Vector3.new(2 + i*5, 2 + i*5, 2 + i*5)
  3968. wm2.Scale = Vector3.new(2 + i*10, 2 + i*10, 15)
  3969. wm3.Scale = Vector3.new(2 + i*12.5, 2 + i*12.5, 5)
  3970. --wave.Size = wm.Scale
  3971. wave.CFrame = fx.CFrame
  3972. wave.Transparency = i/14
  3973. --wave2.Size = wm2.Scale
  3974. wave2.CFrame = fx.CFrame
  3975. wave2.Rotation = Vector3.new(90, 0, 0)
  3976. wave2.Transparency = i/14
  3977. --wave3.Size = wm3.Scale
  3978. wave3.CFrame = fx.CFrame
  3979. wave3.Rotation = Vector3.new(90, 0, 0)
  3980. wave3.Transparency = i/14
  3981. wait()
  3982. end
  3983. wait()
  3984. wave:Destroy()
  3985. wave2:Destroy()
  3986. wave3:Destroy()
  3987. end)()
  3988. elseif Transforming == false then
  3989. wait()
  3990. end
  3991. end
  3992.  
  3993. for i = 1, 100 do rs:wait()
  3994. fx.CFrame = torso.CFrame
  3995. end
  3996.  
  3997. Spawn(function()
  3998. while wait(1) do
  3999. GroundWave()
  4000. end
  4001. end)
  4002.  
  4003. wait(4)
  4004.  
  4005. Transforming = false
  4006.  
  4007. for i = 1, 20 do rs:wait()
  4008. fx.Transparency = fx.Transparency + (1/20)
  4009. fx.CFrame = torso.CFrame
  4010. fxm.Scale = fxm.Scale + Vector3.new(0.5,0.5,0.5)
  4011. rs:wait()
  4012. end
  4013.  
  4014. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  4015. local wave = Instance.new("Part", torso)
  4016. wave.BrickColor = BrickColor.new("Royal purple")
  4017. wave.Anchored = true
  4018. wave.CanCollide = false
  4019. wave.Locked = true
  4020. wave.Size = Vector3.new(1, 1, 1)
  4021. wave.TopSurface = "Smooth"
  4022. wave.BottomSurface = "Smooth"
  4023. wave.Transparency = 0.35
  4024. wave.CFrame = HandCF
  4025. wm = Instance.new("SpecialMesh", wave)
  4026. wm.MeshId = "rbxassetid://3270017"
  4027. local wave2 = Instance.new("Part", torso)
  4028. wave2.BrickColor = BrickColor.new("Really black")
  4029. wave2.Anchored = true
  4030. wave2.CanCollide = false
  4031. wave2.Locked = true
  4032. wave2.Size = Vector3.new(1, 1, 1)
  4033. wave2.TopSurface = "Smooth"
  4034. wave2.BottomSurface = "Smooth"
  4035. wave2.Transparency = 0.35
  4036. wave2.CFrame = HandCF
  4037. wm2 = Instance.new("SpecialMesh", wave2)
  4038. wm2.MeshId = "rbxassetid://3270017"
  4039. local wave3 = Instance.new("Part", torso)
  4040. wave3.BrickColor = BrickColor.new("Royal purple")
  4041. wave3.Anchored = true
  4042. wave3.CanCollide = false
  4043. wave3.Locked = true
  4044. wave3.Size = Vector3.new(1, 1, 1)
  4045. wave3.TopSurface = "Smooth"
  4046. wave3.BottomSurface = "Smooth"
  4047. wave3.Transparency = 0.35
  4048. wave3.CFrame = HandCF
  4049. wm3 = Instance.new("SpecialMesh", wave3)
  4050. wm3.MeshId = "rbxassetid://3270017"
  4051. coroutine.wrap(function()
  4052. for i = 1, 14, 1 do
  4053. wm.Scale = Vector3.new(50, 50, 1 + i*200)
  4054. wave.Size = wm.Scale
  4055. wave.CFrame = HandCF
  4056. wave.Transparency = i/14
  4057. wm2.Scale = Vector3.new(50 + i*5, 50 + i*5, 0 + i*10)
  4058. wave2.Size = wm2.Scale
  4059. wave2.CFrame = HandCF
  4060. wave2.Transparency = i/14
  4061. wm3.Scale = Vector3.new(0 + i*50, 0 + i*50, 1)
  4062. wave3.Size = wm2.Scale
  4063. wave3.CFrame = HandCF
  4064. wave3.Transparency = i/14
  4065. wait()
  4066. end
  4067. wait()
  4068. wave:Destroy()
  4069. wave2:Destroy()
  4070. end)()
  4071. hum.WalkSpeed = 16
  4072. ----------------------------------------------------
  4073. local cor = Instance.new("Part", char)
  4074. cor.Name = "Thingy"
  4075. cor.Locked = true
  4076. cor.BottomSurface = 0
  4077. cor.CanCollide = false
  4078. cor.Size = Vector3.new(1, 13, 1)
  4079. cor.Transparency = 1
  4080. cor.TopSurface = 0
  4081. corw = Instance.new("Weld", cor)
  4082. corw.Part0 = rarm
  4083. corw.Part1 = cor
  4084. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4085. corw.C1 = CFrame.new(0, 0, 0)
  4086. weld1 = Instance.new("Weld", char)
  4087. weld1.Part0 = cor
  4088. weld1.Part1 = p6
  4089. weld1.C0 = CFrame.new(0, 0, 0)
  4090. ----------------------------------------------------
  4091. Blast = function()
  4092. local Colors = {"Really black", "Really black"}
  4093. local wave = Instance.new("Part", torso)
  4094. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  4095. wave.Anchored = true
  4096. wave.CanCollide = false
  4097. wave.Locked = true
  4098. wave.Size = Vector3.new(1, 1, 1)
  4099. wave.TopSurface = "Smooth"
  4100. wave.BottomSurface = "Smooth"
  4101. wave.Transparency = 0.35
  4102. wave.CFrame = rarm.CFrame
  4103. wm = Instance.new("SpecialMesh", wave)
  4104. wm.MeshType = "Sphere"
  4105. wm.Scale = Vector3.new(1,1,1)
  4106. z = Instance.new("Sound",wave)
  4107. z.SoundId = "rbxassetid://237035051"
  4108. z.Volume = 1
  4109. z.Pitch = .9
  4110. z:Play()
  4111. coroutine.wrap(function()
  4112. for i = 1, 30, 1 do
  4113. wave.Size = Vector3.new(1 + i*4, 1 + i*4, 1 + i*4)
  4114. --wave.Size = wm.Scale
  4115. wave.CFrame = rarm.CFrame
  4116. wave.Transparency = (1/14)
  4117. rs:wait()
  4118. end
  4119. rs:wait()
  4120. wave:Destroy()
  4121. z:Destroy()
  4122. end)()
  4123. end
  4124. ----------------------------------------------------
  4125. rarm.Touched:connect(function(ht)
  4126. hit = ht.Parent
  4127. if ht and hit:IsA("Model") then
  4128. if hit:FindFirstChild("Humanoid") then
  4129. if hit.Name ~= p.Name then
  4130. if Debounces.RPunch == true and Debounces.RPunched == false then
  4131. Debounces.RPunched = true
  4132. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  4133. if Debounces.ks==true then
  4134. z = Instance.new("Sound",hed)
  4135. z.SoundId = "rbxassetid://588693156"
  4136. z.Pitch = ptz[math.random(1,#ptz)]
  4137. z.Volume = 1
  4138. z:Play()
  4139. end
  4140. wait(.2)
  4141. Debounces.RPunched = false
  4142. end
  4143. end
  4144. end
  4145. elseif ht and hit:IsA("Hat") then
  4146. if hit.Parent.Name ~= p.Name then
  4147. if hit.Parent:FindFirstChild("Humanoid") then
  4148. if Debounces.RPunch == true and Debounces.RPunched == false then
  4149. Debounces.RPunched = true
  4150. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  4151. if Debounces.ks==true then
  4152. z = Instance.new("Sound",hed)
  4153. z.SoundId = "rbxassetid://588693156"
  4154. z.Pitch = ptz[math.random(1,#ptz)]
  4155. z.Volume = 1
  4156. z:Play()
  4157. end
  4158. wait(.2)
  4159. Debounces.RPunched = false
  4160. end
  4161. end
  4162. end
  4163. end
  4164. end)
  4165. larm.Touched:connect(function(ht)
  4166. hit = ht.Parent
  4167. if ht and hit:IsA("Model") then
  4168. if hit:FindFirstChild("Humanoid") then
  4169. if hit.Name ~= p.Name then
  4170. if Debounces.LPunch == true and Debounces.LPunched == false then
  4171. Debounces.LPunched = true
  4172. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  4173. if Debounces.ks2==true then
  4174. z = Instance.new("Sound",hed)
  4175. z.SoundId = "rbxassetid://588693156"
  4176. z.Pitch = ptz[math.random(1,#ptz)]
  4177. z.Volume = 1
  4178. z:Play()
  4179. end
  4180. wait(.2)
  4181. Debounces.LPunched = false
  4182. end
  4183. end
  4184. end
  4185. elseif ht and hit:IsA("Hat") then
  4186. if hit.Parent.Name ~= p.Name then
  4187. if hit.Parent:FindFirstChild("Humanoid") then
  4188. if Debounces.LPunch == true and Debounces.LPunched == false then
  4189. Debounces.LPunched = true
  4190. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  4191. if Debounces.ks2==true then
  4192. z = Instance.new("Sound",hed)
  4193. z.SoundId = "rbxassetid://588693156"
  4194. z.Pitch = ptz[math.random(1,#ptz)]
  4195. z.Volume = 1
  4196. z:Play()
  4197. end
  4198. wait(.2)
  4199. Debounces.LPunched = false
  4200. end
  4201. end
  4202. end
  4203. end
  4204. end)
  4205. ----------------------------------------------------
  4206. mod4 = Instance.new("Model",char)
  4207.  
  4208. ptez = {0.7, 0.8, 0.9, 1}
  4209.  
  4210. function FindNearestTorso(Position,Distance,SinglePlayer)
  4211. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4212. local List = {}
  4213. for i,v in pairs(workspace:GetChildren())do
  4214. if v:IsA("Model")then
  4215. if v:findFirstChild("Torso")then
  4216. if v ~= char then
  4217. if(v.Torso.Position -Position).magnitude <= Distance then
  4218. table.insert(List,v)
  4219. end
  4220. end
  4221. end
  4222. end
  4223. end
  4224. return List
  4225. end
  4226.  
  4227. function Punch()
  4228. part=Instance.new('Part',mod4)
  4229. part.Anchored=true
  4230. part.CanCollide=false
  4231. part.FormFactor='Custom'
  4232. part.Size=Vector3.new(.2,.2,.2)
  4233. part.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(0),0,0)
  4234. part.Transparency=.7
  4235. part.BrickColor=BrickColor.new('Really black')
  4236. mesh=Instance.new('SpecialMesh',part)
  4237. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  4238. mesh.Scale=Vector3.new(3,3,3)
  4239. part2=Instance.new('Part',mod4)
  4240. part2.Anchored=true
  4241. part2.CanCollide=false
  4242. part2.FormFactor='Custom'
  4243. part2.Size=Vector3.new(.2,.2,.2)
  4244. part2.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(90),0,0)
  4245. part2.Transparency=.7
  4246. part2.BrickColor=BrickColor.new('Really black')
  4247. mesh2=Instance.new('SpecialMesh',part2)
  4248. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  4249. mesh2.Scale=Vector3.new(3,1.5,3)
  4250. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  4251. if v:FindFirstChild('Humanoid') then
  4252. v.Humanoid:TakeDamage(math.random(2,6))
  4253. end
  4254. end
  4255. coroutine.resume(coroutine.create(function()
  4256. for i=0,0.62,0.4 do
  4257. wait()
  4258. part.CFrame=part.CFrame
  4259. part.Transparency=i
  4260. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  4261. part2.CFrame=part2.CFrame
  4262. part2.Transparency=i
  4263. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  4264. end
  4265. part.Parent=nil
  4266. part2.Parent=nil
  4267. end))
  4268. end
  4269. ----------------------------------------------------
  4270. rarm.Touched:connect(function(ht)
  4271. hit = ht.Parent
  4272. if ht and hit:IsA("Model") then
  4273. if hit:FindFirstChild("Humanoid") then
  4274. if hit.Name ~= p.Name then
  4275. if Debounces.RPunch == true and Debounces.RPunched == false then
  4276. Debounces.RPunched = true
  4277. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  4278. if Debounces.ks==true then
  4279. z = Instance.new("Sound",hed)
  4280. z.SoundId = "rbxassetid://588693156"
  4281. z.Pitch = ptz[math.random(1,#ptz)]
  4282. z.Volume = 1
  4283. z:Play()
  4284. end
  4285. wait(.2)
  4286. Debounces.RPunched = false
  4287. end
  4288. end
  4289. end
  4290. elseif ht and hit:IsA("Hat") then
  4291. if hit.Parent.Name ~= p.Name then
  4292. if hit.Parent:FindFirstChild("Humanoid") then
  4293. if Debounces.RPunch == true and Debounces.RPunched == false then
  4294. Debounces.RPunched = true
  4295. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  4296. if Debounces.ks==true then
  4297. z = Instance.new("Sound",hed)
  4298. z.SoundId = "rbxassetid://588693156"
  4299. z.Pitch = ptz[math.random(1,#ptz)]
  4300. z.Volume = 1
  4301. z:Play()
  4302. end
  4303. wait(.2)
  4304. Debounces.RPunched = false
  4305. end
  4306. end
  4307. end
  4308. end
  4309. end)
  4310. larm.Touched:connect(function(ht)
  4311. hit = ht.Parent
  4312. if ht and hit:IsA("Model") then
  4313. if hit:FindFirstChild("Humanoid") then
  4314. if hit.Name ~= p.Name then
  4315. if Debounces.LPunch == true and Debounces.LPunched == false then
  4316. Debounces.LPunched = true
  4317. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  4318. if Debounces.ks2==true then
  4319. z = Instance.new("Sound",hed)
  4320. z.SoundId = "rbxassetid://588693156"
  4321. z.Pitch = ptz[math.random(1,#ptz)]
  4322. z.Volume = 1
  4323. z:Play()
  4324. end
  4325. wait(.2)
  4326. Debounces.LPunched = false
  4327. end
  4328. end
  4329. end
  4330. elseif ht and hit:IsA("Hat") then
  4331. if hit.Parent.Name ~= p.Name then
  4332. if hit.Parent:FindFirstChild("Humanoid") then
  4333. if Debounces.LPunch == true and Debounces.LPunched == false then
  4334. Debounces.LPunched = true
  4335. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  4336. if Debounces.ks2==true then
  4337. z = Instance.new("Sound",hed)
  4338. z.SoundId = "rbxassetid://588693156"
  4339. z.Pitch = ptz[math.random(1,#ptz)]
  4340. z.Volume = 1
  4341. z:Play()
  4342. end
  4343. wait(.2)
  4344. Debounces.LPunched = false
  4345. end
  4346. end
  4347. end
  4348. end
  4349. end)
  4350. ----------------------------------------------------
  4351. local player = game.Players.LocalPlayer
  4352. local pchar = player.Character
  4353. local mouse = player:GetMouse()
  4354. local cam = workspace.CurrentCamera
  4355.  
  4356. local rad = math.rad
  4357.  
  4358. local keysDown = {}
  4359. local flySpeed = 0
  4360. local MAX_FLY_SPEED = 150
  4361.  
  4362. local canFly = false
  4363. local flyToggled = false
  4364.  
  4365. local forward, side = 0, 0
  4366. local lastForward, lastSide = 0, 0
  4367.  
  4368. local floatBP = Instance.new("BodyPosition")
  4369. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  4370. local flyBV = Instance.new("BodyVelocity")
  4371. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  4372. local turnBG = Instance.new("BodyGyro")
  4373. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  4374.  
  4375. mouse.KeyDown:connect(function(key)
  4376. keysDown[key] = true
  4377.  
  4378. if key == "f" then
  4379. flyToggled = not flyToggled
  4380.  
  4381. if not flyToggled then
  4382. stanceToggle = "Normal"
  4383. floatBP.Parent = nil
  4384. flyBV.Parent = nil
  4385. turnBG.Parent = nil
  4386. root.Velocity = Vector3.new()
  4387. pchar.Humanoid.PlatformStand = false
  4388. end
  4389. end
  4390.  
  4391. end)
  4392. mouse.KeyUp:connect(function(key)
  4393. keysDown[key] = nil
  4394. end)
  4395.  
  4396. local function updateFly()
  4397.  
  4398. if not flyToggled then return end
  4399.  
  4400. lastForward = forward
  4401. lastSide = side
  4402.  
  4403. forward = 0
  4404. side = 0
  4405.  
  4406. if keysDown.w then
  4407. forward = forward + 1
  4408. end
  4409. if keysDown.s then
  4410. forward = forward - 1
  4411. end
  4412. if keysDown.a then
  4413. side = side - 1
  4414. end
  4415. if keysDown.d then
  4416. side = side + 1
  4417. end
  4418.  
  4419. canFly = (forward ~= 0 or side ~= 0)
  4420.  
  4421. if canFly then
  4422. stanceToggle = "Floating"
  4423. turnBG.Parent = root
  4424. floatBP.Parent = nil
  4425. flyBV.Parent = root
  4426.  
  4427. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  4428. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  4429. else
  4430. floatBP.position = root.Position
  4431. floatBP.Parent = root
  4432.  
  4433. flySpeed = flySpeed - 1
  4434. if flySpeed < 0 then flySpeed = 0 end
  4435. end
  4436.  
  4437. local camCF = cam.CoordinateFrame
  4438. local in_forward = canFly and forward or lastForward
  4439. local in_side = canFly and side or lastSide
  4440.  
  4441. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  4442. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  4443.  
  4444. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  4445. 0)
  4446. end
  4447.  
  4448. game:service'RunService'.RenderStepped:connect(function()
  4449. if flyToggled then
  4450. pchar.Humanoid.PlatformStand = true
  4451. end
  4452. updateFly()
  4453. end)
  4454. -------------------------------
  4455. mouse.KeyDown:connect(function(key)
  4456. if key == "q" then
  4457. if Debounces.CanAttack == true then
  4458. Debounces.CanAttack = false
  4459. Debounces.NoIdl = true
  4460. Debounces.on = true
  4461. function FindNearestTorso(Position,Distance,SinglePlayer)
  4462. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4463. local List = {}
  4464. for i,v in pairs(workspace:GetChildren())do
  4465. if v:IsA("Model")then
  4466. if v:findFirstChild("Torso")then
  4467. if v ~= char then
  4468. if(v.Torso.Position -Position).magnitude <= Distance then
  4469. table.insert(List,v)
  4470. end
  4471. end
  4472. end
  4473. end
  4474. end
  4475. return List
  4476. end
  4477. z = Instance.new("Sound",hed)
  4478. z.SoundId = "rbxassetid://232213955"
  4479. z.Pitch = 1
  4480. z.Volume = 1
  4481. wait(0.2)
  4482. z:Play()
  4483. sp = Instance.new("Part",rarm)
  4484. sp.Anchored = true
  4485. sp.CanCollide = false
  4486. sp.Locked = true
  4487. sp.Transparency = 0
  4488. sp.Material = "Neon"
  4489. sp.Size = Vector3.new(1,1,1)
  4490. sp.TopSurface = "SmoothNoOutlines"
  4491. sp.BottomSurface = "SmoothNoOutlines"
  4492. sp.BrickColor = BrickColor.new("Royal purple")
  4493. spm = Instance.new("SpecialMesh",sp)
  4494. spm.MeshType = "Sphere"
  4495. spm.Scale = Vector3.new(21,21,21)
  4496. sp2 = Instance.new("Part", rarm)
  4497. sp2.Name = "Energy"
  4498. sp2.BrickColor = BrickColor.new("Royal purple")
  4499. sp2.Size = Vector3.new(1, 1, 1)
  4500. sp2.Shape = "Ball"
  4501. sp2.CanCollide = false
  4502. sp2.Anchored = true
  4503. sp2.Locked = true
  4504. sp2.TopSurface = 0
  4505. sp2.BottomSurface = 0
  4506. sp2.Transparency = 1
  4507. spm2 = Instance.new("SpecialMesh",sp2)
  4508. spm2.MeshId = "rbxassetid://9982590"
  4509. spm2.Scale = Vector3.new(2,2,2)
  4510. for i = 1, 20 do
  4511. spm.Scale = spm.Scale - Vector3.new(1,1,1)
  4512. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  4513. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  4514. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  4515. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  4516. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  4517. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  4518. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  4519. if Debounces.on == false then break end
  4520. rs:wait()
  4521. end
  4522. for i = 1, 100, 20 do rs:wait()
  4523. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  4524. end
  4525. for i = 1, 20 do
  4526. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  4527. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  4528. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.4)
  4529. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(10),math.rad(-30),0), 0.4)
  4530. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), math.rad(0)), 0.4)
  4531. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  4532. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  4533. if Debounces.on == false then break end
  4534. rs:wait()
  4535. end
  4536. sp.Transparency = 1
  4537. for i = 1, 20 do
  4538. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  4539. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.62,-.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.4)
  4540. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.4)
  4541. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-50), math.rad(0)), 0.4)
  4542. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  4543. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  4544. if Debounces.on == false then break end
  4545. rs:wait()
  4546. end
  4547. wait(1)
  4548. sp.Transparency = 0
  4549. sp2.Transparency = 0.84
  4550. for i = 1, 20 do
  4551. --spm.Scale = spm.Scale - Vector3.new(1,1,1)
  4552. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  4553. sp2.CFrame = sp.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4554. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(110),math.rad(-6),math.rad(140)), 0.4)
  4555. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(80),math.rad(6),math.rad(-40)), 0.2)
  4556. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  4557. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  4558. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  4559. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  4560. if Debounces.on == false then break end
  4561. rs:wait()
  4562. end
  4563. for i = 1, 2880, 50 do
  4564. rs:wait()
  4565. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  4566. sp2.CFrame = rarm.CFrame * CFrame.new(0,-1,0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  4567. rs:wait()
  4568. end
  4569. sp:Destroy()
  4570. sp2:Destroy()
  4571. local X = Instance.new("Part",char)
  4572. local O = Instance.new("ObjectValue",X)
  4573. O.Name = "creator"
  4574. X.Locked = true
  4575. X.Name = "Shell"
  4576. X.Anchored = false
  4577. X.CanCollide = false
  4578. X.Transparency = 0
  4579. X.Reflectance = 0
  4580. X.BottomSurface = 0
  4581. X.TopSurface = 0
  4582. X.Shape = 0
  4583. local V = Instance.new("ObjectValue",X)
  4584. V.Value = char
  4585. V.Name = "creator"
  4586. X.BrickColor = BrickColor.new("Royal purple")
  4587. X.Size = Vector3.new(2,2,2)
  4588. X.Material = "Neon"
  4589. local Z = Instance.new("SpecialMesh",X)
  4590. Z.MeshType = "Sphere"
  4591. Z.Scale = Vector3.new(0.5,0.5,1)
  4592. X.CFrame = rarm.CFrame*CFrame.new(-3,0,0)
  4593. local bv = Instance.new("BodyVelocity",X)
  4594. bv.maxForce = Vector3.new(99999,99999,99999)
  4595. X.CFrame = CFrame.new(X.Position,mouse.Hit.p)
  4596. bv.velocity = X.CFrame.lookVector*250
  4597.  
  4598. Explode = X.Touched:connect(function(hit)
  4599. if hit ~= char and hit.Name ~= "Shell" then
  4600. local cf = X.CFrame
  4601. bv:Destroy()
  4602. X.Anchored = true
  4603. Z:Remove()
  4604. Explode:disconnect()
  4605. X.Size = Vector3.new(3,3,3)
  4606. X.Touched:connect(function(hit) end)
  4607. X.CanCollide = false
  4608. local part3 = Instance.new("Part", rarm)
  4609. part3.Anchored=true
  4610. part3.CanCollide=false
  4611. part3.Locked = true
  4612. part3.TopSurface = "SmoothNoOutlines"
  4613. part3.BottomSurface = "SmoothNoOutlines"
  4614. part3.FormFactor='Custom'
  4615. part3.Size=Vector3.new(1,1, 1)
  4616. part3.CFrame=X.CFrame
  4617. part3.Transparency=0
  4618. part3.BrickColor=BrickColor.new("Royal purple")
  4619. local mesh3 = Instance.new("SpecialMesh",part3)
  4620. mesh3.MeshType = "Sphere"
  4621. mesh3.Scale = Vector3.new(1,1,1)
  4622. --debris:AddItem(X,8)
  4623. local part4 = Instance.new("Part", rarm)
  4624. part4.Material = "Neon"
  4625. part4.Anchored=true
  4626. part4.CanCollide=false
  4627. part4.Locked = true
  4628. part4.TopSurface = "SmoothNoOutlines"
  4629. part4.BottomSurface = "SmoothNoOutlines"
  4630. part4.FormFactor='Custom'
  4631. part4.Size=Vector3.new(1,1, 1)
  4632. part4.CFrame=X.CFrame
  4633. part4.Transparency=0
  4634. part4.BrickColor=BrickColor.new("Hot pink")
  4635. local mesh4 = Instance.new("SpecialMesh",part4)
  4636. mesh4.MeshType = "Sphere"
  4637. mesh4.Scale = Vector3.new(.5,.5,.5)
  4638. local part7 = Instance.new("Part", rarm)
  4639. part7.Material = "Neon"
  4640. part7.Anchored=true
  4641. part7.CanCollide=false
  4642. part7.Locked = true
  4643. part7.TopSurface = "SmoothNoOutlines"
  4644. part7.BottomSurface = "SmoothNoOutlines"
  4645. part7.FormFactor='Custom'
  4646. part7.Size=Vector3.new(1,1, 1)
  4647. part7.CFrame=X.CFrame
  4648. part7.Transparency=0
  4649. part7.BrickColor=BrickColor.new("Really black")
  4650. local mesh7 = Instance.new("SpecialMesh",part7)
  4651. mesh7.MeshType = "Sphere"
  4652. mesh7.Scale = Vector3.new(0.1, 0.1, 0.1)
  4653. --[[X.Touched:connect(function(ht)
  4654. hit = ht.Parent
  4655. if ht and hit:IsA("Model") then
  4656. if hit:FindFirstChild("Humanoid") then
  4657. if hit.Name ~= p.Name then
  4658. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  4659. wait(.3)
  4660. end
  4661. end
  4662. elseif ht and hit:IsA("Hat") then
  4663. if hit.Parent.Name ~= p.Name then
  4664. if hit.Parent:FindFirstChild("Humanoid") then
  4665. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  4666. wait(.3)
  4667. end
  4668. end
  4669. end
  4670. end)
  4671. part3.Touched:connect(function(ht)
  4672. hit = ht.Parent
  4673. if ht and hit:IsA("Model") then
  4674. if hit:FindFirstChild("Humanoid") then
  4675. if hit.Name ~= p.Name then
  4676. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  4677. wait(.3)
  4678. end
  4679. end
  4680. elseif ht and hit:IsA("Hat") then
  4681. if hit.Parent.Name ~= p.Name then
  4682. if hit.Parent:FindFirstChild("Humanoid") then
  4683. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  4684. wait(.3)
  4685. end
  4686. end
  4687. end
  4688. end)]]--
  4689. for i,v in pairs(FindNearestTorso(X.CFrame.p,140))do
  4690. if v:FindFirstChild('Humanoid') then
  4691. v.Humanoid:TakeDamage(math.random(60,90))
  4692. v.Humanoid.PlatformStand = true
  4693. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4694. end
  4695. end
  4696.  
  4697. local acos = math.acos
  4698. local sqrt = math.sqrt
  4699. local Vec3 = Vector3.new
  4700. local fromAxisAngle = CFrame.fromAxisAngle
  4701.  
  4702. local function toAxisAngle(CFr)
  4703. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  4704. local Angle = math.acos((R00+R11+R22-1)/2)
  4705. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  4706. A = A == 0 and 0.00001 or A
  4707. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  4708. B = B == 0 and 0.00001 or B
  4709. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  4710. C = C == 0 and 0.00001 or C
  4711. local x = (R21-R12)/sqrt(A)
  4712. local y = (R02-R20)/sqrt(B)
  4713. local z = (R10-R01)/sqrt(C)
  4714. return Vec3(x,y,z),Angle
  4715. end
  4716.  
  4717. function ApplyTrig(Num,Func)
  4718. local Min,Max = Func(0),Func(1)
  4719. local i = Func(Num)
  4720. return (i-Min)/(Max-Min)
  4721. end
  4722.  
  4723. function LerpCFrame(CFrame1,CFrame2,Num)
  4724. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  4725. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  4726. end
  4727.  
  4728. function Crater(Torso,Radius)
  4729. Spawn(function()
  4730. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  4731. local Ignore = {}
  4732. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4733. if v.Character ~= nil then
  4734. Ignore[#Ignore+1] = v.Character
  4735. end
  4736. end
  4737. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  4738. if Hit == nil then return end
  4739. local Parts = {}
  4740. for i = 1,360,10 do
  4741. local P = Instance.new("Part",Torso.Parent)
  4742. P.Anchored = true
  4743. P.FormFactor = "Custom"
  4744. P.BrickColor = Hit.BrickColor
  4745. P.Material = Hit.Material
  4746. P.TopSurface = "Smooth"
  4747. P.BottomSurface = "Smooth"
  4748. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  4749. 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)))
  4750. 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}
  4751. if math.random(0,5) == 0 then -- rubble
  4752. local P = Instance.new("Part",Torso.Parent)
  4753. P.Anchored = true
  4754. P.FormFactor = "Custom"
  4755. P.BrickColor = Hit.BrickColor
  4756. P.Material = Hit.Material
  4757. P.TopSurface = "Smooth"
  4758. P.BottomSurface = "Smooth"
  4759. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  4760. 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)))
  4761. 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}
  4762. end
  4763. end
  4764. for i = 0,1,0.05 do
  4765. for i2,v in pairs(Parts) do
  4766. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  4767. end
  4768. wait(0.02)
  4769. end
  4770. for i,v in pairs(Parts) do
  4771. if v[1].Size.X > 2.1 then
  4772. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  4773. end
  4774. v[1].Anchored = false
  4775. end
  4776. for i = 0,1,0.05 do
  4777. for i2,v in pairs(Parts) do
  4778. v[1].Transparency = i
  4779. if i == 1 then
  4780. v[1]:Destroy()
  4781. elseif i >= 0.25 then
  4782. v[1].CanCollide = false
  4783. end
  4784. end
  4785. wait(0.02)
  4786. end
  4787. Parts = nil
  4788. end)
  4789. end
  4790.  
  4791. ROW = function(out, trans, s, wt, t, ang, plus)
  4792. for i = 1, 360, 360/t do
  4793. local c = Instance.new("Part", game.Workspace)
  4794. c.FormFactor = 3
  4795. c.TopSurface = 0
  4796. c.BottomSurface = 0
  4797. c.Size = s
  4798. c.Anchored = true
  4799. c.CanCollide = wt
  4800. c.Material=workspace.Base.Material
  4801. c.Transparency = trans
  4802. c.BrickColor = workspace.Base.BrickColor
  4803. c.CFrame = CFrame.new(X.CFrame.x,0,X.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  4804. c.Locked=true
  4805. game.Debris:AddItem(c,15)
  4806. end
  4807. end
  4808.  
  4809. Part = function(x,y,z,color,tr,cc,an,parent)
  4810. local p = Instance.new('Part',parent or Weapon)
  4811. p.formFactor = 'Custom'
  4812. p.Size = Vector3.new(x,y,z)
  4813. p.BrickColor = BrickColor.new(color)
  4814. p.CanCollide = cc
  4815. p.Transparency = tr
  4816. p.Anchored = an
  4817. p.TopSurface,p.BottomSurface = 0,0
  4818. p.Locked=true
  4819. p:BreakJoints()
  4820. return p end
  4821.  
  4822. Mesh = function(par,num,x,y,z)
  4823. local msh = _
  4824. if num == 1 then msh = Instance.new("CylinderMesh",par)
  4825. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  4826. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  4827. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  4828. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  4829. end msh.Scale = Vector3.new(x,y,z)
  4830. return msh end
  4831.  
  4832. function explosion(col1,col2,cfr,sz,rng,dmg)
  4833. local a= Part(1,1,1,col1,.5,false,true,workspace)
  4834. local a2= Part(1,1,1,col2,.5,false,true,workspace)
  4835. local a3= Part(1,1,1,col2,.5,false,true,workspace)
  4836. v1,v2,v3=sz.x,sz.y,sz.z
  4837. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  4838. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  4839. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  4840. a.CFrame=cfr
  4841. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  4842. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  4843.  
  4844. Spawn(function()
  4845. while wait() do
  4846. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  4847. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  4848. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  4849. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  4850. a.Transparency=a.Transparency+0.05
  4851. a2.Transparency=a2.Transparency+0.05
  4852. a3.Transparency=a3.Transparency+0.05
  4853. end
  4854. end)
  4855. end
  4856.  
  4857. Crater(X,20)
  4858. ROW(12, 0, Vector3.new(34.5, 30, 3), true, 8, CFrame.Angles(math.rad(math.random (30,60)), 0, math.rad (math.random(-30,30))), 0)
  4859. z = Instance.new("Sound",X)
  4860. z.SoundId = "rbxassetid://231917744"
  4861. z.Pitch = .5
  4862. z.Volume = 10
  4863. z1 = Instance.new("Sound",X)
  4864. z1.SoundId = "rbxassetid://231917744"
  4865. z1.Pitch = .5
  4866. z1.Volume = 10
  4867. z2 = Instance.new("Sound",X)
  4868. z2.SoundId = "rbxassetid://231917744"
  4869. z2.Pitch = .5
  4870. z2.Volume = 10
  4871. z3 = Instance.new("Sound",X)
  4872. z3.SoundId = "rbxassetid://245537790"
  4873. z3.Pitch = .7
  4874. z3.Volume = 1
  4875. z4 = Instance.new("Sound",X)
  4876. z4.SoundId = "rbxassetid://245537790"
  4877. z4.Pitch = .7
  4878. z4.Volume = 1
  4879. z4a = Instance.new("Sound",X)
  4880. z4a.SoundId = "rbxassetid://419447292"
  4881. z4a.Pitch = 1
  4882. z4a.Volume = 10
  4883. z3a = Instance.new("Sound",X)
  4884. z3a.SoundId = "rbxassetid://421328847"
  4885. z3a.Pitch = 1
  4886. z3a.Volume = 10
  4887. wait(0.1)
  4888. z:Play()
  4889. z1:Play()
  4890. z2:Play()
  4891. z3:Play()
  4892. z4:Play()
  4893. z3a:Play()
  4894. z4a:Play()
  4895.  
  4896. local part=Instance.new('Part',rarm)
  4897. part.Anchored=true
  4898. part.CanCollide=false
  4899. part.Locked = true
  4900. part.FormFactor='Custom'
  4901. part.Size=Vector3.new(1,1,1)
  4902. part.CFrame=X.CFrame*CFrame.new(0,0,0)
  4903. part.Transparency=0
  4904. part.BrickColor=BrickColor.new('Really black')
  4905. local mesh=Instance.new('SpecialMesh',part)
  4906. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  4907. mesh.Scale=Vector3.new(2,2,2)
  4908. local part2=part:clone()
  4909. part2.Parent = rarm
  4910. part2.BrickColor=BrickColor.new("Royal purple")
  4911. local part5=part:clone()
  4912. part5.Parent = rarm
  4913. part5.BrickColor=BrickColor.new("Magenta")
  4914. local part6=part:clone()
  4915. part6.Parent = rarm
  4916. part6.BrickColor=BrickColor.new("Black")
  4917. local mesh2=mesh:clone()
  4918. mesh2.Parent=part2
  4919. mesh2.Scale=Vector3.new(3, 3, 3)
  4920. local mesh5=mesh:clone()
  4921. mesh5.Parent=part5
  4922. mesh5.Scale=Vector3.new(3, 3, 3)
  4923. local mesh6=mesh:clone()
  4924. mesh6.Parent=part6
  4925. mesh6.Scale=Vector3.new(3, 3, 3)
  4926. local blast = Instance.new("Part", rarm)
  4927. blast.BrickColor = BrickColor.new("Really black")
  4928. blast.Anchored = true
  4929. blast.CanCollide = false
  4930. blast.Locked = true
  4931. blast.Size = Vector3.new(1, 1, 1)
  4932. blast.TopSurface = "Smooth"
  4933. blast.BottomSurface = "Smooth"
  4934. blast.Transparency = 0
  4935. blast.CFrame = HandCF
  4936. local bm = Instance.new("SpecialMesh", blast)
  4937. bm.Scale = Vector3.new(5,1,5)
  4938. bm.MeshId = "rbxassetid://3270017"
  4939. local blast2 = Instance.new("Part", rarm)
  4940. blast2.BrickColor = BrickColor.new("Really black")
  4941. blast2.Anchored = true
  4942. blast2.CanCollide = false
  4943. blast2.Locked = true
  4944. blast2.Size = Vector3.new(1, 1, 1)
  4945. blast2.TopSurface = "Smooth"
  4946. blast2.BottomSurface = "Smooth"
  4947. blast2.Transparency = 0
  4948. blast2.CFrame = HandCF
  4949. local bm2 = Instance.new("SpecialMesh", blast2)
  4950. bm2.Scale = Vector3.new(3,1,3)
  4951. bm2.MeshId = "rbxassetid://3270017"
  4952. local blast3 = Instance.new("Part", rarm)
  4953. blast3.BrickColor = BrickColor.new("Really black")
  4954. blast3.Anchored = true
  4955. blast3.CanCollide = false
  4956. blast3.Locked = true
  4957. blast3.Size = Vector3.new(1, 1, 1)
  4958. blast3.TopSurface = "Smooth"
  4959. blast3.BottomSurface = "Smooth"
  4960. blast3.Transparency = 0
  4961. blast3.CFrame = HandCF
  4962. local bm3 = Instance.new("SpecialMesh", blast3)
  4963. bm3.Scale = Vector3.new(3,1,3)
  4964. bm3.MeshId = "rbxassetid://3270017"
  4965. for i = 1,120 do rs:wait()
  4966. X.Transparency = X.Transparency + (1/120)
  4967. part.Transparency = part.Transparency + (1/120)
  4968. part2.Transparency = part2.Transparency + (1/120)
  4969. part3.Transparency = part3.Transparency + (1/120)
  4970. part4.Transparency = part4.Transparency + (1/120)
  4971. part5.Transparency = part5.Transparency + (1/120)
  4972. part6.Transparency = part6.Transparency + (1/120)
  4973. part7.Transparency = part7.Transparency + (1/120)
  4974. blast.Transparency = blast.Transparency + (1/120)
  4975. blast2.Transparency = blast2.Transparency + (1/120)
  4976. blast3.Transparency = blast3.Transparency + (1/120)
  4977. X.Size = X.Size + Vector3.new(.8,.8,.8)
  4978. --part3.Size = part3.Size + Vector3.new(3,3,3)
  4979. mesh.Scale = mesh.Scale + Vector3.new(1,.2,1)
  4980. mesh2.Scale = mesh2.Scale + Vector3.new(1.1,.2,1.1)
  4981. mesh3.Scale = mesh3.Scale + Vector3.new(3,3,3)
  4982. mesh4.Scale = mesh4.Scale + Vector3.new(1.7,1.7,1.7)
  4983. mesh5.Scale = mesh5.Scale + Vector3.new(1.6,.2,1.6)
  4984. mesh6.Scale = mesh6.Scale + Vector3.new(2,.2,2)
  4985. mesh7.Scale = mesh7.Scale + Vector3.new(4,4,4)
  4986. bm.Scale = bm.Scale + Vector3.new(6,6,.2)
  4987. bm2.Scale = bm2.Scale + Vector3.new(4,4,.2)
  4988. bm3.Scale = bm3.Scale + Vector3.new(4,4,.2)
  4989. X.CFrame = cf
  4990. part.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2),0)
  4991. part2.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2),0)
  4992. part3.CFrame=X.CFrame
  4993. part4.CFrame=X.CFrame
  4994. part7.CFrame=X.CFrame
  4995. part5.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2.6),0)
  4996. part6.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2.4),0)
  4997. blast.CFrame=X.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  4998. blast2.CFrame=X.CFrame * CFrame.Angles(math.rad(-i*4), math.rad(i*4), math.rad(0))
  4999. blast3.CFrame=X.CFrame * CFrame.Angles(math.rad(180+i*4), math.rad(90-i*4), math.rad(0))
  5000. rs:wait()
  5001. end
  5002. X:Destroy()
  5003. part:Destroy()
  5004. part2:Destroy()
  5005. part3:Destroy()
  5006. part4:Destroy()
  5007. part5:Destroy()
  5008. part6:Destroy()
  5009. blast:Destroy()
  5010. blast2:Destroy()
  5011. blast3:Destroy()
  5012. z:Destroy()
  5013. z1:Destroy()
  5014. z2:Destroy()
  5015. z3:Destroy()
  5016. z4:Destroy()
  5017. end
  5018. end)
  5019. for i = 1, 20 do
  5020. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(-6),math.rad(-20)), 0.2)
  5021. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.2)
  5022. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  5023. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  5024. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  5025. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  5026. if Debounces.on == false then break end
  5027. rs:wait()
  5028. end
  5029. if Debounces.CanAttack == false then
  5030. Debounces.CanAttack = true
  5031. Debounces.NoIdl = false
  5032. Debounces.on = false
  5033. end
  5034. end
  5035. end
  5036. end)
  5037. ----------------------------------------------------
  5038. mouse.KeyDown:connect(function(key)
  5039. if key == "x" then
  5040. hum.WalkSpeed = 0.01
  5041. if Debounces.CanAttack == true then
  5042. Debounces.CanAttack = false
  5043. Debounces.NoIdl = true
  5044. Debounces.on = true
  5045. for i = 1, 30 do
  5046. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-40)), 0.2)
  5047. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(40)), 0.2)
  5048. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  5049. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  5050. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  5051. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  5052. if Debounces.on == false then break end
  5053. rs:wait(6)
  5054. end
  5055. v = Instance.new("Sound")
  5056. v.SoundId = "rbxassetid://447225089"
  5057. v.Parent = char
  5058. v.Looped = false
  5059. v.Pitch = 1
  5060. v.Volume = 1
  5061. wait(.01)
  5062. v:Play()
  5063.  
  5064. if Daytime == true then
  5065. Daytime = false
  5066. l.TimeOfDay = 19
  5067. else
  5068. Daytime = true
  5069. l.TimeOfDay = 12
  5070. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  5071. end
  5072.  
  5073. local Shockwave = function()
  5074. local rng1 = Instance.new("Part", char)
  5075. rng1.Anchored = true
  5076. rng1.BrickColor = BrickColor.new("Really black")
  5077. rng1.CanCollide = false
  5078. rng1.FormFactor = 3
  5079. rng1.Name = "Ring"
  5080. rng1.Material = "Neon"
  5081. rng1.Size = Vector3.new(1, 1, 1)
  5082. rng1.Transparency = 0.35
  5083. rng1.TopSurface = 0
  5084. rng1.BottomSurface = 0
  5085. local rngm1 = Instance.new("SpecialMesh", rng)
  5086. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5087. rngm1.Scale = Vector3.new(10, 10, 1)
  5088. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  5089. local Wave = Instance.new("Part", game.Workspace--[[?]])
  5090. Wave.Name = "Shockwave"
  5091. Wave.BrickColor = BrickColor.new("Really black")
  5092. Wave.Material = "Neon"
  5093. Wave.Size = Vector3.new(1, 1, 1)
  5094. Wave.Shape = "Ball"
  5095. Wave.CanCollide = false
  5096. Wave.Anchored = true
  5097. Wave.TopSurface = 0
  5098. Wave.BottomSurface = 0
  5099. local Wave2 = Instance.new("Part", game.Workspace--[[?]])
  5100. Wave2.Name = "Shockwave2"
  5101. Wave2.BrickColor = BrickColor.new("Royal purple")
  5102. Wave2.Material = "Neon"
  5103. Wave2.Size = Vector3.new(1, 1, 1)
  5104. Wave2.Shape = "Ball"
  5105. Wave2.CanCollide = false
  5106. Wave2.Anchored = true
  5107. Wave2.TopSurface = 0
  5108. Wave2.BottomSurface = 0
  5109. Wave2.Touched:connect(function(hit)
  5110. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  5111. local Occlude = true
  5112. local NotOccludes = {
  5113. char.Name;
  5114. "Wings";
  5115. "Scythe";
  5116. "Thingy";
  5117. "Thingy2"; -- put all of the names in a table pls
  5118. }
  5119. for i,v in pairs(NotOccludes) do
  5120. if hit.Parent.Name == v then
  5121. Occlude = false
  5122. end
  5123. end
  5124. --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
  5125. if Occlude then
  5126. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  5127. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  5128. end
  5129. end
  5130. end)
  5131.  
  5132. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  5133.  
  5134. coroutine.wrap(function()
  5135. for i = 1, 20, 0.2 do
  5136. rngm1.Scale = Vector3.new(10 + i*20, 10 + i*20, 20)
  5137. rng1.Transparency = i/20
  5138. wait()
  5139. end
  5140. wait()
  5141. rng1:Destroy()
  5142. end)()
  5143.  
  5144. Delay(0, function()
  5145.  
  5146. if Daytime == false then
  5147. for i = 3, 50, 1 do
  5148. Wave.Size = Vector3.new(0 + i*3, 0 + i*3, 0 + i*3)
  5149. Wave.CFrame = char.Torso.CFrame
  5150. local t = i / 50
  5151. Wave.Transparency = t
  5152. Wave2.Size = Vector3.new(1 + i*2.5, 1 + i*2.5, 1 + i*2.5)
  5153. Wave2.CFrame = char.Torso.CFrame
  5154. local tq = i / 50
  5155. Wave2.Transparency = tq
  5156. wait()
  5157. end
  5158. else
  5159. for i = 3, 50, 1 do
  5160. Wave.Size = Vector3.new(0 + i*3, 0 + i*3, 0 + i*3)
  5161. Wave.CFrame = char.Torso.CFrame
  5162. local t = i / 50
  5163. Wave.Transparency = t
  5164. Wave2.Size = Vector3.new(1 + i*2.5, 1 + i*2.5, 1 + i*2.5)
  5165. Wave2.CFrame = char.Torso.CFrame
  5166. local tq = i / 50
  5167. Wave2.Transparency = tq
  5168. wait()
  5169. end
  5170. end
  5171. Wave:Destroy()
  5172. Wave2:Destroy()
  5173. end)
  5174. Delay(0, function()
  5175. while wait() do
  5176. if Wave ~= nil then
  5177. Wave.CFrame = char.Torso.CFrame
  5178. else
  5179. break
  5180. end
  5181. end
  5182. end)
  5183. end
  5184. Shockwave()
  5185. for i = 1, 30 do
  5186. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(-20),math.rad(50)), 0.4)
  5187. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(20),math.rad(-50)), 0.4)
  5188. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(34),math.rad(0),0), 0.4)
  5189. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)), 0.4)
  5190. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.4)
  5191. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.4)
  5192. if Debounces.on == false then break end
  5193. rs:wait()
  5194. end
  5195. wait(2.4)
  5196. Debounces.NoIdl = false
  5197. hum.WalkSpeed = 16
  5198. Debounces.on = false
  5199. wait()
  5200. if Debounces.CanAttack == false then
  5201. Debounces.CanAttack = true
  5202. v:Destroy()
  5203. end
  5204. end
  5205. end
  5206. end)
  5207. ----------------------------------------------------
  5208. mouse.KeyDown:connect(function(key)
  5209. if key == "e" then
  5210. if Debounces.CanAttack == true then
  5211. Debounces.CanAttack = false
  5212. Debounces.on = true
  5213. Debounces.NoIdl = true
  5214. pt = {1, 1.1, 1.2, 1.3, 1.4, 1.5}
  5215. z = Instance.new("Sound", rarm)
  5216. z.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  5217. z.Volume = .6
  5218. z.Pitch = pt[math.random(1,#pt)]
  5219. z.Looped = false
  5220. z:Play()
  5221. Debounces.RPunch = true
  5222. Debounces.LPunch = true
  5223. Debounces.ks = true
  5224. Debounces.ks2 = true
  5225. for i = 1, 3 do
  5226. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  5227. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  5228. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5229. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5230. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5231. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5232. if Debounces.on == false then break end
  5233. wait()
  5234. end
  5235. z2 = Instance.new("Sound", larm)
  5236. z2.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5237. z2.Volume = .6
  5238. z2.Pitch = pt[math.random(1,#pt)]
  5239. z2.Looped = false
  5240. z2:Play()
  5241. for i = 1, 3 do
  5242. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5243. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  5244. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5245. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5246. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5247. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5248. if Debounces.on == false then break end
  5249. wait()
  5250. end
  5251. z3 = Instance.new("Sound", rarm)
  5252. z3.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5253. z3.Volume = 0.6
  5254. z3.Pitch = pt[math.random(1,#pt)]
  5255. z3.Looped = false
  5256. z3:Play()
  5257. for i = 1, 3 do
  5258. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  5259. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  5260. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5261. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5262. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5263. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5264. if Debounces.on == false then break end
  5265. wait()
  5266. end
  5267. z4 = Instance.new("Sound", larm)
  5268. z4.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5269. z4.Volume = .6
  5270. z4.Pitch = pt[math.random(1,#pt)]
  5271. z4.Looped = false
  5272. z4:Play()
  5273. for i = 1, 3 do
  5274. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5275. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5276. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5277. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5278. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5279. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5280. if Debounces.on == false then break end
  5281. wait()
  5282. end
  5283. z5 = Instance.new("Sound", rarm)
  5284. z5.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5285. z5.Volume = .6
  5286. z5.Pitch = pt[math.random(1,#pt)]
  5287. z5.Looped = false
  5288. z5:Play()
  5289. for i = 1, 3 do
  5290. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  5291. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  5292. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  5293. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  5294. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  5295. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  5296. if Debounces.on == false then break end
  5297. wait()
  5298. end
  5299. z6 = Instance.new("Sound", larm)
  5300. z6.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5301. z6.Volume = .6
  5302. z6.Pitch = pt[math.random(1,#pt)]
  5303. z6.Looped = false
  5304. z6:Play()
  5305. for i = 1, 3 do
  5306. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5307. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5308. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5309. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5310. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5311. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5312. if Debounces.on == false then break end
  5313. wait()
  5314. end
  5315. z7 = Instance.new("Sound", rarm)
  5316. z7.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  5317. z7.Volume = .6
  5318. z7.Pitch = pt[math.random(1,#pt)]
  5319. z7.Looped = false
  5320. z7:Play()
  5321. for i = 1, 3 do
  5322. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  5323. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  5324. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5325. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5326. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5327. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5328. if Debounces.on == false then break end
  5329. wait()
  5330. end
  5331. z8 = Instance.new("Sound", larm)
  5332. z8.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5333. z8.Volume = .6
  5334. z8.Pitch = pt[math.random(1,#pt)]
  5335. z8.Looped = false
  5336. z8:Play()
  5337. for i = 1, 3 do
  5338. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5339. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  5340. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5341. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5342. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5343. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5344. if Debounces.on == false then break end
  5345. wait()
  5346. end
  5347. z9 = Instance.new("Sound", rarm)
  5348. z9.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5349. z9.Volume = 0.6
  5350. z9.Pitch = pt[math.random(1,#pt)]
  5351. z9.Looped = false
  5352. z9:Play()
  5353. for i = 1, 3 do
  5354. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  5355. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  5356. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5357. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5358. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5359. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5360. if Debounces.on == false then break end
  5361. wait()
  5362. end
  5363. z10 = Instance.new("Sound", larm)
  5364. z10.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5365. z10.Volume = .6
  5366. z10.Pitch = pt[math.random(1,#pt)]
  5367. z10.Looped = false
  5368. z10:Play()
  5369. for i = 1, 3 do
  5370. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5371. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5372. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5373. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5374. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5375. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5376. if Debounces.on == false then break end
  5377. wait()
  5378. end
  5379. z11 = Instance.new("Sound", rarm)
  5380. z11.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5381. z11.Volume = .6
  5382. z11.Pitch = pt[math.random(1,#pt)]
  5383. z11.Looped = false
  5384. z11:Play()
  5385. for i = 1, 3 do
  5386. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  5387. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  5388. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  5389. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  5390. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  5391. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  5392. if Debounces.on == false then break end
  5393. wait()
  5394. end
  5395. z12 = Instance.new("Sound", larm)
  5396. z12.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5397. z12.Volume = .6
  5398. z12.Pitch = pt[math.random(1,#pt)]
  5399. z12.Looped = false
  5400. z12:Play()
  5401. for i = 1, 3 do
  5402. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5403. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  5404. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5405. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5406. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5407. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5408. if Debounces.on == false then break end
  5409. wait()
  5410. end
  5411. z13 = Instance.new("Sound", rarm)
  5412. z13.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5413. z13.Volume = 0.6
  5414. z13.Pitch = pt[math.random(1,#pt)]
  5415. z13.Looped = false
  5416. z13:Play()
  5417. for i = 1, 3 do
  5418. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  5419. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  5420. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5421. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5422. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5423. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5424. if Debounces.on == false then break end
  5425. wait()
  5426. end
  5427. z14 = Instance.new("Sound", larm)
  5428. z14.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5429. z14.Volume = .6
  5430. z14.Pitch = pt[math.random(1,#pt)]
  5431. z14.Looped = false
  5432. z14:Play()
  5433. for i = 1, 3 do
  5434. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5435. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5436. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5437. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5438. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5439. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5440. if Debounces.on == false then break end
  5441. wait()
  5442. end
  5443. z15 = Instance.new("Sound", rarm)
  5444. z15.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5445. z15.Volume = .6
  5446. z15.Pitch = pt[math.random(1,#pt)]
  5447. z15.Looped = false
  5448. z15:Play()
  5449. for i = 1, 3 do
  5450. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  5451. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  5452. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  5453. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  5454. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  5455. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  5456. if Debounces.on == false then break end
  5457. wait()
  5458. end
  5459. z16 = Instance.new("Sound", larm)
  5460. z16.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5461. z16.Volume = .6
  5462. z16.Pitch = pt[math.random(1,#pt)]
  5463. z16.Looped = false
  5464. z16:Play()
  5465. for i = 1, 3 do
  5466. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5467. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5468. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5469. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5470. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5471. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5472. if Debounces.on == false then break end
  5473. wait()
  5474. end
  5475. z17 = Instance.new("Sound", rarm)
  5476. z17.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  5477. z17.Volume = .6
  5478. z17.Pitch = pt[math.random(1,#pt)]
  5479. z17.Looped = false
  5480. z17:Play()
  5481. for i = 1, 3 do
  5482. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  5483. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  5484. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5485. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5486. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5487. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5488. if Debounces.on == false then break end
  5489. wait()
  5490. end
  5491. z18 = Instance.new("Sound", larm)
  5492. z18.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5493. z18.Volume = .6
  5494. z18.Pitch = pt[math.random(1,#pt)]
  5495. z18.Looped = false
  5496. z18:Play()
  5497. for i = 1, 3 do
  5498. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5499. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  5500. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5501. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5502. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5503. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5504. if Debounces.on == false then break end
  5505. wait()
  5506. end
  5507. z19 = Instance.new("Sound", rarm)
  5508. z19.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5509. z19.Volume = 0.6
  5510. z19.Pitch = pt[math.random(1,#pt)]
  5511. z19.Looped = false
  5512. z19:Play()
  5513. for i = 1, 3 do
  5514. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  5515. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  5516. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5517. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5518. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5519. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5520. if Debounces.on == false then break end
  5521. wait()
  5522. end
  5523. z20 = Instance.new("Sound", larm)
  5524. z20.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5525. z20.Volume = .6
  5526. z20.Pitch = pt[math.random(1,#pt)]
  5527. z20.Looped = false
  5528. z20:Play()
  5529. for i = 1, 3 do
  5530. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5531. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5532. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5533. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5534. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5535. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5536. if Debounces.on == false then break end
  5537. wait()
  5538. end
  5539. z:Destroy()
  5540. z2:Destroy()
  5541. z3:Destroy()
  5542. z4:Destroy()
  5543. z5:Destroy()
  5544. z6:Destroy()
  5545. z7:Destroy()
  5546. z8:Destroy()
  5547. z9:Destroy()
  5548. z10:Destroy()
  5549. z11:Destroy()
  5550. z12:Destroy()
  5551. z13:Destroy()
  5552. z14:Destroy()
  5553. z15:Destroy()
  5554. z16:Destroy()
  5555. z17:Destroy()
  5556. z18:Destroy()
  5557. z19:Destroy()
  5558. z20:Destroy()
  5559. Debounces.LPunch = false
  5560. Debounces.RPunch = false
  5561. Debounces.ks = false
  5562. Debounces.ks2 = false
  5563. if Debounces.CanAttack == false then
  5564. Debounces.CanAttack = true
  5565. Debounces.on = false
  5566. Debounces.NoIdl = false
  5567. end
  5568. end
  5569. end
  5570. end)
  5571. -------------------------------
  5572. mouse.KeyDown:connect(function(key)
  5573. if key == "t" then
  5574. if Debounces.CanAttack == true then
  5575. Debounces.CanAttack = false
  5576. Debounces.NoIdl = true
  5577. Debounces.on = true
  5578. Debounces.ks = true
  5579. kik = rleg.Touched:connect(function(ht)
  5580. hit = ht.Parent
  5581. if ht and hit:IsA("Model") then
  5582. if hit:FindFirstChild("Humanoid") then
  5583. if hit.Name ~= p.Name then
  5584. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  5585. Debounces.Slashed = true]]--
  5586. if Debounces.ks==true then
  5587. z = Instance.new("Sound",hed)
  5588. z.SoundId = "rbxassetid://588693156"
  5589. z.Volume = 1
  5590. z:Play()
  5591. Debounces.ks=false
  5592. end
  5593. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  5594. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  5595. --Debounces.Slashed = false
  5596. --end
  5597. end
  5598. end
  5599. elseif ht and hit:IsA("Hat") then
  5600. if hit.Parent.Name ~= p.Name then
  5601. if hit.Parent:FindFirstChild("Humanoid") then
  5602. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  5603. Debounces.Slashed = true]]--
  5604. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  5605. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  5606. --Debounces.Slashed = false
  5607. --end
  5608. end
  5609. end
  5610. end
  5611. end)
  5612. for i = 1,20 do
  5613. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  5614. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.4)
  5615. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  5616. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(90), math.rad(90)), 0.4)
  5617. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-90)), 0.4)
  5618. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  5619. if Debounces.on == false then break end
  5620. rs:wait()
  5621. end
  5622. kik:disconnect()
  5623. if Debounces.CanAttack == false then
  5624. Debounces.CanAttack = true
  5625. Debounces.NoIdl = false
  5626. Debounces.on = false
  5627. end
  5628. end
  5629. end
  5630. end)
  5631. ----------------------------------------------------
  5632. mouse.KeyDown:connect(function(key)
  5633. if key == "y" then
  5634. if Debounces.CanAttack == true then
  5635. Debounces.CanAttack = false
  5636. Debounces.on = true
  5637. Debounces.NoIdl = true
  5638. for i = 1, 15 do
  5639. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  5640. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  5641. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  5642. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.4)
  5643. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5644. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5645. if Debounces.on == false then break end
  5646. rs:wait(2.7)
  5647. end
  5648. x = Instance.new("Sound",char)
  5649. x.SoundId = "rbxassetid://228343271"
  5650. x.Pitch = 0.9
  5651. x.Volume = 2
  5652. xa = Instance.new("Sound",char)
  5653. xa.SoundId = "rbxassetid://419447292"
  5654. xa.Pitch = 1
  5655. xa.Volume = 3
  5656. wait(.1)
  5657. x:Play()
  5658. xa:Play()
  5659. Debounces.on = false
  5660. Debounces.Here = false
  5661. shot = shot + 1
  5662. local rng = Instance.new("Part", larm)
  5663. rng.Anchored = true
  5664. rng.BrickColor = BrickColor.new("Royal purple")
  5665. rng.CanCollide = false
  5666. rng.FormFactor = 3
  5667. rng.Name = "Ring"
  5668. rng.Size = Vector3.new(1, 1, 1)
  5669. rng.Transparency = 0.35
  5670. rng.TopSurface = 0
  5671. rng.BottomSurface = 0
  5672. rng2 = rng:clone()
  5673. rng3 = rng2:clone()
  5674. rng4 = rng2:clone()
  5675. local rngm = Instance.new("SpecialMesh", rng)
  5676. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5677. rngm.Scale = Vector3.new(10, 10, 1)
  5678. rngm2 = rngm:clone()
  5679. rngm2.Scale = Vector3.new(5, 5, 3)
  5680. rngm3=rngm2:clone()
  5681. rngm3.Parent = rng3
  5682. rngm3.Scale = Vector3.new(8, 8, 1)
  5683. rngm4 = rngm2:clone()
  5684. rngm4.Parent = rng4
  5685. rngm4.Scale = Vector3.new(6, 6, 1)
  5686. local bem = Instance.new("Part", larm)
  5687. bem.Anchored = true
  5688. bem.BrickColor = BrickColor.new("Really black")
  5689. bem.CanCollide = false
  5690. bem.FormFactor = 3
  5691. bem.Name = "Beam" .. shot
  5692. bem.Size = Vector3.new(1, 1, 1)
  5693. bem.Transparency = 0.35
  5694. bem.Material = "Neon"
  5695. bem.TopSurface = 0
  5696. bem.BottomSurface = 0
  5697. local bemm = Instance.new("SpecialMesh", bem)
  5698. bemm.MeshType = 4
  5699. bemm.Scale = Vector3.new(1, 10, 10)
  5700. local out = Instance.new("Part", larm)
  5701. out.Anchored = true
  5702. out.BrickColor = BrickColor.new("Really black")
  5703. out.CanCollide = false
  5704. out.FormFactor = 3
  5705. out.Name = "Out"
  5706. out.Size = Vector3.new(8, 8, 8)
  5707. out.Transparency = 0.35
  5708. out.TopSurface = 0
  5709. out.BottomSurface = 0
  5710. local outm = Instance.new("SpecialMesh", out)
  5711. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  5712. outm.Scale = Vector3.new(12, 8, 12)
  5713. local bnd = Instance.new("Part", larm)
  5714. bnd.Anchored = true
  5715. bnd.BrickColor = BrickColor.new("Really black")
  5716. bnd.CanCollide = false
  5717. bnd.FormFactor = 3
  5718. bnd.Name = "Bend"
  5719. bnd.Size = Vector3.new(1, 1, 1)
  5720. bnd.Transparency = 1
  5721. bnd.TopSurface = 0
  5722. bnd.BottomSurface = 0
  5723. local bndm = Instance.new("SpecialMesh", bnd)
  5724. bndm.MeshType = 3
  5725. bndm.Scale = Vector3.new(16, 16, 16)
  5726. out.CFrame = larm.CFrame * CFrame.new(0, -5.4, 0)
  5727. bem.CFrame = out.CFrame * CFrame.new(0, -10, 0) * CFrame.Angles(0, 0, math.rad(90))
  5728. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  5729. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  5730. rng3.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  5731. rng4.CFrame = rng.CFrame * CFrame.new(0, -2, 0)
  5732. Debounces.Shewt = true
  5733. coroutine.wrap(function()
  5734. for i = 1, 20, 0.2 do
  5735. rngm.Scale = Vector3.new(20 + i*4, 20 + i*4, 2)
  5736. rngm3.Scale = Vector3.new(16 + i*6, 16 + i*6, 2)
  5737. rngm4.Scale = Vector3.new(12 + i*8, 12 + i*8, 2)
  5738. rng.Transparency = i/20
  5739. rng3.Transparency = 1/24
  5740. rng4.Transparency = i/26
  5741. wait()
  5742. end
  5743. wait()
  5744. rng:Destroy()
  5745. end)()
  5746. if Debounces.Shewt == true then
  5747. larm:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  5748. hit = ht.Parent
  5749. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  5750. if HasntTouched(hit.Name) == true and deb == false then
  5751. deb = true
  5752. coroutine.wrap(function()
  5753. hit:FindFirstChild("Humanoid").PlatformStand = true
  5754. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 275
  5755. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  5756. end)()
  5757. table.insert(Touche, hit.Name)
  5758. deb = false
  5759. end
  5760. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  5761. if HasntTouched(hit.Parent.Name) == true and deb == false then
  5762. deb = true
  5763. coroutine.wrap(function()
  5764. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  5765. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 275
  5766. wait(1)
  5767. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  5768. end)()
  5769. table.insert(Touche, hit.Parent.Name)
  5770. deb = false
  5771. for i, v in pairs(Touche) do
  5772. print(v)
  5773. end
  5774. end
  5775. end
  5776. end)
  5777. end
  5778. for i = 0, 260, 8 do
  5779. bem.Size = Vector3.new(i, 6, 6)
  5780. out.CFrame = larm.CFrame * CFrame.new(0, -5.4, 0)
  5781. bem.CFrame = larm.CFrame * CFrame.new(0, -8.4 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  5782. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  5783. bnd.Size = Vector3.new(2,2,2)
  5784. bndm.Scale = Vector3.new(16,16,16)
  5785. if i % 10 == 0 then
  5786. local newRng = rng2:Clone()
  5787. newRng.Parent = larm
  5788. newRng.CFrame = larm.CFrame * CFrame.new(0, -8.4-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  5789. local newRngm = rngm2:clone()
  5790. newRngm.Parent=newRng
  5791. coroutine.wrap(function()
  5792. for i = 1, 10, 0.2 do
  5793. newRngm.Scale = Vector3.new(16 + i*4, 16 + i*4, 6)
  5794. newRng.Transparency = i/10
  5795. wait()
  5796. end
  5797. wait()
  5798. newRng:Destroy()
  5799. end)()
  5800. end
  5801. wait()
  5802. end
  5803. wait()
  5804. Debounces.Shewt = false
  5805. bem:Destroy()
  5806. out:Destroy()
  5807. bnd:Destroy()
  5808. Debounces.Ready = false
  5809. for i, v in pairs(Touche) do
  5810. table.remove(Touche, i)
  5811. end
  5812. wait()
  5813. table.insert(Touche, char.Name)
  5814. Debounces.NoIdl = false
  5815. if Debounces.CanAttack == false then
  5816. Debounces.CanAttack = true
  5817. end
  5818. end
  5819. end
  5820. end)
  5821. ----------------------------------------------------
  5822. mouse.KeyDown:connect(function(key)
  5823. if key == "h" then
  5824. if Debounces.CanAttack == true then
  5825. Debounces.CanAttack = false
  5826. Debounces.on = true
  5827. Debounces.NoIdl = true
  5828. for i = 1, 20 do
  5829. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(110),math.rad(-6),math.rad(140)), 0.4)
  5830. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(80),math.rad(6),math.rad(-40)), 0.2)
  5831. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  5832. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  5833. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  5834. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  5835. if Debounces.on == false then break end
  5836. rs:wait(2.6)
  5837. end
  5838. Spawn(function()
  5839. local Parts = {}
  5840. for Y = -5,5 do
  5841. local P = Instance.new("Part",char)
  5842. P.Anchored = true
  5843. P.FormFactor = "Custom"
  5844. P.CanCollide = false
  5845. P.Size = Vector3.new(2,4,2)
  5846. P.TopSurface = "SmoothNoOutlines"
  5847. P.BottomSurface = "SmoothNoOutlines"
  5848. P.Material = "Neon"
  5849. P.BrickColor = BrickColor.new("Really black")
  5850. P.Name = tostring(Y)
  5851. local i = (Y+5)/(10)
  5852. i = 1-math.cos(math.pi*i-(math.pi/2))
  5853. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  5854. --[[P.Touched:connect(function(ht)
  5855. local hit = ht.Parent
  5856. if hit:FindFirstChild("Humanoid") then
  5857. hit.Humanoid:TakeDamage(math.random(20,50))
  5858. end
  5859. end)]]--
  5860. s = Instance.new("Sound",P)
  5861. s.SoundId = "rbxassetid://228343271"
  5862. s.Volume = 1
  5863. s.Pitch = 0.9
  5864. s:Play()
  5865. sa = Instance.new("Sound",P)
  5866. sa.SoundId = "rbxassetid://419447292"
  5867. sa.Volume = 1
  5868. sa.Pitch = 1
  5869. sa:Play()
  5870. P.Touched:connect(function(ht)
  5871. hit = ht.Parent
  5872. if ht and hit:IsA("Model") then
  5873. if hit:FindFirstChild("Humanoid") then
  5874. if hit.Name ~= p.Name then
  5875. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  5876. Debounces.Slashed = true]]--
  5877. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  5878. hit:FindFirstChild("Humanoid").PlatformStand = true
  5879. wait(1)
  5880. --Debounces.Slashed = false
  5881. --end
  5882. end
  5883. end
  5884. elseif ht and hit:IsA("Hat") then
  5885. if hit.Parent.Name ~= p.Name then
  5886. if hit.Parent:FindFirstChild("Humanoid") then
  5887. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  5888. Debounces.Slashed = true]]--
  5889. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  5890. hit:FindFirstChild("Humanoid").PlatformStand = true
  5891. wait(1)
  5892. --Debounces.Slashed = false
  5893. --end
  5894. end
  5895. end
  5896. end
  5897. end)
  5898. Parts[#Parts+1] = P
  5899. end
  5900. local BREAKIT = false
  5901. local CParts = {}
  5902. local Rocks = {}
  5903. local LastPos = nil
  5904. for i = 1,70 do
  5905. for i2,v in pairs(Parts) do
  5906. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  5907. local cf = v.CFrame
  5908. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  5909. v.CFrame = cf
  5910. v.Transparency = v.Transparency+0.02
  5911. if v.Transparency >= 0.975 then BREAKIT = true end
  5912. if v.Name == "0" then
  5913. local Ignore = {}
  5914. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  5915. if v.Character ~= nil then
  5916. Ignore[#Ignore+1] = v.Character
  5917. end
  5918. end
  5919. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  5920. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  5921. if Hit ~= nil then
  5922. if #Rocks == 0 then
  5923. for i = 1,5 do
  5924. local P = Instance.new("Part",char)
  5925. Rocks[#Rocks+1] = P
  5926. P.Anchored = true
  5927. P.FormFactor = "Custom"
  5928. P.BrickColor = Hit.BrickColor
  5929. P.Material = Hit.Material
  5930. P.TopSurface = "Smooth"
  5931. P.BottomSurface = "Smooth"
  5932. P.Size = Vector3.new(2,2,2)*(math.random(500,900)/100)
  5933. end
  5934. end
  5935. for i,P in pairs(Rocks) do
  5936. 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)))
  5937. end
  5938. local P = Instance.new("Part",char)
  5939. CParts[#CParts+1] = {P,tick()}
  5940. P.Anchored = true
  5941. P.FormFactor = "Custom"
  5942. P.BrickColor = Hit.BrickColor
  5943. P.Material = Hit.Material
  5944. P.TopSurface = "Smooth"
  5945. P.BottomSurface = "Smooth"
  5946. P.Size = Vector3.new(2,2,2)*(math.random(100,300)/100)
  5947. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  5948. Pos = Pos.p
  5949. 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)))
  5950. local P = P:Clone()
  5951. CParts[#CParts+1] = {P,tick()}
  5952. P.Parent = char
  5953. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  5954. Pos = Pos.p
  5955. 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)))
  5956. if LastPos ~= nil then
  5957. local P = P:Clone()
  5958. CParts[#CParts+1] = {P,tick()}
  5959. P.Parent = char
  5960. P.BrickColor = BrickColor.new("Royal purple")
  5961. P.Material = "Neon"
  5962. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  5963. Pos = Pos.p
  5964. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  5965. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  5966. --P.Velocity = Vector3.new(0,-1000,0)
  5967. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  5968. end
  5969. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  5970. end
  5971. end
  5972. end
  5973. if BREAKIT then break end
  5974. wait(0.002)
  5975. end
  5976. for i,v in pairs(Rocks) do
  5977. CParts[#CParts+1] = {v,tick()}
  5978. end
  5979. for i,v in pairs(Parts) do
  5980. v:Destroy()
  5981. end
  5982. Parts = nil
  5983. while true do
  5984. local t = tick()
  5985. local p = nil
  5986. for i,v in pairs(CParts) do
  5987. if t-v[2] > 4 then
  5988. v[1].Transparency = v[1].Transparency+0.05
  5989. if v[1].Transparency >= 1 then
  5990. v[1]:Destroy()
  5991. CParts[i] = nil
  5992. end
  5993. end
  5994. p = v
  5995. end
  5996. if p == nil then break end
  5997. wait(0.002)
  5998. end
  5999. for i,v in pairs(CParts) do
  6000. v:Destroy()
  6001. end
  6002. CParts = {}
  6003. end)
  6004. for i = 1, 20 do
  6005. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(-6),math.rad(-20)), 0.2)
  6006. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.2)
  6007. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  6008. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  6009. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  6010. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  6011. 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)
  6012. if Debounces.on == false then break end
  6013. rs:wait(2)
  6014. end
  6015. if Debounces.CanAttack == false then
  6016. Debounces.CanAttack = true
  6017. Debounces.on = false
  6018. Debounces.NoIdl = false
  6019. end
  6020. end
  6021. end
  6022. end)
  6023. ----------------------------------------------------
  6024. local orbt={}
  6025. local stlt={}
  6026. local chot={}
  6027. local cfxt={}
  6028. local pfxt={}
  6029. local cns=0
  6030. local cnOrb=nil
  6031. mouse.KeyDown:connect(function(key)
  6032. if key == "u" then
  6033. if Debounces.CanAttack == true then
  6034. Debounces.CanAttack = false
  6035. Debounces.NoIdl = true
  6036. Debounces.on = true
  6037. orbt={}
  6038. stlt={}
  6039. chot={}
  6040. cfxt={}
  6041. for i = 1, 20 do
  6042. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  6043. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  6044. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  6045. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.4)
  6046. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  6047. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  6048. if Debounces.on == false then end
  6049. rs:wait()
  6050. end
  6051. z2 = Instance.new("Sound",char)
  6052. z2.SoundId = "rbxassetid://489657591"
  6053. z2.Pitch = 1
  6054. z2.Volume = 2
  6055. wait(0.1)
  6056. z2:Play()
  6057. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Royal purple")
  6058. debris:AddItem(cnOrb,50)
  6059. cnOrb.Mesh.MeshType=3
  6060. cnOrb.Transparency = 0.5
  6061. table.insert(orbt,cnOrb)
  6062. table.insert(stlt,cnOrb)
  6063. local nt=0
  6064. for i=0,14.75,0.02 do
  6065. nt=nt+1
  6066. cns=i
  6067. if nt>=2 then
  6068. nt=0
  6069. local cho=nwPrt(mod3,Vector3.new(0.2,0.2,0.2),cnOrb.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Royal purple")
  6070. debris:AddItem(cho,1)
  6071. cho.Mesh.MeshType=3
  6072. cho.Transparency = 1
  6073. table.insert(chot,cho)
  6074. end
  6075. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  6076. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  6077. wait()
  6078. end
  6079. for i = 1, 14 do
  6080. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(110),math.rad(-6),math.rad(140)), 0.4)
  6081. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(80),math.rad(6),math.rad(-40)), 0.2)
  6082. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  6083. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  6084. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  6085. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  6086. if Debounces.on == false then end
  6087. rs:wait()
  6088. end
  6089. coroutine.wrap(function()
  6090. for i = 1, 20 do
  6091. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(-6),math.rad(-20)), 0.2)
  6092. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.2)
  6093. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  6094. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  6095. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  6096. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  6097. if Debounces.on == false then end
  6098. rs:wait()
  6099. end
  6100. end)()
  6101. wait(0.1)
  6102. stlt={}
  6103. local ry,ht,ps=newRay(root.CFrame*CFrame.new(0,0,-4),root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)*CFrame.new(0,0,-2),160,{char})
  6104. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  6105. local nt=0
  6106. for i=0,160,3 do
  6107. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  6108. nt=nt+1
  6109. if nt>=6 then
  6110. nt=0
  6111. local cfx=nwPrt(mod3,Vector3.new(10,10,10),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Really black")
  6112. cfx.Mesh.MeshId="rbxassetid://0"
  6113. cfx.Transparency=0.4
  6114. table.insert(cfxt,cfx)
  6115. debris:AddItem(cfx,1)
  6116. end
  6117. if (cnOrb.Position-ps).magnitude<12 then
  6118. break
  6119. end
  6120. wait()
  6121. end
  6122. orbt={}
  6123.  
  6124. for i=0,1,0.1 do
  6125. local cs=cnOrb.Mesh.Scale
  6126. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  6127. wait()
  6128. end
  6129. local ofx=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame,"Really black")
  6130. ofx.Transparency=0.5
  6131. ofx.Mesh.MeshType=3
  6132. ofx.Mesh.Scale=Vector3.new(30,30,30)
  6133. for _,v in pairs(game:service"Players":GetChildren()) do
  6134. pcall(function()
  6135. for _,c in pairs(v.Character:GetChildren()) do
  6136. if v~=p and c:IsA("Part") and (cnOrb.CFrame.p-c.CFrame.p).magnitude<120 and (cnOrb.CFrame.p-c.CFrame.p).magnitude>50 then
  6137. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  6138. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*2500
  6139. end
  6140. end
  6141. end)
  6142. end
  6143. for i=0,1,0.05 do
  6144. local cs=cnOrb.Mesh.Scale
  6145. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  6146. local ofs=ofx.Mesh.Scale
  6147. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  6148. ofx.Transparency=Tween(ofx.Transparency,1,i)
  6149. wait()
  6150. end
  6151. ofx:Destroy()
  6152. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  6153. local cnfx=nwPrt(cnOrb,Vector3.new(100,100,100),cnOrb.CFrame,"Really black")
  6154. cnfx.Mesh.MeshType=3
  6155. cnOrb.Transparency=0.5
  6156. local cnr=nwPrt(cnOrb,Vector3.new(100,100,100),cnOrb.CFrame,"Really black")
  6157. cnr.Transparency=0.5
  6158. cnr.Mesh.MeshType=3
  6159. local rn1=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Royal purple")
  6160. rn1.Transparency=1
  6161. rn1.Mesh.MeshId="rbxassetid://3270017"
  6162. local rn2=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame,"Royal purple")
  6163. rn2.Transparency=1
  6164. rn2.Mesh.MeshId="rbxassetid://3270017"
  6165. local rn3=nwPrt(cnOrb,Vector3.new(100,100,100),cnOrb.CFrame*CFrame.Angles(math.rad(-90),0,0),"Royal purple")
  6166. rn3.Transparency=1
  6167. rn3.Mesh.MeshId="rbxassetid://3270017"
  6168. local rn4=nwPrt(cnOrb,Vector3.new(100,100,100),cnOrb.CFrame,"Royal purple")
  6169. rn4.Transparency=1
  6170. rn4.Mesh.MeshId="rbxassetid://3270017"
  6171. local rn5=nwPrt(cnOrb,Vector3.new(200,200,100),cnOrb.CFrame,"Royal purple")
  6172. rn5.Transparency=1
  6173. rn5.Mesh.MeshId="rbxassetid://3270017"
  6174. local rn6=nwPrt(cnOrb,Vector3.new(200,200,100),cnOrb.CFrame,"Royal purple")
  6175. rn6.Transparency=1
  6176. rn6.Mesh.MeshId="rbxassetid://3270017"
  6177. local nt=0
  6178. local cs=nil
  6179. z4 = Instance.new("Sound",char)
  6180. z4.SoundId = "rbxassetid://419447292"
  6181. z4.Pitch = 1
  6182. z4.Volume = 10
  6183. wait(0.1)
  6184. z4:Play()
  6185. z3 = Instance.new("Sound",char)
  6186. z3.SoundId = "rbxassetid://421328847"
  6187. z3.Pitch = 1
  6188. z3.Volume = 10
  6189. wait(0.1)
  6190. z3:Play()
  6191. for i=0,1,0.05 do
  6192. cs=cnOrb.Mesh.Scale
  6193. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  6194. local fs=cnfx.Mesh.Scale
  6195. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  6196. cnfx.Transparency=cnfx.Transparency+0.05
  6197. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  6198. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  6199. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  6200. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  6201. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  6202. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  6203. rn3.Mesh.Scale=Vector3.new(Tween(fs.X,1200,i),Tween(fs.Y,1200,i),Tween(fs.Z,600,i))
  6204. rn4.Mesh.Scale=Vector3.new(Tween(fs.X,1200,i),Tween(fs.Y,1200,i),Tween(fs.Z,600,i))
  6205. rn3.CFrame=rn3.CFrame*CFrame.Angles(math.rad(-10),math.rad(-6),math.rad(-3))
  6206. rn4.CFrame=rn4.CFrame*CFrame.Angles(math.rad(-10),math.rad(-6),math.rad(-3))
  6207. rn3.Transparency=Tween(rn1.Transparency,0.8,i)
  6208. rn4.Transparency=Tween(rn2.Transparency,0.8,i)
  6209. rn5.Transparency=Tween(rn2.Transparency,0.25,i)
  6210. rn5.CFrame=rn5.CFrame*CFrame.Angles(math.rad(-20),math.rad(-18),math.rad(-9))
  6211. rn5.Mesh.Scale=Vector3.new(Tween(fs.X,2400,i),Tween(fs.Y,2400,i),Tween(fs.Z,1200,i))
  6212. rn6.Transparency=Tween(rn2.Transparency,0.25,i)
  6213. rn6.CFrame=rn6.CFrame*CFrame.Angles(math.rad(20),math.rad(18),math.rad(9))
  6214. rn6.Mesh.Scale=Vector3.new(Tween(fs.X,2400,i),Tween(fs.Y,2400,i),Tween(fs.Z,1200,i))
  6215. local rs=cnr.Mesh.Scale
  6216. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  6217. nt=nt+1
  6218. if nt>=6 then
  6219. local pls={}
  6220. for _,v in pairs(game.Players:GetChildren()) do
  6221. table.insert(pls,v)
  6222. end
  6223. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  6224. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Royal purple")
  6225. pffx.Mesh.MeshId="rbxassetid://0"
  6226. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  6227. debris:AddItem(pffx,2)
  6228. table.insert(pfxt,pffx)
  6229. nt=0
  6230. end
  6231. wait()
  6232. end
  6233. local int=0
  6234. coroutine.wrap(function()
  6235. for i=1,500 do
  6236. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  6237. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  6238. rn3.CFrame=rn3.CFrame*CFrame.Angles(math.rad(-10),math.rad(-5),math.rad(-5))
  6239. rn4.CFrame=rn4.CFrame*CFrame.Angles(math.rad(-10),math.rad(-5),math.rad(-5))
  6240. rn5.CFrame=rn5.CFrame*CFrame.Angles(math.rad(5),math.rad(5),math.rad(5))
  6241. rn6.CFrame=rn6.CFrame*CFrame.Angles(math.rad(-5),math.rad(-5),math.rad(-5))
  6242. nt=nt+1
  6243. int=int+1
  6244. local htd={p}
  6245. for _,v in pairs(game:service"Players":GetChildren()) do
  6246. pcall(function()
  6247. for _,c in pairs(v.Character:GetChildren()) do
  6248. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  6249. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  6250. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  6251. table.insert(htd,v)
  6252. end
  6253. end
  6254. end)
  6255. end
  6256. htd={p}
  6257. if int>=6 then
  6258. for _,v in pairs(game:service"Players":GetChildren()) do
  6259. pcall(function()
  6260. for _,c in pairs(v.Character:GetChildren()) do
  6261. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  6262. table.insert(htd,v)
  6263. local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Royal purple")
  6264. hfx.Mesh.Scale=Vector3.new(2,2,2)
  6265. hfx.Mesh.MeshType=3
  6266. debris:AddItem(hfx,2)
  6267. coroutine.wrap(function()
  6268. pcall(function()
  6269. for i=0,1,0.05 do
  6270. pcall(function()
  6271. local hs=hfx.Mesh.Scale
  6272. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  6273. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  6274. end)
  6275. wait()
  6276. end
  6277. hfx:Destroy()
  6278. end)
  6279. end)()
  6280. end
  6281. end
  6282. end)
  6283. end
  6284. int=0
  6285. end
  6286. if nt>=4 then
  6287. local pls={}
  6288. for _,v in pairs(game.Players:GetChildren()) do
  6289. table.insert(pls,v)
  6290. end
  6291. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  6292. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Royal purple")
  6293. pffx.Transparency=0.4
  6294. pffx.Mesh.MeshId="rbxassetid://0"
  6295. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  6296. debris:AddItem(pffx,2)
  6297. table.insert(pfxt,pffx)
  6298. nt=0
  6299. end
  6300. wait()
  6301. end
  6302. cnOrb:Destroy()
  6303. cnfx:Destroy()
  6304. for _,v in pairs(mod3:GetChildren()) do
  6305. v:Destroy()
  6306. end
  6307. orbt={}
  6308. stlt={}
  6309. chot={}
  6310. cfxt={}
  6311. pfxt={}
  6312. end)()
  6313. if Debounces.CanAttack == false then
  6314. Debounces.CanAttack = true
  6315. Debounces.NoIdl = false
  6316. Debounces.on = false
  6317. end
  6318. end
  6319. end
  6320. end)
  6321. ----------------------------------------------------
  6322. --[[mouse.KeyDown:connect(function(key)
  6323. if key == "y" then
  6324. if Debounces.CanAttack == true then
  6325. Debounces.CanAttack = false
  6326. Debounces.NoIdl = true
  6327. Debounces.on = true
  6328. local shell = Instance.new("Part",torso)
  6329. shell.BrickColor = BrickColor.new("Royal purple")
  6330. shell.Anchored = false
  6331. shell.CanCollide = false
  6332. shell.Locked = true
  6333. shell.TopSurface = "SmoothNoOutlines"
  6334. shell.BottomSurface = "SmoothNoOutlines"
  6335. shell.Size = Vector3.new(1.2,1.2,1.2)
  6336. shell.FormFactor = 3
  6337. local shellm = Instance.new("SpecialMesh",shell)
  6338. shellm.MeshType = "Sphere"
  6339. shellm.Scale = Vector3.new(1.2,1.2,1.2)
  6340. Omega = function()
  6341. local X = Instance.new("Part",char)
  6342. local O = Instance.new("ObjectValue",X)
  6343. O.Name = "creator"
  6344. X.Locked = true
  6345. X.Name = "Shell"
  6346. X.Anchored = false
  6347. X.CanCollide = false
  6348. X.Transparency = 0.5
  6349. X.Reflectance = 0
  6350. X.BottomSurface = 0
  6351. X.TopSurface = 0
  6352. X.Shape = 0
  6353. local V = Instance.new("ObjectValue",X)
  6354. V.Value = char
  6355. V.Name = "creator"
  6356. X.BrickColor = BrickColor.new("Royal purple")
  6357. X.Size = Vector3.new(40,40,40)
  6358. --X.Material = "Neon"
  6359. local Z = Instance.new("SpecialMesh",X)
  6360. Z.MeshType = "Sphere"
  6361. Z.Scale = Vector3.new(0.2,0.2,0.2)
  6362. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  6363. local bv = Instance.new("BodyVelocity",X)
  6364. bv.maxForce = Vector3.new(99999,99999,99999)
  6365. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  6366. bv.velocity = root.CFrame.lookVector*10
  6367. Explode = X.Touched:connect(function(hit)
  6368. if hit ~= char and hit.Name ~= "Shell" and hit ~= X and hit:IsA("Part") or hit:IsA("BasePart}") then
  6369. local cf = X.CFrame
  6370. bv:Destroy()
  6371. X.Anchored = true
  6372. Z:Remove()
  6373. Explode:disconnect()
  6374. X.Size = Vector3.new(3,3,3)
  6375. X.Touched:connect(function(hit) end)
  6376. X.CanCollide = false
  6377. for i,v in pairs(FindNearestTorso(X.CFrame.p,200))do
  6378. if v:FindFirstChild('Humanoid') then
  6379. v.Humanoid:TakeDamage(math.random(80,120))
  6380. end
  6381. end
  6382. for i = 1, (40) do rs:wait()
  6383. X.Transparency = X.Transparency + (1/40)
  6384. X.Size = X.Size + Vector3.new(1,1,1)
  6385. X.CFrame = root.CFrame * CFrame.new(0,0,-10)
  6386. end
  6387. X:Destroy()
  6388. end
  6389. end)
  6390. end
  6391. for i = 1,200 do
  6392. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6393. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.03)
  6394. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
  6395. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6396. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6397. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6398. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6399. if Debounces.on == false then break end
  6400. rs:wait()
  6401. end
  6402. for i = 1,30 do
  6403. shell.CFrame = torso.CFrame * CFrame.new(0,8,0)
  6404. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.4)
  6405. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-170)), 0.4)
  6406. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6407. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6408. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6409. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6410. if Debounces.on == false then break end
  6411. rs:wait()
  6412. end
  6413. for i = 1,40 do
  6414. shell.CFrame = torso.CFrame * CFrame.new(0,20,0)
  6415. shell.Size = shell.Size + Vector3.new(1,1,1)
  6416. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(100)), 0.4)
  6417. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-100)), 0.4)
  6418. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6419. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6420. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6421. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6422. if Debounces.on == false then break end
  6423. rs:wait()
  6424. end
  6425. for i = 1,40 do
  6426. shell.CFrame = torso.CFrame * CFrame.new(0,0,-30)
  6427. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(20)), 0.4)
  6428. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.4)
  6429. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6430. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6431. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6432. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6433. if Debounces.on == false then break end
  6434. rs:wait()
  6435. end
  6436. for i = 1,60 do
  6437. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  6438. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-30)), 0.4)
  6439. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.4)
  6440. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6441. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6442. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6443. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6444. if Debounces.on == false then break end
  6445. rs:wait()
  6446. end
  6447. for i = 1,60 do
  6448. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  6449. shell.Size = shell.Size + Vector3.new(1,1,1)
  6450. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(120)), 0.4)
  6451. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(-120)), 0.4)
  6452. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6453. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6454. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6455. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6456. if Debounces.on == false then break end
  6457. rs:wait()
  6458. end
  6459. if Debounces.CanAttack == false then
  6460. Debounces.CanAttack = true
  6461. Debounces.NoIdl = false
  6462. Debounces.on = false
  6463. end
  6464. end
  6465. end
  6466. end)]]--
  6467. ----------------------------------------------------
  6468. Charging = false
  6469. mouse.KeyDown:connect(function(key)
  6470. if key == "r" then
  6471. if Charging == false then
  6472. Charging = true
  6473. if Debounces.CanAttack == true then
  6474. Debounces.CanAttack = false
  6475. Debounces.NoIdl = true
  6476. Debounces.on = true
  6477. for i = 1,20 do
  6478. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-40)), 0.2)
  6479. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(40)), 0.2)
  6480. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  6481. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  6482. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  6483. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  6484. if Debounces.on == false then break end
  6485. rs:wait()
  6486. end
  6487. --[[for i = 1,20 do
  6488. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(-20),math.rad(50)), 0.4)
  6489. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(20),math.rad(-50)), 0.4)
  6490. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(34),math.rad(0),0), 0.4)
  6491. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)), 0.4)
  6492. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.4)
  6493. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.4)
  6494. if Debounces.on == false then break end
  6495. rs:wait()
  6496. end]]--
  6497. xay = Instance.new("Sound",char)
  6498. xay.SoundId = "rbxassetid://419447292"
  6499. xay.Pitch = 1
  6500. xay.Volume = 2.5
  6501. xay:Play()
  6502. pt=Instance.new('Part',torso)
  6503. pt.Anchored=true
  6504. pt.CanCollide=false
  6505. pt.Locked = true
  6506. pt.FormFactor='Custom'
  6507. pt.Size=Vector3.new(1,1,1)
  6508. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  6509. pt.Transparency=.6
  6510. pt.BrickColor=BrickColor.new('Really black')
  6511. msh=Instance.new('SpecialMesh',pt)
  6512. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  6513. msh.Scale=Vector3.new(8,4,8)
  6514. pt2=pt:clone()
  6515. pt2.Parent = torso
  6516. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  6517. pt2.BrickColor=BrickColor.new("Royal purple")
  6518. msh2=msh:clone()
  6519. msh2.Parent=pt2
  6520. msh2.Scale=Vector3.new(10,5,10)
  6521.  
  6522. custommath={25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100}
  6523.  
  6524. bl = Instance.new("Part", char)
  6525. bl.Locked = true
  6526. bl.Name = "Shell"
  6527. bl.BrickColor = BrickColor.new("Really black")
  6528. bl.Anchored = true
  6529. bl.CanCollide = false
  6530. bl.Transparency = 0
  6531. bl.Reflectance = 0
  6532. bl.BottomSurface = 0
  6533. bl.TopSurface = 0
  6534. bl.Shape = 0
  6535. blm = Instance.new("SpecialMesh",bl)
  6536. blm.MeshType = "Sphere"
  6537. blm.Scale = Vector3.new(1,1,1)
  6538. blm.MeshId = "rbxassetid://9982590"
  6539.  
  6540. bl2 = Instance.new("Part", char)
  6541. bl2.Locked = true
  6542. bl2.Name = "Shella"
  6543. bl2.BrickColor = BrickColor.new("Really black")
  6544. bl2.Anchored = true
  6545. bl2.CanCollide = false
  6546. bl2.Transparency = 0
  6547. bl2.Reflectance = 0
  6548. bl2.BottomSurface = 0
  6549. bl2.TopSurface = 0
  6550. bl2.Shape = 0
  6551. blm2 = Instance.new("SpecialMesh",bl2)
  6552. blm2.MeshType = "Sphere"
  6553. blm2.Scale = Vector3.new(1,1,1)
  6554. blm2.MeshId = "rbxassetid://9982590"
  6555.  
  6556. coroutine.resume(coroutine.create(function()
  6557. for i=1, math.huge, 4 do
  6558. if Charging == true then
  6559. rs:wait()
  6560. bl.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  6561. blm.Scale = blm.Scale + Vector3.new(15, 15, 15)
  6562. bl.Transparency = bl.Transparency + 0.075
  6563. bl2.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  6564. blm2.Scale = blm2.Scale + Vector3.new(5, 5, 5)
  6565. bl2.Transparency = bl2.Transparency + 0.025
  6566. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2),0)
  6567. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2),0)
  6568. msh.Scale = msh.Scale + Vector3.new(5,2.5,5)
  6569. msh2.Scale = msh2.Scale + Vector3.new(10,5,10)
  6570. elseif Charging == false then break
  6571. end
  6572. end
  6573. end))
  6574.  
  6575. repeat
  6576. local p = Instance.new('Part',torso)
  6577. p.formFactor = 'Custom'
  6578. p.Size = Vector3.new(1,1,1)
  6579. p.BrickColor = workspace.Base.BrickColor
  6580. p.CanCollide = false
  6581. p.Transparency = 0
  6582. p.Anchored = true
  6583. p.Locked=true
  6584. p.Material = workspace.Base.Material
  6585. s = math.random(1,40)/10
  6586. local m = Instance.new("BlockMesh",p)
  6587. m.Scale = Vector3.new(s,s,s)
  6588. p.CFrame = torso.CFrame*CFrame.new(custommath[math.random(1,#custommath)]/10,-math.random(5,7),custommath[math.random(1,#custommath)]/10)*CFrame.Angles(math.random(),math.random(),math.random())
  6589. --[[coroutine.wrap(function()
  6590. wait(2)
  6591. while Charging == true do
  6592. wait(2)
  6593. GroundWave1()
  6594. wait(2)
  6595. end
  6596. end)()]]--
  6597. Spawn(function()
  6598. while rs:wait() do
  6599. if Charging == true then
  6600. rarm.Weld.C0 = CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(-30,-20)),math.rad(math.random(30,50)))
  6601. larm.Weld.C0 = CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(20,30)),math.rad(math.random(-50,-30)))
  6602. hed.Weld.C0 = CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(math.random(26,34)),math.rad(math.random(-5,5)),math.rad(0))
  6603. torso.Weld.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(10), math.rad(math.random(-4,4)), math.rad(0))
  6604. lleg.Weld.C0 = CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(10,20)), math.rad(math.random(-20,-10)))
  6605. rleg.Weld.C0 = CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(-20,-10)), math.rad(math.random(10,20)))
  6606. elseif Charging == false then break
  6607. end
  6608. end
  6609. end)
  6610. Spawn(function()
  6611. while rs:wait() do
  6612. if p.Transparency >= 1 then p:Destroy() break end
  6613. p.CFrame = p.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.2,0)
  6614. p.Transparency = p.Transparency+0.01
  6615. end
  6616. end)
  6617. wait(.3)
  6618. until Charging == false
  6619. end
  6620. end
  6621. end
  6622. end)
  6623. ----------------------------------------------------
  6624. mouse.KeyUp:connect(function(key)
  6625. if key == "r" then
  6626. if Charging == true then
  6627. Charging = false
  6628. pt:Destroy()
  6629. pt2:Destroy()
  6630. bl:Destroy()
  6631. if Debounces.CanAttack == false then
  6632. Debounces.CanAttack = true
  6633. Debounces.NoIdl = false
  6634. Debounces.on = false
  6635. end
  6636. end
  6637. end
  6638. end)
  6639. ----------------------------------------------------
  6640. mouse.KeyDown:connect(function(key)
  6641. if key == "g" then
  6642. if Debounces.CanAttack == true then
  6643. Debounces.CanAttack = false
  6644. Debounces.NoIdl = true
  6645. Debounces.on = true
  6646. local shell = Instance.new("Part",torso)
  6647. shell.BrickColor = BrickColor.new("Royal purple")
  6648. shell.Anchored = true
  6649. shell.CanCollide = false
  6650. shell.Locked = true
  6651. shell.TopSurface = "SmoothNoOutlines"
  6652. shell.BottomSurface = "SmoothNoOutlines"
  6653. shell.Size = Vector3.new(1,1,1)
  6654. shellm = Instance.new("SpecialMesh",shell)
  6655. shellm.MeshType = "Sphere"
  6656. shellm.Scale = Vector3.new(1,1,1)
  6657. local shell2 = Instance.new("Part",torso)
  6658. shell2.BrickColor = BrickColor.new("Royal purple")
  6659. shell2.Anchored = true
  6660. shell2.CanCollide = false
  6661. shell2.Locked = true
  6662. shell2.TopSurface = "SmoothNoOutlines"
  6663. shell2.BottomSurface = "SmoothNoOutlines"
  6664. shell2.Size = Vector3.new(1,1,1)
  6665. shellm2 = Instance.new("SpecialMesh",shell2)
  6666. shellm2.MeshType = "Sphere"
  6667. shellm2.Scale = Vector3.new(1,1,1)
  6668.  
  6669. function FindNearestTorso(Position,Distance,SinglePlayer)
  6670. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  6671. local List = {}
  6672. for i,v in pairs(workspace:GetChildren())do
  6673. if v:IsA("Model")then
  6674. if v:findFirstChild("Torso")then
  6675. if v ~= char then
  6676. if(v.Torso.Position -Position).magnitude <= Distance then
  6677. table.insert(List,v)
  6678. end
  6679. end
  6680. end
  6681. end
  6682. end
  6683. return List
  6684. end
  6685.  
  6686. Shell = function()
  6687. local X = Instance.new("Part",char)
  6688. local O = Instance.new("ObjectValue",X)
  6689. O.Name = "creator"
  6690. X.Locked = true
  6691. X.Name = "Shell"
  6692. X.Anchored = false
  6693. X.CanCollide = false
  6694. X.Transparency = 0
  6695. X.Reflectance = 0
  6696. X.BottomSurface = 0
  6697. X.TopSurface = 0
  6698. X.Shape = 0
  6699. local V = Instance.new("ObjectValue",X)
  6700. V.Value = char
  6701. V.Name = "creator"
  6702. X.BrickColor = BrickColor.new("Royal purple")
  6703. X.Size = Vector3.new(1,1,1)
  6704. --X.Material = "Neon"
  6705. local Z = Instance.new("SpecialMesh",X)
  6706. Z.MeshType = "Sphere"
  6707. Z.Scale = Vector3.new(1,1,1)
  6708. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  6709. local bv = Instance.new("BodyVelocity",X)
  6710. bv.maxForce = Vector3.new(99999,99999,99999)
  6711. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  6712. bv.velocity = root.CFrame.lookVector*65
  6713. Explode = X.Touched:connect(function(hit)
  6714. if hit ~= char and hit.Name ~= "Shell" and hit:IsA("Part") or hit:IsA("BasePart}") then
  6715. local cf = X.CFrame
  6716. bv:Destroy()
  6717. X.Anchored = true
  6718. Z:Remove()
  6719. Explode:disconnect()
  6720. X.Size = Vector3.new(3,3,3)
  6721. X.Touched:connect(function(hit) end)
  6722. X.CanCollide = false
  6723. for i,v in pairs(FindNearestTorso(X.CFrame.p,40))do
  6724. if v:FindFirstChild('Humanoid') then
  6725. v.Humanoid:TakeDamage(math.random(6,12))
  6726. end
  6727. end
  6728. for i = 1, (40) do rs:wait()
  6729. X.Transparency = X.Transparency + (1/40)
  6730. X.Size = X.Size + Vector3.new(1,1,1)
  6731. X.CFrame = cf
  6732. end
  6733. X:Destroy()
  6734. end
  6735. end)
  6736. end
  6737. Shell()
  6738. for i = 1, 10 do
  6739. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6740. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6741. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6742. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6743. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.7)
  6744. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.7)
  6745. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), 0.7)
  6746. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.7)
  6747. if Debounces.on == false then break end
  6748. rs:wait()
  6749. end
  6750. Shell()
  6751. shell.Transparency = 1
  6752. for i = 1, 10 do
  6753. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6754. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6755. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6756. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6757. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6758. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6759. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6760. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6761. if Debounces.on == false then break end
  6762. rs:wait()
  6763. end
  6764. Shell()
  6765. shell.Transparency = 0
  6766. shell2.Transparency = 1
  6767. for i = 1, 10 do
  6768. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6769. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6770. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6771. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6772. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  6773. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6774. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6775. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6776. if Debounces.on == false then break end
  6777. rs:wait()
  6778. end
  6779. Shell()
  6780. shell2.Transparency = 0
  6781. shell.Transparency = 1
  6782. for i = 1, 10 do
  6783. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6784. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6785. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6786. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6787. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6788. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6789. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6790. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6791. if Debounces.on == false then break end
  6792. rs:wait()
  6793. end
  6794. Shell()
  6795. shell.Transparency = 0
  6796. shell2.Transparency = 1
  6797. for i = 1, 10 do
  6798. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6799. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6800. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6801. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6802. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  6803. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6804. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6805. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6806. if Debounces.on == false then break end
  6807. rs:wait()
  6808. end
  6809. Shell()
  6810. shell2.Transparency = 0
  6811. shell.Transparency = 1
  6812. for i = 1, 10 do
  6813. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6814. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6815. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6816. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6817. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6818. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6819. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6820. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6821. if Debounces.on == false then break end
  6822. rs:wait()
  6823. end
  6824. Shell()
  6825. shell.Transparency = 0
  6826. shell2.Transparency = 1
  6827. for i = 1, 10 do
  6828. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6829. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6830. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6831. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.5)
  6832. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6833. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6834. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6835. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6836. if Debounces.on == false then break end
  6837. rs:wait()
  6838. end
  6839. Shell()
  6840. shell2.Transparency = 0
  6841. shell.Transparency = 1
  6842. for i = 1, 10 do
  6843. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6844. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6845. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6846. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6847. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6848. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6849. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6850. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6851. if Debounces.on == false then break end
  6852. rs:wait()
  6853. end
  6854. Shell()
  6855. shell.Transparency = 0
  6856. shell2.Transparency = 1
  6857. for i = 1, 10 do
  6858. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6859. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6860. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6861. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6862. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  6863. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6864. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6865. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6866. if Debounces.on == false then break end
  6867. rs:wait()
  6868. end
  6869. Shell()
  6870. shell2.Transparency = 0
  6871. shell.Transparency = 1
  6872. for i = 1, 10 do
  6873. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6874. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6875. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6876. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6877. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6878. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6879. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6880. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6881. if Debounces.on == false then break end
  6882. rs:wait()
  6883. end
  6884. Shell()
  6885. shell.Transparency = 0
  6886. shell2.Transparency = 1
  6887. for i = 1, 10 do
  6888. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6889. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6890. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6891. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6892. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  6893. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6894. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6895. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6896. if Debounces.on == false then break end
  6897. rs:wait()
  6898. end
  6899. Shell()
  6900. shell2.Transparency = 0
  6901. shell.Transparency = 1
  6902. for i = 1, 10 do
  6903. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6904. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6905. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6906. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6907. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6908. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6909. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6910. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6911. if Debounces.on == false then break end
  6912. rs:wait()
  6913. end
  6914. Shell()
  6915. shell.Transparency = 0
  6916. shell2.Transparency = 1
  6917. for i = 1, 10 do
  6918. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6919. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6920. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6921. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6922. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  6923. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6924. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6925. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6926. if Debounces.on == false then break end
  6927. rs:wait()
  6928. end
  6929. shell.Transparency = 1
  6930. if Debounces.CanAttack == false then
  6931. Debounces.CanAttack = true
  6932. Debounces.NoIdl = false
  6933. Debounces.on = false
  6934. end
  6935. end
  6936. end
  6937. end)
  6938. ----------------------------------------------------
  6939. Search = false
  6940. mouse.KeyDown:connect(function(key)
  6941. if key == "n" then
  6942. if Search == false then
  6943. Search = true
  6944. for i,v in pairs(game.Players:getPlayers()) do
  6945. if v.Name~=char.Name then
  6946. for j,k in pairs(v.Character:GetChildren()) do
  6947. if k:IsA("BasePart") and k.Transparency >= 1 then
  6948. bawx=Instance.new("SelectionBox",cam)
  6949. bawx.Color = BrickColor.new("Bright red")
  6950. bawx.Transparency = .5
  6951. bawx.Adornee = k
  6952. end
  6953. end
  6954. end
  6955. end
  6956. elseif Search == true then
  6957. Search = false
  6958. for i, v in pairs(cam:GetChildren()) do
  6959. if v:IsA("SelectionBox") then
  6960. v:Destroy()
  6961. end
  6962. end
  6963. end
  6964. end
  6965. end)
  6966. ----------------------------------------------------
  6967. Grab = false
  6968. mouse.KeyDown:connect(function(key)
  6969. if key == "z" then
  6970. Debounces.on = true
  6971. Debounces.NoIdl = true
  6972. Debounces.ks = true
  6973. if Grab == false then
  6974. gp = nil
  6975. for i = 1, 20 do
  6976. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.2)
  6977. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.2)
  6978. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  6979. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  6980. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  6981. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  6982. if Debounces.on == false then break end
  6983. rs:wait()
  6984. end
  6985. con1=larm.Touched:connect(function(hit) -- this is grab
  6986. ht = hit.Parent
  6987. hum1=ht:FindFirstChild('Humanoid')
  6988. if hum1 ~= nil then
  6989. if Debounces.ks==true then
  6990. z = Instance.new("Sound",hed)
  6991. z.SoundId = "rbxassetid://588693156"
  6992. z.Volume = 1
  6993. z:Play()
  6994. Debounces.ks=false
  6995. end
  6996. hum1.PlatformStand=true
  6997. gp = ht
  6998. Grab = true
  6999. asd=weld5(root,ht:FindFirstChild("Torso"),CFrame.new(0,0,-2.4),CFrame.new(0,0,0))
  7000. asd.Parent = larm
  7001. asd.Name = "asd"
  7002. asd.C0=asd.C0*CFrame.Angles(math.rad(0),math.rad(180),0)
  7003. --[[elseif hum1 == nil then
  7004. con1:disconnect()
  7005. wait() return]]--
  7006. end
  7007. end)
  7008. for i = 1, 20 do
  7009. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
  7010. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
  7011. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  7012. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  7013. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  7014. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  7015. if Debounces.on == false then break end
  7016. rs:wait()
  7017. end
  7018. if hum1 == nil then
  7019. Debounces.on = false
  7020. Debounces.NoIdl = false
  7021. end
  7022. con1:disconnect()
  7023. elseif Grab == true then
  7024. Grab = false
  7025. Punch()
  7026. z = Instance.new("Sound",hed)
  7027. z.SoundId = "rbxassetid://588693156"
  7028. z.Pitch = ptz[math.random(1,#ptz)]
  7029. z.Volume = 1
  7030. z:Play()
  7031. for i = 1, 10 do
  7032. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  7033. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  7034. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  7035. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  7036. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7037. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7038. if Debounces.on == false then break end
  7039. rs:wait()
  7040. end
  7041. Punch()
  7042. z = Instance.new("Sound",hed)
  7043. z.SoundId = "rbxassetid://588693156"
  7044. z.Pitch = ptz[math.random(1,#ptz)]
  7045. z.Volume = 1
  7046. z:Play()
  7047. for i = 1, 10 do
  7048. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  7049. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  7050. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  7051. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  7052. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7053. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7054. if Debounces.on == false then break end
  7055. rs:wait()
  7056. end
  7057. Punch()
  7058. z = Instance.new("Sound",hed)
  7059. z.SoundId = "rbxassetid://588693156"
  7060. z.Pitch = ptz[math.random(1,#ptz)]
  7061. z.Volume = 1
  7062. z:Play()
  7063. for i = 1, 10 do
  7064. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  7065. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  7066. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  7067. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  7068. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7069. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7070. if Debounces.on == false then break end
  7071. rs:wait()
  7072. end
  7073. Punch()
  7074. z = Instance.new("Sound",hed)
  7075. z.SoundId = "rbxassetid://588693156"
  7076. z.Pitch = ptz[math.random(1,#ptz)]
  7077. z.Volume = 1
  7078. z:Play()
  7079. for i = 1, 10 do
  7080. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  7081. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  7082. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  7083. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  7084. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7085. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7086. if Debounces.on == false then break end
  7087. rs:wait()
  7088. end
  7089. Punch()
  7090. z = Instance.new("Sound",hed)
  7091. z.SoundId = "rbxassetid://588693156"
  7092. z.Pitch = ptz[math.random(1,#ptz)]
  7093. z.Volume = 1
  7094. z:Play()
  7095. for i = 1, 10 do
  7096. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  7097. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  7098. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  7099. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  7100. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7101. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7102. if Debounces.on == false then break end
  7103. rs:wait()
  7104. end
  7105. Punch()
  7106. z = Instance.new("Sound",hed)
  7107. z.SoundId = "rbxassetid://588693156"
  7108. z.Pitch = ptz[math.random(1,#ptz)]
  7109. z.Volume = 1
  7110. z:Play()
  7111. for i = 1, 10 do
  7112. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  7113. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  7114. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  7115. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  7116. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7117. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7118. if Debounces.on == false then break end
  7119. rs:wait()
  7120. end
  7121. Punch()
  7122. z = Instance.new("Sound",hed)
  7123. z.SoundId = "rbxassetid://588693156"
  7124. z.Pitch = ptz[math.random(1,#ptz)]
  7125. z.Volume = 1
  7126. z:Play()
  7127. for i = 1, 10 do
  7128. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  7129. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  7130. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  7131. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  7132. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7133. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7134. if Debounces.on == false then break end
  7135. rs:wait()
  7136. end
  7137. Punch()
  7138. z = Instance.new("Sound",hed)
  7139. z.SoundId = "rbxassetid://588693156"
  7140. z.Pitch = ptz[math.random(1,#ptz)]
  7141. z.Volume = 1
  7142. z:Play()
  7143. for i = 1, 10 do
  7144. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  7145. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  7146. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  7147. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  7148. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7149. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7150. if Debounces.on == false then break end
  7151. rs:wait()
  7152. end
  7153. Punch()
  7154. z = Instance.new("Sound",hed)
  7155. z.SoundId = "rbxassetid://588693156"
  7156. z.Pitch = ptz[math.random(1,#ptz)]
  7157. z.Volume = 1
  7158. z:Play()
  7159. for i = 1, 10 do
  7160. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  7161. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  7162. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  7163. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  7164. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7165. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7166. if Debounces.on == false then break end
  7167. rs:wait()
  7168. end
  7169. Punch()
  7170. z = Instance.new("Sound",hed)
  7171. z.SoundId = "rbxassetid://588693156"
  7172. z.Pitch = ptz[math.random(1,#ptz)]
  7173. z.Volume = 1
  7174. z:Play()
  7175. for i = 1, 10 do
  7176. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  7177. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  7178. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  7179. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  7180. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7181. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7182. if Debounces.on == false then break end
  7183. rs:wait()
  7184. end
  7185. Punch()
  7186. z = Instance.new("Sound",hed)
  7187. z.SoundId = "rbxassetid://588693156"
  7188. z.Pitch = ptz[math.random(1,#ptz)]
  7189. z.Volume = 1
  7190. z:Play()
  7191. for i = 1, 10 do
  7192. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  7193. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  7194. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  7195. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  7196. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7197. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7198. if Debounces.on == false then break end
  7199. rs:wait()
  7200. end
  7201. Punch()
  7202. z = Instance.new("Sound",hed)
  7203. z.SoundId = "rbxassetid://588693156"
  7204. z.Pitch = ptz[math.random(1,#ptz)]
  7205. z.Volume = 1
  7206. z:Play()
  7207. for i = 1, 10 do
  7208. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  7209. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  7210. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  7211. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  7212. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7213. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7214. if Debounces.on == false then break end
  7215. rs:wait()
  7216. end
  7217. con1:disconnect()
  7218. Debounces.on = false
  7219. Debounces.NoIdl = false
  7220. if gp ~= nil then
  7221. gp:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 140
  7222. for i,v in pairs(larm:GetChildren()) do
  7223. if v.Name == "asd" and v:IsA("Weld") then
  7224. v:Remove()
  7225. end
  7226. end
  7227. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  7228. bv.maxForce = Vector3.new(400000, 400000, 400000)
  7229. bv.P = 125000
  7230. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  7231. hum1=nil
  7232. ht=nil
  7233. Debounces.on = false
  7234. Debounces.NoIdl = false
  7235. elseif ht == nil then wait()
  7236. Grab = false
  7237. Debounces.on = false
  7238. Debounces.NoIdl = false
  7239. end
  7240. end
  7241. end
  7242. end)
  7243. ----------------------------------------------------
  7244. mouse.KeyDown:connect(function(key)
  7245. if string.byte(key) == 52 then
  7246. char.Humanoid.WalkSpeed = 60
  7247. end
  7248. end)
  7249. mouse.KeyUp:connect(function(key)
  7250. if string.byte(key) == 52 then
  7251. char.Humanoid.WalkSpeed = 8
  7252. end
  7253. end)
  7254. -------------------------------
  7255. local animpose = "Idle"
  7256. local lastanimpose = "Idle"
  7257. local sine = 0
  7258. local change = 1
  7259. local val = 0
  7260. local och = 0
  7261. local ffing = false
  7262. -------------------------------
  7263. game:GetService("RunService").RenderStepped:connect(function()
  7264. --[[if char.Humanoid.Jump == true then
  7265. jump = true
  7266. else
  7267. jump = false
  7268. end]]
  7269. char.Humanoid.FreeFalling:connect(function(f)
  7270. if f then
  7271. ffing = true
  7272. else
  7273. ffing = false
  7274. end
  7275. end)
  7276. sine = sine + change
  7277. if jumpn == true then
  7278. animpose = "Jumping"
  7279. elseif ffing == true then
  7280. animpose = "Freefalling"
  7281. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  7282. animpose = "Idle"
  7283. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  7284. animpose = "Walking"
  7285. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  7286. animpose = "Running"
  7287. end
  7288. if animpose ~= lastanimpose then
  7289. sine = 0
  7290. if Debounces.NoIdl == false then
  7291. if animpose == "Idle" then
  7292. for i = 1, 2 do
  7293. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  7294. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  7295. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  7296. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  7297. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  7298. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  7299. end
  7300. elseif animpose == "Walking" then
  7301. for i = 1, 2 do
  7302. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  7303. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  7304. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  7305. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  7306. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  7307. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  7308. end
  7309. elseif animpose == "Running" then
  7310. for i = 1, 2 do
  7311. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-14),math.rad(8+2*math.cos(sine/14))), 0.2)
  7312. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(14),math.rad(-8-2*math.cos(sine/14))), 0.2)
  7313. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10),0,0), 0.4)
  7314. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20),0, math.rad(0)), 0.4)
  7315. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-7)), 0.4)
  7316. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(7)), 0.4)
  7317. wait()
  7318. end
  7319. end
  7320. else
  7321. end
  7322. end
  7323. lastanimpose = animpose
  7324. if Debounces.NoIdl == false then
  7325. if animpose == "Idle" then
  7326. change = 0.5
  7327. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8+2*math.cos(sine/14))), 0.4)
  7328. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8-2*math.cos(sine/14))), 0.4)
  7329. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  7330. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  7331. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  7332. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  7333. elseif animpose == "Walking" then
  7334. change = 1
  7335. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  7336. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  7337. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  7338. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  7339. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  7340. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  7341. elseif animpose == "Running" then
  7342. change = 1
  7343. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.35,.4)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(-30+2*math.cos(sine/14))), 0.2)
  7344. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  7345. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  7346. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-40),math.rad(-10), math.rad(0)), 0.2)
  7347. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.2) * CFrame.Angles(math.rad(-20), math.rad(10), math.rad(0)), 0.4)
  7348. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4)
  7349. end
  7350. end
  7351. end)
  7352.  
  7353. hum.MaxHealth = 9001
  7354. wait(3)
  7355. hum.Health = 9001
  7356.  
  7357. function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module
  7358. --[[Part0 = Vector3 (Start pos)
  7359. Part1 = Vector3 (End pos)
  7360. Times = number (Amount of lightning parts)
  7361. Offset = number (Offset)
  7362. Color = color (brickcolor value)
  7363. Thickness = number (thickness)
  7364. Trans = number (transparency)
  7365. ]]--
  7366. local magz = (Part0 - Part1).magnitude
  7367. local curpos = Part0
  7368. local trz = {-Offset,Offset}
  7369. for i=1,Times do
  7370. local li = Instance.new("Part", torso)
  7371. li.Name = "Lightning"
  7372. li.TopSurface =0
  7373. li.Material = "Neon"
  7374. li.BottomSurface = 0
  7375. li.Anchored = true
  7376. li.Locked = true
  7377. li.Transparency = Trans or 0.4
  7378. li.BrickColor = BrickColor.new(Color)
  7379. li.formFactor = "Custom"
  7380. li.CanCollide = false
  7381. li.Size = Vector3.new(Thickness,Thickness,magz/Times)
  7382. local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  7383. local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
  7384. if Times == i then
  7385. local magz2 = (curpos - Part1).magnitude
  7386. li.Size = Vector3.new(Thickness,Thickness,magz2)
  7387. li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
  7388. else
  7389. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  7390. end
  7391. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
  7392. game.Debris:AddItem(li,.1)
  7393. end
  7394. end
  7395.  
  7396. BodyParts = {} -- Parts to emit lightning effects from
  7397. for _, v in pairs(char:GetChildren()) do
  7398. if v:IsA("Part") then
  7399. table.insert(BodyParts, v)
  7400. end
  7401. end
  7402.  
  7403. Bounding = {} -- Calculate the bounding boxes
  7404. for _, v in pairs(BodyParts) do
  7405. local temp = {X=nil, Y=nil, Z=nil}
  7406. temp.X = v.Size.X/2 * 10
  7407. temp.Y = v.Size.Y/2 * 10
  7408. temp.Z = v.Size.Z/2 * 10
  7409. Bounding[v.Name] = temp
  7410. --table.insert(Bounding, v.Name, temp)
  7411. end
  7412.  
  7413. while wait(math.random(1,10)/10) do -- Emit the Lightning effects randomly
  7414. local Body1 = BodyParts[math.random(#BodyParts)]
  7415. local Body2 = BodyParts[math.random(#BodyParts)]
  7416. local Pos1 = Vector3.new(
  7417. math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/10,
  7418. math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/10,
  7419. math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/10
  7420. )
  7421. local Pos2 = Vector3.new(
  7422. math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/10,
  7423. math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/10,
  7424. math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/10
  7425. )
  7426. local SPos1 = Body1.Position + Pos1
  7427. local SPos2 = Body2.Position + Pos2
  7428. Lightning(SPos1, SPos2, 4, 3, "Dark indigo", .3, .56)
  7429. end
  7430. och=och+1
  7431. for _,v in pairs(orbt) do
  7432. pcall(function()
  7433. v.Mesh.Scale=Vector3.new(cns+(0.2*math.cos(och/12)),cns+(0.2*math.cos(och/10)),cns+(0.2*math.cos(och/8)))
  7434. end)
  7435. end
  7436. for _,v in pairs(stlt) do
  7437. pcall(function()
  7438. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  7439. end)
  7440. end
  7441. for _,v in pairs(chot) do
  7442. pcall(function()
  7443. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  7444. v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
  7445. end)
  7446. end
  7447. for _,v in pairs(cfxt) do
  7448. pcall(function()
  7449. local vs=v.Mesh.Scale
  7450. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  7451. v.Transparency=v.Transparency+0.05
  7452. end)
  7453. end
  7454. for _,v in pairs(pfxt) do
  7455. pcall(function()
  7456. local vs=v.Mesh.Scale
  7457. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  7458. v.Transparency=v.Transparency+0.025
  7459. end)
  7460. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement