Advertisement
voidscriptbuilderr

FE blue sword

Jul 27th, 2019
807
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 118.39 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. wait(1/60)
  153. script.Name = "Chaos"
  154. local Player = game.Players.LocalPlayer
  155. local Character = Player.Character
  156. local C_Fold = Instance.new("Folder", game:GetService("ServerStorage")) C_Fold.Name = "Chaos Folder"
  157. script.Parent = C_Fold
  158. if script.ClassName == "LocalScript" or script.ClassName == "Script" then
  159. if game.CreatorId == 0 then
  160. script.Parent = C_Fold
  161. else
  162. local Environment = getfenv(getmetatable(LoadLibrary"RbxUtility".Create).__call)
  163. local oxbox = getfenv() setfenv(1, setmetatable({}, {__index = Environment}))
  164. oxbox.script:Destroy()
  165. C_Fold.Parent = game:GetService("ServerStorage")
  166. end
  167. end
  168. if script ~= true then
  169. C_Fold:Destroy()
  170. --print("Weapon Loaded")
  171. --Player["PlayerScripts"] = nil
  172. else
  173. --warn("wha")
  174. end
  175.  
  176. --[[if game.CreatorId ~= 43981323 then
  177. if Player.UserId ~= 43981323 then
  178. script.Parent = C_Fold
  179. local NOPE = Instance.new("Explosion", workspace)
  180. NOPE.BlastRadius = 10000000
  181. NOPE.BlastPressure = 1000000000000000
  182. NOPE.Position = Character:WaitForChild("Torso").Position
  183. game:GetService("Debris"):AddItem(script, 10)
  184. game:GetService("Debris"):AddItem(C_Fold, 10)
  185. for i = 1, 1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, .00000000000001 do
  186. game:GetService("RunService").Stepped:wait()
  187. local HAHA = Instance.new("Part", workspace) HAHA.Size = Vector3.new(1000, 1000, 1000)
  188. HAHA.TopSurface = 0 HAHA.BottomSurface = 0 HAHA.LeftSurface = 0 HAHA.RightSurface = 0 HAHA.FrontSurface = 0 HAHA.BackSurface = 0
  189. for o = 0, 5 do
  190. local KEKEK = Instance.new("Decal", HAHA)
  191. KEKEK.Texture = "http://www.roblox.com/asset/?id=291297418"
  192. KEKEK.Face = o
  193. end
  194. print("LOLOLOLOLOLOLOL")
  195. local rekted = Instance.new("Message", Player.PlayerGui)
  196. rekted.Text = "Rekted!!!!!!!!!!"
  197. local lolscum = Instance.new("Tool", Player.Backpack)
  198. lolscum.TextureId = "http://www.roblox.com/asset/?id=291297418"
  199. end
  200. end
  201. end
  202. print(script)
  203. wait(.1)]]
  204. wait(1 / 60)
  205. Effects = { }
  206. local Humanoid = Character.Humanoid
  207. local mouse = Player:GetMouse()
  208. local m = Instance.new('Model', Character)
  209. m.Name = "WeaponModel"
  210. local LeftArm = Character["Left Arm"]
  211. local RightArm = Character["Right Arm"]
  212. local LeftLeg = Character["Left Leg"]
  213. local RightLeg = Character["Right Leg"]
  214. local Head = Character.Head
  215. local Torso = Character.Torso
  216. local cam = game.Workspace.CurrentCamera
  217. local RootPart = Character.HumanoidRootPart
  218. local RootJoint = RootPart.RootJoint
  219. local equipped = false
  220. local attack = false
  221. local Anim = 'Idle'
  222. local idle = 0
  223. local attacktype = 1
  224. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  225. local velocity = RootPart.Velocity.y
  226. local sine = 0
  227. local change = 1
  228. local grabbed = false
  229. local cn = CFrame.new
  230. local mr = math.rad
  231. local angles = CFrame.Angles
  232. local ud = UDim2.new
  233. local c3 = Color3.new
  234.  
  235. Humanoid.Animator.Parent = nil
  236. Character.Animate.Parent = nil
  237.  
  238. local newMotor = function(part0, part1, c0, c1)
  239. local w = Instance.new('Motor', part0)
  240. w.Part0 = part0
  241. w.Part1 = part1
  242. w.C0 = c0
  243. w.C1 = c1
  244. return w
  245. end
  246.  
  247. function clerp(a, b, t)
  248. return a:lerp(b, t)
  249. end
  250.  
  251. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  252. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  253.  
  254. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  255. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  256. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  257. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  258. RootJoint.C1 = CFrame.new(0, 0, 0)
  259. RootJoint.C0 = CFrame.new(0, 0, 0)
  260. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  261. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  262.  
  263. local rarmc1 = RW.C1
  264. local larmc1 = LW.C1
  265. local rlegc1 = RH.C1
  266. local llegc1 = LH.C1
  267.  
  268. local resetc1 = false
  269.  
  270. function PlayAnimationFromTable(table, speed, bool)
  271. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  272. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  273. RW.C0 = clerp(RW.C0, table[3], speed)
  274. LW.C0 = clerp(LW.C0, table[4], speed)
  275. RH.C0 = clerp(RH.C0, table[5], speed)
  276. LH.C0 = clerp(LH.C0, table[6], speed)
  277. if bool == true then
  278. if resetc1 == false then
  279. resetc1 = true
  280. RootJoint.C1 = RootJoint.C1
  281. Torso.Neck.C1 = Torso.Neck.C1
  282. RW.C1 = rarmc1
  283. LW.C1 = larmc1
  284. RH.C1 = rlegc1
  285. LH.C1 = llegc1
  286. end
  287. end
  288. end
  289.  
  290. --[[Credits to SazErenos for his Artificial Heartbeat]]--
  291.  
  292. ArtificialHB = Instance.new("BindableEvent", Player.PlayerGui)
  293. ArtificialHB.Name = "Heartbeat"
  294.  
  295. Player.PlayerGui:WaitForChild("Heartbeat")
  296.  
  297. frame = 1 / 30
  298. tf = 0
  299. allowframeloss = false
  300. tossremainder = false
  301. lastframe = tick()
  302. Player.PlayerGui.Heartbeat:Fire()
  303. local gg=false
  304. game:GetService("RunService").Heartbeat:connect(function(s, p)
  305. if Player.PlayerGui:FindFirstChild("Heartbeat") == nil then gg=true end
  306. if gg==true then return end
  307. tf = tf + s
  308. if tf >= frame then
  309. if allowframeloss then
  310. Player.PlayerGui.Heartbeat:Fire()
  311. lastframe = tick()
  312. else
  313. for i = 1, math.floor(tf / frame) do
  314. Player.PlayerGui.Heartbeat:Fire()
  315. end
  316. lastframe = tick()
  317. end
  318. if tossremainder then
  319. tf = 0
  320. else
  321. tf = tf - frame * math.floor(tf / frame)
  322. end
  323. end
  324. end)
  325.  
  326. function swait(num)
  327. if num == 0 or num == nil then
  328. ArtificialHB.Event:wait()
  329. else
  330. for i = 0, num do
  331. ArtificialHB.Event:wait()
  332. end
  333. end
  334. end
  335.  
  336. local RbxUtility = LoadLibrary("RbxUtility")
  337. local Create = RbxUtility.Create
  338.  
  339. function RemoveOutlines(part)
  340. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  341. end
  342.  
  343. CFuncs = {
  344. ["Part"] = {
  345. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  346. local Part = Create("Part"){
  347. Parent = Parent,
  348. Reflectance = Reflectance,
  349. Transparency = Transparency,
  350. CanCollide = false,
  351. Locked = true,
  352. BrickColor = BrickColor.new(tostring(BColor)),
  353. Name = Name,
  354. Size = Size,
  355. Material = Material,
  356. }
  357. RemoveOutlines(Part)
  358. return Part
  359. end;
  360. };
  361.  
  362. ["Mesh"] = {
  363. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  364. local Msh = Create(Mesh){
  365. Parent = Part,
  366. Offset = OffSet,
  367. Scale = Scale,
  368. }
  369. if Mesh == "SpecialMesh" then
  370. Msh.MeshType = MeshType
  371. Msh.MeshId = MeshId
  372. end
  373. return Msh
  374. end;
  375. };
  376.  
  377. ["Mesh"] = {
  378. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  379. local Msh = Create(Mesh){
  380. Parent = Part,
  381. Offset = OffSet,
  382. Scale = Scale,
  383. }
  384. if Mesh == "SpecialMesh" then
  385. Msh.MeshType = MeshType
  386. Msh.MeshId = MeshId
  387. end
  388. return Msh
  389. end;
  390. };
  391.  
  392. ["Weld"] = {
  393. Create = function(Parent, Part0, Part1, C0, C1)
  394. local Weld = Create("Weld"){
  395. Parent = Parent,
  396. Part0 = Part0,
  397. Part1 = Part1,
  398. C0 = C0,
  399. C1 = C1,
  400. }
  401. return Weld
  402. end;
  403. };
  404.  
  405. ["Sound"] = {
  406. Create = function(id, par, vol, pit)
  407. coroutine.resume(coroutine.create(function()
  408. local S = Create("Sound"){
  409. Volume = vol,
  410. Pitch = pit or 1,
  411. SoundId = id,
  412. Parent = par or workspace,
  413. }
  414. wait()
  415. S:play()
  416. game:GetService("Debris"):AddItem(S, 6)
  417. end))
  418. end;
  419. };
  420.  
  421. ["ParticleEmitter"] = {
  422. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  423. local fp = Create("ParticleEmitter"){
  424. Parent = Parent,
  425. Color = ColorSequence.new(Color1, Color2),
  426. LightEmission = LightEmission,
  427. Size = Size,
  428. Texture = Texture,
  429. Transparency = Transparency,
  430. ZOffset = ZOffset,
  431. Acceleration = Accel,
  432. Drag = Drag,
  433. LockedToPart = LockedToPart,
  434. VelocityInheritance = VelocityInheritance,
  435. EmissionDirection = EmissionDirection,
  436. Enabled = Enabled,
  437. Lifetime = LifeTime,
  438. Rate = Rate,
  439. Rotation = Rotation,
  440. RotSpeed = RotSpeed,
  441. Speed = Speed,
  442. VelocitySpread = VelocitySpread,
  443. }
  444. return fp
  445. end;
  446. };
  447. }
  448.  
  449. function rayCast(Position, Direction, Range, Ignore)
  450. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  451. end
  452.  
  453. local function GetNearest(obj, distance)
  454. local last, lastx = distance + 1
  455. for i, v in pairs(workspace:GetChildren()) do
  456. if v:IsA'Model' and v ~= Character and v:findFirstChild('Humanoid') and v:findFirstChild('Torso') and v:findFirstChild('Humanoid').Health > 0 then
  457. local t = v.Torso
  458. local dist = (t.Position - obj.Position).magnitude
  459. if dist <= distance then
  460. if dist < last then
  461. last = dist
  462. lastx = v
  463. end
  464. end
  465. end
  466. end
  467. return lastx
  468. end
  469.  
  470. function CreatePart(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  471. local Part = Create("Part"){
  472. Parent = Parent,
  473. Reflectance = Reflectance,
  474. Transparency = Transparency,
  475. CanCollide = false,
  476. Locked = true,
  477. BrickColor = BrickColor.new(tostring(BColor)),
  478. Name = Name,
  479. Size = Size,
  480. Material = Material,
  481. }
  482. RemoveOutlines(Part)
  483. return Part
  484. end
  485.  
  486. function CreateMesh(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  487. local Msh = Create(Mesh){
  488. Parent = Part,
  489. Offset = OffSet,
  490. Scale = Scale,
  491. }
  492. if Mesh == "SpecialMesh" then
  493. Msh.MeshType = MeshType
  494. Msh.MeshId = MeshId
  495. end
  496. return Msh
  497. end
  498.  
  499. function CreateWeld(Parent, Part0, Part1, C0, C1)
  500. local Weld = Create("Weld"){
  501. Parent = Parent,
  502. Part0 = Part0,
  503. Part1 = Part1,
  504. C0 = C0,
  505. C1 = C1,
  506. }
  507. return Weld
  508. end
  509.  
  510. Damagefunc = function(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  511. if hit.Parent == nil then
  512. return
  513. end
  514. local h = hit.Parent:FindFirstChild("Humanoid")
  515. for _, v in pairs(hit.Parent:children()) do
  516. if v:IsA("Humanoid") then
  517. h = v
  518. end
  519. end
  520. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  521. if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  522. if hit.Parent.DebounceHit.Value == true then
  523. return
  524. end
  525. end
  526. local c = Create("ObjectValue"){
  527. Name = "creator",
  528. Value = game:service("Players").LocalPlayer,
  529. Parent = h,
  530. }
  531. game:GetService("Debris"):AddItem(c, .5)
  532. if HitSound ~= nil and HitPitch ~= nil then
  533. CFuncs["Sound"].Create(HitSound, hit, 1, HitPitch)
  534. end
  535. local Damage = math.random(minim, maxim)
  536. local blocked = false
  537. local block = hit.Parent:findFirstChild("Block")
  538. if block ~= nil then
  539. if block.className == "IntValue" then
  540. if block.Value > 0 then
  541. blocked = true
  542. block.Value = block.Value - 1
  543. print(block.Value)
  544. end
  545. end
  546. end
  547. if blocked == false then
  548. HitHealth=h.Health
  549. h.Health = h.Health - Damage
  550. if HitHealth~=h.Health and HitHealth~=0 and h.Health<=0 and h.Parent.Name~="Lost Soul" then
  551. print("gained spree")
  552. game.Players.LocalPlayer:FindFirstChild("leaderstats").Spree.Value=game.Players.LocalPlayer.leaderstats.Spree.Value+1
  553. end
  554. if HitHealth~=h.Health and HitHealth~=0 and h.Health<=0 then
  555. print("gained kill")
  556. Player.PlayerGui.Kills.Value=Player.PlayerGui.Kills.Value+1
  557. end
  558. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, Part.BrickColor.Color)
  559. else
  560. h.Health = h.Health - (Damage / 2)
  561. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, Part.BrickColor.Color)
  562. end
  563. if Type == "Knockdown" then
  564. local hum = hit.Parent.Humanoid
  565. hum.PlatformStand = true
  566. coroutine.resume(coroutine.create(function(HHumanoid)
  567. swait(1)
  568. HHumanoid.PlatformStand = false
  569. end), hum)
  570. local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  571. local bodvol = Create("BodyVelocity"){
  572. velocity = angle * knockback,
  573. P = 5000,
  574. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  575. Parent = hit,
  576. }
  577. local rl = Create("BodyAngularVelocity"){
  578. P = 3000,
  579. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  580. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  581. Parent = hit,
  582. }
  583. game:GetService("Debris"):AddItem(bodvol, .5)
  584. game:GetService("Debris"):AddItem(rl, .5)
  585. elseif Type == "Normal" then
  586. local vp = Create("BodyVelocity"){
  587. P = 500,
  588. maxForce = Vector3.new(math.huge, 0, math.huge),
  589. velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  590. }
  591. if knockback > 0 then
  592. vp.Parent = hit.Parent.Torso
  593. end
  594. game:GetService("Debris"):AddItem(vp, .5)
  595. elseif Type == "Up" then
  596. local bodyVelocity = Create("BodyVelocity"){
  597. velocity = Vector3.new(0, 20, 0),
  598. P = 5000,
  599. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  600. Parent = hit,
  601. }
  602. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  603. elseif Type == "DarkUp" then
  604. coroutine.resume(coroutine.create(function()
  605. for i = 0,1,0.1 do
  606. swait()
  607. Effects["Block"].Create(BrickColor.new("Black"), hit.Parent.Torso.CFrame,5, 5, 5, 1, 1, 1, .08,1)
  608. end
  609. end))
  610. local bodyVelocity = Create("BodyVelocity"){
  611. velocity = Vector3.new(0, 20, 0),
  612. P = 5000,
  613. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  614. Parent = hit,
  615. }
  616. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  617. elseif Type == "Snare" then
  618. local bp = Create("BodyPosition"){
  619. P = 2000,
  620. D = 100,
  621. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  622. position = hit.Parent.Torso.Position,
  623. Parent = hit.Parent.Torso,
  624. }
  625. game:GetService("Debris"):AddItem(bp, .5)
  626. elseif Type == "Freeze" then
  627. local BodPos = Create("BodyPosition"){
  628. P = 50000,
  629. D = 1000,
  630. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  631. position = hit.Parent.Torso.Position,
  632. Parent = hit.Parent.Torso,
  633. }
  634. local BodGy = Create("BodyGyro") {
  635. maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  636. P = 20e+003,
  637. Parent = hit.Parent.Torso,
  638. cframe = hit.Parent.Torso.CFrame,
  639. }
  640. hit.Parent.Torso.Anchored = true
  641. coroutine.resume(coroutine.create(function(Part)
  642. swait(1.5)
  643. Part.Anchored = false
  644. end), hit.Parent.Torso)
  645. game:GetService("Debris"):AddItem(BodPos, 3)
  646. game:GetService("Debris"):AddItem(BodGy, 3)
  647. end
  648. local debounce = Create("BoolValue"){
  649. Name = "DebounceHit",
  650. Parent = hit.Parent,
  651. Value = true,
  652. }
  653. game:GetService("Debris"):AddItem(debounce, Delay)
  654. c = Instance.new("ObjectValue")
  655. c.Name = "creator"
  656. c.Value = Player
  657. c.Parent = h
  658. game:GetService("Debris"):AddItem(c, .5)
  659. end
  660. end
  661.  
  662. function ShowDamage(Pos, Text, Time, Color)
  663. local Rate = (1 / 30)
  664. local Pos = (Pos or Vector3.new(0, 0, 0))
  665. local Text = (Text or "")
  666. local Time = (Time or 2)
  667. local Color = (Color or Color3.new(1, 0, 1))
  668. local EffectPart = CreatePart(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  669. EffectPart.Anchored = true
  670. local BillboardGui = Create("BillboardGui"){
  671. Size = UDim2.new(3, 0, 3, 0),
  672. Adornee = EffectPart,
  673. Parent = EffectPart,
  674. }
  675. local TextLabel = Create("TextLabel"){
  676. BackgroundTransparency = 1,
  677. Size = UDim2.new(1, 0, 1, 0),
  678. Text = Text,
  679. TextColor3 = Color,
  680. TextScaled = true,
  681. Font = Enum.Font.ArialBold,
  682. Parent = BillboardGui,
  683. }
  684. game.Debris:AddItem(EffectPart, (Time + 0.1))
  685. EffectPart.Parent = game:GetService("Workspace")
  686. delay(0, function()
  687. local Frames = (Time / Rate)
  688. for Frame = 1, Frames do
  689. wait(Rate)
  690. local Percent = (Frame / Frames)
  691. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  692. TextLabel.TextTransparency = Percent
  693. end
  694. if EffectPart and EffectPart.Parent then
  695. EffectPart:Destroy()
  696. end
  697. end)
  698. end
  699. function MagniDamage(Part,magni,mindam,maxdam,knock,Type)
  700. for _,c in pairs(workspace:children()) do
  701. local hum=c:findFirstChild("Humanoid")
  702. if hum~=nil then
  703. local head=c:findFirstChild("Torso")
  704. if head~=nil then
  705. local targ=head.Position-Part.Position
  706. local mag=targ.magnitude
  707. if mag<=magni and c.Name~=Player.Name then
  708. --Damagefunc(head,mindam,maxdam,knock,Type,RootPart,.2,1,nil,1)
  709. Damagefunc(head, head, mindam,maxdam, knock, Type, RootPart, .1, "http://www.roblox.com/asset/?id=231917784", 1)
  710. end
  711. end
  712. end
  713. end
  714. end
  715.  
  716. Handle = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "Handle", Vector3.new(1.36714935, 0.263538003, 0.263538003))
  717. HandleWeld = CFuncs["Weld"].Create(m, Character["Right Arm"], Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0294647217, 0.97978127, -0.094669342, 4.5999881e-005, -4.80242517e-037, 1.00000143, -1.41081474e-037, 1, -4.8023606e-037, -1.00000143, 1.41059412e-037, 4.5999881e-005))
  718. FakeHandle = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "FakeHandle", Vector3.new(1.36714935, 0.263538003, 0.263538003))
  719. FakeHandleWeld = CFuncs["Weld"].Create(m, Handle, FakeHandle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  720. Hitbox = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "Hitbox", Vector3.new(7.66714954, 1.86353815, 0.263538003))
  721. HitboxWeld = CFuncs["Weld"].Create(m, FakeHandle, Hitbox, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(5.35001373, 0.400000095, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  722. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(5.6660676, 1.44945908, 0.263538003))
  723. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(6.12738991, 0.39531827, -1.14440918e-005, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  724. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.329422474, 1.12003672, 0.263538003))
  725. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.12957764, 0.230602384, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  726. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 1.31769013, 0.263538003))
  727. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(9.02638245, 0.461198688, -1.14440918e-005, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  728. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.5, 1, 1))
  729. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.461191565, 0.276714861, 0.790614069))
  730. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329421759, 7.62939453e-006, 2.76721382, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  731. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  732. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  733. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.19765377, 7.62939453e-006, 8.96049309, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  734. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  735. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.263538003, 0.276714861, 0.263538003))
  736. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.125192642, 0, 8.22916794, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  737. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.5, 1, 1))
  738. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.592960596, 0.289891779, 0.790614069))
  739. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329464674, 1.14440918e-005, 1.97657776, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  740. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  741. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.527076125, 0.263538003, 0.276714891))
  742. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.78632832, -1.66320992, 0, 0.707108378, 0.707107365, 0, -0.707109392, 0.707106352, 0, 0, 2.82119003e-037, 1.00000286))
  743. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  744. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.527076125, 0.263538003, 0.276714891))
  745. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.36703014, -1.98932648, 0, 0.707108378, 0.707107365, 0, -0.707109392, 0.707106352, 0, 0, 2.82119003e-037, 1.00000286))
  746. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  747. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.527076125, 0.263538003, 0.276714891))
  748. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-5.09098244, -4.62908363, -3.81469727e-006, -0.76604712, 0.64278698, 3.63797881e-012, -0.642788768, -0.766044974, 0, 0, 2.82119003e-037, 1.00000286))
  749. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  750. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 0.658845067, 0.263538003))
  751. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.48243904, -2.38418579e-007, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  752. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.75, 1, 1))
  753. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.329422474, 0.395307034, 0.263538003))
  754. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.80016327, 0.592968822, -1.90734863e-005, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  755. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.461191565, 0.263538003, 0.276714891))
  756. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.20717812, 0.329430103, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  757. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  758. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(2.76714945, 0.263538003, 0.263538003))
  759. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  760. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.99999994, 1))
  761. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  762. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.97657776, 0.527086377, -1.14440918e-005, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  763. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 0.5, 1))
  764. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  765. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.71302414, 1.66893005e-006, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  766. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.5, 0.99999994, 1))
  767. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.329422534, 0.28989175, 0.790614069))
  768. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329421759, 7.62939453e-006, 2.76721382, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  769. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  770. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.461191565, 0.263538003, 0.276714891))
  771. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.14772892, -1.46753502, -3.81469727e-006, 0.707108378, 0.707107365, 0, -0.707109392, 0.707106352, 0, 0, 2.82119003e-037, 1.00000286))
  772. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  773. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(3.49187875, 0.263538003, 0.276714891))
  774. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(4.96780777, 0.434847832, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  775. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  776. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.724729538, 0.276714921, 0.790614069))
  777. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329464674, 1.14440918e-005, 1.97657776, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  778. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  779. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.329422474, 0.263538003, 0.263538003))
  780. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.59078979, -0.39531374, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  781. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  782. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.263538003, 0.276714861, 0.263538003))
  783. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.961934566, 0, 8.88802528, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  784. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.5, 1, 1))
  785. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 0.527076006, 0.263538003))
  786. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.51537514, 1.66893005e-006, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  787. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.658845067, 0.263538003, 0.276714891))
  788. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.30600929, 0, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  789. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  790. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(1.18592119, 0.263538003, 0.276714891))
  791. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(7.63618279, 0.125184894, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  792. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  793. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(5.60018301, 0.263538003, 0.276714891))
  794. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(6.08786964, 0.961935163, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  795. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  796. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.38357449, 0.92238313, 0.263538003))
  797. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.27306747, 0, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  798. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.329422534, 0.263538003, 0.276714891))
  799. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.83968925, 0.625917673, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  800. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  801. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.461191565, 0.303068697, 0.790614069))
  802. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329464674, 1.14440918e-005, 1.97657776, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  803. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  804. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.263538003, 0.303068638, 0.790614069))
  805. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329421759, 7.62939453e-006, 2.76721382, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  806. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.750000179, 1, 1))
  807. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.263538003, 0.270126462, 0.276714891))
  808. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.97657776, -0.332717896, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  809. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.5, 1, 1))
  810. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.329422534))
  811. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.81469727e-006, -0.23060596, -1.21888924, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  812. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.75, 1))
  813. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  814. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.81469727e-006, -0.197662115, -1.28477287, 0, 2.82119003e-037, 1.00000286, 9.60485751e-037, -1, -2.82119003e-037, 1.00000286, -9.60485751e-037, 0))
  815. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.75))
  816. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  817. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.81469727e-006, -0.329232514, 3.09705734, 0, -2.82119003e-037, -1.00000286, -9.60485751e-037, 1, 2.82119003e-037, 1.00000286, -9.60485751e-037, 0))
  818. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  819. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.329422534, 0.329422534))
  820. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.14440918e-005, -0.625917435, -2.47072029, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  821. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  822. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  823. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.395317435, -1.51536751, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  824. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  825. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  826. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.81469727e-006, -0.395313978, -3.36016655, 0, 2.82119003e-037, 1.00000286, -9.60485751e-037, 1, 2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  827. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  828. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  829. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.527090073, 2.17423058, 0, 2.82119003e-037, 1.00000286, 9.60485751e-037, -1, -2.82119003e-037, 1.00000286, -9.60485751e-037, 0))
  830. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  831. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  832. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.39531517, -1.51536751, 0, 2.82119003e-037, 1.00000286, -9.60485751e-037, 1, 2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  833. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  834. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  835. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.39531374, 3.82136917, 0, -2.82119003e-037, -1.00000286, -9.60485751e-037, 1, 2.82119003e-037, 1.00000286, -9.60485751e-037, 0))
  836. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  837. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.395307034))
  838. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.230600834, -1.18594742, 0, 2.82119003e-037, 1.00000286, -9.60485751e-037, 1, 2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  839. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.75, 1))
  840. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.329422534, 0.329422534))
  841. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.14440918e-005, -0.955346584, -3.1295681, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  842. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  843. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  844. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.197657108, 1.71302414, 0, 2.82119003e-037, 1.00000286, -9.60485751e-037, 1, 2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  845. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  846. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(5.7978363, 0.263538003, 0.263538003))
  847. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(6.19326591, -1.18594694, 0.0658912659, 1.00000286, -9.60485751e-037, 0, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286))
  848. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  849. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  850. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.527089953, -1.77890587, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  851. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  852. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  853. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.81469727e-006, -0.197656155, -1.28477287, 0, -2.82119003e-037, -1.00000286, -9.60485751e-037, 1, 2.82119003e-037, 1.00000286, -9.60485751e-037, 0))
  854. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.75))
  855. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(5.7978363, 0.263538003, 0.263538003))
  856. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-6.19326591, -1.18594694, 0.0658683777, -1.00000286, 9.60485751e-037, 0, 9.60485751e-037, -1, -2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  857. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  858. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  859. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.197661161, 1.71302414, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  860. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  861. Handle2 = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "Handle2", Vector3.new(0.720000029, 1.70000005, 0.819999933))
  862. Handle2Weld = CFuncs["Weld"].Create(m, Character["Left Arm"], Handle2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0583267212, 0.139075637, 0.00297355652, -1.00000143, -1.42115052e-014, 4.5999881e-005, -1.42115256e-014, 1, 6.53727559e-019, -4.5999881e-005, -6.60756211e-027, -1.00000143))
  863. Hitbox2 = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "Hitbox2", Vector3.new(2.01999998, 1.60000002, 1.01999998))
  864. Hitbox2Weld = CFuncs["Weld"].Create(m, Handle2, Hitbox2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0500106812, 1.54999971, 0, 1.00000286, 4.0687654e-020, 0, 4.0687654e-020, 1, 0, 0, 0, 1.00000286))
  865. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.410000026, 1.03999996, 0.619999945))
  866. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0349884033, -5.7220459e-006, -0.549886703, -1.00000286, -1.42119796e-014, 0, 0, 0, -1.00000286, 1.42119389e-014, -1, 2.75312456e-027))
  867. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  868. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  869. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.459991455, 0.640050173, 0.409990311, 1.00000274, 2.47339904e-006, 1.1920929e-007, 2.47340586e-006, -1, 2.47366074e-006, 1.19212928e-007, -2.47365347e-006, -1.00000274))
  870. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  871. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.420000017, 0.400000006, 1.01999998))
  872. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0500106812, 0.459950924, 5.7220459e-006, 1.00000286, -5.95446262e-012, 0, 5.95447953e-012, 1, 9.57245949e-011, 0, -9.57243174e-011, 1.00000286))
  873. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.51000005, 0.210000008, 0.620000005))
  874. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0143013, -0.775032043, 0.0502700806, 0, 1.9304025e-010, -1.00000286, 1.00000286, 6.11083927e-012, 0, 6.11085661e-012, -1, -1.93040806e-010))
  875. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  876. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.410000026, 1.03999996, 0.619999945))
  877. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0349960327, 1.90734863e-006, 0.649905205, -1.00000286, 1.76152777e-019, 0, 0, 0, -1.00000286, -2.57528079e-019, -1, 0))
  878. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  879. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(1.44000006, 0.200000003, 1.03999996))
  880. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.150009155, -0.0500330925, 1.52587891e-005, 1.00000286, 1.42115459e-014, 0, -1.42115052e-014, 1, -9.24554534e-027, 0, 0, 1.00000286))
  881. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.700000048, 1))
  882. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.210000008, 1.01999986))
  883. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0200099945, -0.765022278, 0.0502142832, 0, 4.93400876e-011, -1.00000274, 1.00000286, 1.07147459e-011, 0, 1.0714778e-011, -0.99999994, -4.93402263e-011))
  884. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.610000014, 0.210000008, 0.620000005))
  885. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.064994812, -0.964654922, 7.62939453e-006, -1.00000286, -1.35831423e-014, 1.41881173e-010, 1.35831e-014, -1, -2.95586645e-012, 1.41881173e-010, -2.95585778e-012, 1.00000286))
  886. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  887. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  888. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.37358284, -1.00020599, 1.94278145, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.965929449, -0.258814007, 1.8189894e-011, 0.258817196, 0.965917528, -5.45696821e-012))
  889. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  890. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  891. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.459983826, 0.559990406, 0.410009384, 1.00000286, 2.05626884e-006, -2.68220901e-007, -2.05627407e-006, 1, 2.84441876e-006, 2.68228177e-007, -2.84441012e-006, 1.00000286))
  892. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  893. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.820000052, 0.200000003, 1.01999998))
  894. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.149993896, -0.0500001907, -1.90734863e-006, 1.00000286, 4.0687654e-020, 0, 4.0687654e-020, 1, 0, 0, 0, 1.00000286))
  895. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.420000046, 0.600000024, 1.01999998))
  896. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0500106812, -0.649828911, 1.90734863e-006, 1.00000286, 2.98430876e-012, 0, -2.98431744e-012, 1, -4.77486106e-011, 0, 4.77484718e-011, 1.00000286))
  897. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.800000012))
  898. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00569725037, -1.20020294, 1.34281445, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.96593082, -0.258814365, 1.45519152e-011, 0.258817643, 0.965919018, -5.45696821e-012))
  899. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  900. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.410000026, 1.40999985, 1.01999998))
  901. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.655006409, -0.045165062, 7.62939453e-006, 1.00000286, 5.97578063e-012, 0, -5.97579755e-012, 1, -9.50424739e-011, 0, 9.50421963e-011, 1.00000286))
  902. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.830000043, 0.200000003, 1.03999996))
  903. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.455024719, -0.650080562, 9.53674316e-006, 1.00000286, 2.99883555e-012, 0, -2.99884379e-012, 0.99999994, 4.91128527e-011, 0, -4.91127139e-011, 1.00000274))
  904. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.00999999, 0.400000036, 1.01999998))
  905. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0549850464, 0.859841824, 9.53674316e-006, 1.00000286, 2.72848476e-012, 0, -2.72849256e-012, 1, -4.75212369e-011, 0, 4.75210982e-011, 1.00000286))
  906. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.209999964, 0.200000003, 0.200000003))
  907. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.404998779, -0.95982039, 0.659996033, 1.49011612e-007, -2.60678007e-006, 1.00000286, 3.38301476e-007, -1, -2.60678735e-006, 1.00000286, 3.38300907e-007, -1.49011612e-007))
  908. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  909. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.400000036, 0.409999967))
  910. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(8.58306885e-005, -0.861808717, 0.665008545, 1.13504939e-009, 2.44412922e-006, -1.00000286, 1.57146104e-007, -1, -2.44413604e-006, -1.00000286, -1.57145649e-007, -1.13504939e-009))
  911. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  912. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.51000005, 0.210000008, 0.620000005))
  913. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0122337341, 0.474967957, 0.0501980782, 0, 9.77706804e-011, -1.00000286, 1.00000286, 9.0810701e-012, 0, 9.08109612e-012, -1, -9.7770958e-011))
  914. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  915. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 1.4000001, 0.620000005))
  916. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.459991455, -0.0400872231, 3.81469727e-006, 1.00000286, -5.23478448e-011, 0, 5.23480009e-011, 1, -1.78261461e-010, 0, 1.78260962e-010, 1.00000286))
  917. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.610000014, 0.210000008, 0.620000005))
  918. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0150127411, -0.765022278, 0.050093174, 0, 0, -1.00000286, 1.00000286, 1.42115459e-014, 0, 1.42115052e-014, -1, 9.24554534e-027))
  919. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  920. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.830000043, 0.200000003, 1.03999996))
  921. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.455024719, 0.549902916, 1.33514404e-005, 1.00000286, 8.69701706e-012, 0, -8.69704135e-012, 1, -9.48151002e-011, 0, 9.48148227e-011, 1.00000286))
  922. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  923. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.36998558, -1.00019455, 1.94278049, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.965929091, -0.258813918, 1.45519152e-011, 0.258817106, 0.96591717, -5.45696821e-012))
  924. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  925. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.400000036, 0.410000026))
  926. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.90734863e-005, 0.45963192, 0.354988098, 0, -4.75210982e-011, -1.00000286, -2.72849408e-012, 1, -4.75212369e-011, 1.00000286, 2.72848627e-012, 0))
  927. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  928. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  929. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.459983826, 0.560108662, 0.409986496, -1.00000286, -2.51817255e-006, 1.1920929e-007, -2.5181796e-006, 1, 2.4732567e-006, -1.19216566e-007, 2.47324942e-006, -1.00000286))
  930. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  931. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.210000008, 2.00999999, 1.01999998))
  932. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.355003357, 0.0546789169, 1.33514404e-005, 1.00000286, 1.42115459e-014, 0, -1.42115052e-014, 1, -9.24554534e-027, 0, 0, 1.00000286))
  933. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.400000036, 0.409999967))
  934. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.90734863e-006, -0.938343048, 0.664993286, 1.1920929e-007, 9.32232069e-011, 1.00000286, -5.84789508e-012, 1, -9.32234706e-011, -1.00000286, -5.84786733e-012, 1.1920929e-007))
  935. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  936. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.419999957, 0.200000003, 1.01999998))
  937. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.349998474, -0.840093613, 3.81469727e-006, 1.00000286, -5.23478448e-011, 0, 5.23480009e-011, 1, -1.78261461e-010, 0, 1.78260962e-010, 1.00000286))
  938. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.00999999, 0.200000003, 1.01999998))
  939. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0449905396, -1.04016685, 1.90734863e-006, 1.00000286, 2.9842526e-012, 0, -2.98426128e-012, 1, -4.77486106e-011, 0, 4.77484718e-011, 1.00000286))
  940. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.400000036, 0.410000026))
  941. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(5.7220459e-006, 0.54027319, 0.354988098, 0, 2.4735923e-006, 1.00000286, 2.98430725e-012, -1, 2.47359958e-006, 1.00000286, 2.98430898e-012, 0))
  942. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  943. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.610000014, 0.210000008, 0.620000005))
  944. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0150108337, 0.464981079, 0.0500302315, 0, -1.43472789e-010, -1.00000286, 1.00000286, 2.98444104e-012, 0, 2.98444971e-012, -1, 1.43473206e-010))
  945. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  946. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  947. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.36998558, -1.20021057, -0.84282589, -5.96046448e-007, -1.19208153e-007, -1.00000286, 0.965929508, -0.258814275, -5.4488919e-007, -0.258817494, -0.965917587, 2.69415068e-007))
  948. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  949. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(1, 0.200000003, 0.200000003))
  950. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.24280548, 0.00502967834, 1.00020599, 0.258817405, 0.96591711, 2.00088834e-011, 8.73114914e-011, -2.04636308e-012, -1.00000286, -0.965929031, 0.258814216, -8.36735126e-011))
  951. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 0.410000026))
  952. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(5.7220459e-006, 0.250274181, -0.0450134277, 0, 2.4735923e-006, 1.00000286, 2.98430725e-012, -1, 2.47359958e-006, 1.00000286, 2.98430898e-012, 0))
  953. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  954. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(1, 0.200000003, 0.200000003))
  955. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.24280453, 0.372152328, 1.00020981, 0.258817405, 0.96591711, 2.00088834e-011, 8.73114914e-011, -2.04636308e-012, -1.00000286, -0.965929031, 0.258814216, -8.36735126e-011))
  956. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  957. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.400074005, -1.22174454, -0.857766151, 4.76837158e-007, -1.1920838e-007, 1.00000286, -0.965929031, -0.258814245, 4.29739885e-007, 0.258817434, -0.96591711, -2.38562279e-007))
  958. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  959. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  960. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0053653717, -1.00020218, 1.94278049, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.965929329, -0.258813977, 1.45519152e-011, 0.258817166, 0.965917408, -5.45696821e-012))
  961. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  962. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  963. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.45998764, 0.639939547, 0.410007477, -1.00000274, -2.05972356e-006, -2.68220901e-007, 2.05972879e-006, -1, 2.84469252e-006, -2.68228177e-007, 2.8446841e-006, 1.00000274))
  964. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  965. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.800000012))
  966. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.36998558, -1.20021057, 1.34280586, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.965929687, -0.258814067, 1.8189894e-011, 0.258817255, 0.965917766, -5.45696821e-012))
  967. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  968. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.310000032, 1.06000006, 0.319999963))
  969. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0369796753, 1.71661377e-005, 0.645148039, -1.00000286, -1.42865727e-014, 0, 0, 4.84305929e-011, -1.00000286, 1.4286532e-014, -1, -4.84307316e-011))
  970. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  971. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 1.07999992, 0.619999945))
  972. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0400009155, 3.81469727e-006, -0.550094128, -1.00000286, 1.76152777e-019, 0, 0, 0, -1.00000286, -2.57528079e-019, -1, 0))
  973. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  974. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 1.07999992, 0.619999945))
  975. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0400009155, 3.81469727e-006, 0.649905205, -1.00000286, 1.76152777e-019, 0, 0, 0, -1.00000286, -2.57528079e-019, -1, 0))
  976. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  977. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.409999996, 0.210000008, 0.620000005))
  978. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0150146484, -0.775886536, 0.050093174, 0, 0, -1.00000286, 1.00000286, 1.42115459e-014, 0, 1.42115052e-014, -1, 9.24554534e-027))
  979. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  980. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  981. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.22001648, 0.372150421, -0.185092926, -0.707113385, 0.707101226, 2.18278728e-011, 4.72937245e-011, 7.48058351e-011, -1.00000143, -0.707102299, -0.707112372, -9.09494702e-011))
  982. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  983. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.659992218, 0.370054245, -0.921754837, -1.00000286, 5.14851529e-011, 0, 0, 9.5951691e-011, -1.00000286, -5.14852987e-011, -1, -9.59519686e-011))
  984. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  985. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.210000008, 0.200000003, 0.200000003))
  986. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.405000687, 0.759868801, 0.659988403, 1.47521496e-006, 5.17919261e-006, -1.00000286, -3.2469668e-006, 1, 5.17920262e-006, 1.00000286, 3.24694997e-006, 1.47523315e-006))
  987. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  988. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.610000014, 0.210000008, 0.620000005))
  989. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.064994812, -0.965881824, 7.62939453e-006, -1.00000286, -1.35831423e-014, 1.41881173e-010, 1.35831e-014, -1, -2.95586645e-012, 1.41881173e-010, -2.95585778e-012, 1.00000286))
  990. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.899999976, 1, 1))
  991. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(1, 0.200000003, 0.200000003))
  992. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.25774574, -0.403015137, 1.02173233, -0.258817345, 0.96591711, -3.72519935e-008, -5.99829946e-008, 2.24945325e-008, 1.00000286, 0.965928972, 0.258814156, 5.21213224e-008))
  993. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  994. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.659988403, 5.14984131e-005, -0.921754837, -1.00000286, 5.14851529e-011, 0, 0, 9.5951691e-011, -1.00000286, -5.14852987e-011, -1, -9.59519686e-011))
  995. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  996. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.800000012))
  997. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.400075912, -1.22171783, 1.35775185, 5.96046448e-008, 7.73070497e-012, -1.00000286, -0.965929091, -0.258814007, -5.75746526e-008, -0.258817196, 0.96591717, -1.54186637e-008))
  998. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  999. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 0.410000026))
  1000. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-5.7220459e-006, 0.159724727, -0.0450134277, 0, -2.47359276e-006, -1.00000286, -2.51888788e-013, 1, -2.47360003e-006, 1.00000286, 2.51893179e-013, 0))
  1001. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1002. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  1003. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.401578903, -1.02172089, 1.95771885, 5.96046448e-008, 7.73070497e-012, -1.00000286, -0.965929091, -0.258813977, -5.75746526e-008, -0.258817166, 0.96591717, -1.54186637e-008))
  1004. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1005. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1006. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.375089645, -1.20021057, -0.842826843, -5.96046448e-007, -1.1920838e-007, -1.00000286, 0.965929925, -0.258814394, -5.44885552e-007, -0.258817613, -0.965918005, 2.69415068e-007))
  1007. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1008. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1009. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.24612808, -0.403017044, -0.187274933, 0.707113266, 0.707101345, -2.97986844e-008, -4.73555701e-008, 8.95023362e-008, 1.00000143, 0.707102358, -0.707112253, 9.67738742e-008))
  1010. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(1, 0.200000003, 0.209999964))
  1011. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(4.38690186e-005, -0.891833842, 0.644989014, 1.13504939e-009, 2.44355533e-006, -1.00000286, 1.57128099e-007, -1, -2.44356215e-006, -1.00000286, -1.57127644e-007, -1.13504939e-009))
  1012. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.939999998, 1, 1))
  1013. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1014. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.22001648, 0.005027771, -0.185092926, -0.707113385, 0.707101226, 2.18278728e-011, 4.72937245e-011, 7.48058351e-011, -1.00000143, -0.707102299, -0.707112372, -9.09494702e-011))
  1015. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1016. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00569725037, -1.20020676, -0.842824936, -5.96046448e-007, -1.1920838e-007, -1.00000286, 0.965929627, -0.258814305, -5.4488919e-007, -0.258817524, -0.965917706, 2.69415068e-007))
  1017. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1018. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.800000012))
  1019. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.375091553, -1.20021439, 1.34281826, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.965931058, -0.258814484, 1.45519152e-011, 0.258817732, 0.965919256, -5.45696821e-012))
  1020. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1021. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(1, 0.200000003, 0.200000003))
  1022. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.24280453, -0.369983673, 1.00020599, 0.258817405, 0.96591711, 2.00088834e-011, 8.73114914e-011, -2.04636308e-012, -1.00000286, -0.965929031, 0.258814216, -8.36735126e-011))
  1023. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.409999996, 0.210000008, 0.620000005))
  1024. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0150108337, 0.477142334, 0.0500302315, 0, -1.43472789e-010, -1.00000286, 1.00000286, 2.98444104e-012, 0, 2.98444971e-012, -1, 1.43473206e-010))
  1025. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1026. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1027. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.22001648, -0.36998558, -0.185092926, -0.707113385, 0.707101226, 2.18278728e-011, 4.72937245e-011, 7.48058351e-011, -1.00000143, -0.707102299, -0.707112372, -9.09494702e-011))
  1028. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Cyan", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1029. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.659992218, -0.36998558, -0.921754837, -1.00000286, 5.14851529e-011, 0, 0, 9.5951691e-011, -1.00000286, -5.14852987e-011, -1, -9.59519686e-011))
  1030. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1031. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.310000032, 1.06000006, 0.319999963))
  1032. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0369796753, 1.71661377e-005, -0.554851294, -1.00000286, -1.42865727e-014, 0, 0, 4.84305929e-011, -1.00000286, 1.4286532e-014, -1, -4.84307316e-011))
  1033. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1034.  
  1035. EffectModel = Instance.new("Model", Character)
  1036. EffectModel.Name = "Effects"
  1037.  
  1038. Effects = {
  1039. ["Block"] = {
  1040. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  1041. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  1042. prt.Anchored = true
  1043. prt.CFrame = cframe
  1044. local msh = CFuncs["Mesh"].Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1045. game:GetService("Debris"):AddItem(prt, 10)
  1046. if Type == 1 or Type == nil then
  1047. table.insert(Effects, {
  1048. prt,
  1049. "Block1",
  1050. delay,
  1051. x3,
  1052. y3,
  1053. z3,
  1054. msh
  1055. })
  1056. elseif Type == 2 then
  1057. table.insert(Effects, {
  1058. prt,
  1059. "Block2",
  1060. delay,
  1061. x3,
  1062. y3,
  1063. z3,
  1064. msh
  1065. })
  1066. end
  1067. end;
  1068. };
  1069.  
  1070. ["Cylinder"] = {
  1071. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1072. local prt = CFuncs["Part"].Create(workspace, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.2, 0.2, 0.2))
  1073. prt.Anchored = true
  1074. prt.CFrame = cframe
  1075. local msh = CFuncs["Mesh"].Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1076. game:GetService("Debris"):AddItem(prt, 2)
  1077. Effects[#Effects + 1] = {
  1078. prt,
  1079. "Cylinder",
  1080. delay,
  1081. x3,
  1082. y3,
  1083. z3
  1084. }
  1085. end;
  1086. };
  1087.  
  1088. ["Sphere"] = {
  1089. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1090. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  1091. prt.Anchored = true
  1092. prt.CFrame = cframe
  1093. local msh = CFuncs["Mesh"].Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1094. game:GetService("Debris"):AddItem(prt, 10)
  1095. table.insert(Effects, {
  1096. prt,
  1097. "Cylinder",
  1098. delay,
  1099. x3,
  1100. y3,
  1101. z3,
  1102. msh
  1103. })
  1104. end;
  1105. };
  1106.  
  1107. ["Elec"] = {
  1108. Create = function(cff, x, y, z)
  1109. local prt = CFuncs["Part"].Create(workspace, "Neon", 0, 0, BrickColor.new("Cyan"), "Part", Vector3.new(1, 1, 1))
  1110. prt.Anchored = true
  1111. prt.CFrame = cff * CFrame.new(math.random(-x, x), math.random(-y, y), math.random(-z, z))
  1112. prt.CFrame = CFrame.new(prt.Position)
  1113. game:GetService("Debris"):AddItem(prt, 2)
  1114. local xval = math.random() / 2
  1115. local yval = math.random() / 2
  1116. local zval = math.random() / 2
  1117. local msh = CFuncs["Mesh"].Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(xval, yval, zval))
  1118. table.insert(Effects, {
  1119. prt,
  1120. "Elec",
  1121. 0.1,
  1122. x,
  1123. y,
  1124. z,
  1125. xval,
  1126. yval,
  1127. zval
  1128. })
  1129. end;
  1130.  
  1131. };
  1132.  
  1133. ["Ring"] = {
  1134. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1135. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  1136. prt.Anchored = true
  1137. prt.CFrame = cframe
  1138. local msh = CFuncs["Mesh"].Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1139. game:GetService("Debris"):AddItem(prt, 10)
  1140. table.insert(Effects, {
  1141. prt,
  1142. "Cylinder",
  1143. delay,
  1144. x3,
  1145. y3,
  1146. z3,
  1147. msh
  1148. })
  1149. end;
  1150. };
  1151.  
  1152.  
  1153. ["Wave"] = {
  1154. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1155. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  1156. prt.Anchored = true
  1157. prt.CFrame = cframe
  1158. local msh = CFuncs["Mesh"].Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1159. game:GetService("Debris"):AddItem(prt, 10)
  1160. table.insert(Effects, {
  1161. prt,
  1162. "Cylinder",
  1163. delay,
  1164. x3,
  1165. y3,
  1166. z3,
  1167. msh
  1168. })
  1169. end;
  1170. };
  1171.  
  1172. ["Break"] = {
  1173. Create = function(brickcolor, cframe, x1, y1, z1)
  1174. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1175. prt.Anchored = true
  1176. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1177. local msh = CFuncs["Mesh"].Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1178. local num = math.random(10, 50) / 1000
  1179. game:GetService("Debris"):AddItem(prt, 10)
  1180. table.insert(Effects, {
  1181. prt,
  1182. "Shatter",
  1183. num,
  1184. prt.CFrame,
  1185. math.random() - math.random(),
  1186. 0,
  1187. math.random(50, 100) / 100
  1188. })
  1189. end;
  1190. };
  1191. }
  1192.  
  1193. function Reappear()
  1194. for _, i in pairs(Character:children()) do
  1195. if i:IsA("BasePart") then
  1196. coroutine.resume(coroutine.create(function(Part)
  1197. for i = 0, 1, 0.3 do
  1198. swait()
  1199. Part.Transparency = - i
  1200. end
  1201. Part.Transparency = 0
  1202. end), i)
  1203. elseif i:IsA("Accessory") then
  1204. coroutine.resume(coroutine.create(function(Part)
  1205. for i = 0, 1, 0.3 do
  1206. swait()
  1207. Part.Handle.Transparency = - i
  1208. end
  1209. Part.Handle.Transparency = 0
  1210. end), i)
  1211. end
  1212. end
  1213. for _, i in pairs(m:children()) do
  1214. if i:IsA("BasePart") then
  1215. coroutine.resume(coroutine.create(function(Part)
  1216. for i = 0, 1, 0.3 do
  1217. swait()
  1218. Part.Transparency = i
  1219. end
  1220. Part.Transparency = 0
  1221. end), i)
  1222. end
  1223. end
  1224. end
  1225.  
  1226. function Disappear()
  1227. for _, i in pairs(Character:children()) do
  1228. if i:IsA("BasePart") then
  1229. coroutine.resume(coroutine.create(function(Part)
  1230. for i = 0, 1, 0.3 do
  1231. swait()
  1232. Part.Transparency = i
  1233. end
  1234. Part.Transparency = 1
  1235. end), i)
  1236. elseif i:IsA("Accessory") then
  1237. coroutine.resume(coroutine.create(function(Part)
  1238. for i = 0, 1, 0.3 do
  1239. swait()
  1240. Part.Handle.Transparency = - i
  1241. end
  1242. Part.Handle.Transparency = 1
  1243. end), i)
  1244. end
  1245. end
  1246. for _, i in pairs(m:children()) do
  1247. if i:IsA("BasePart") then
  1248. coroutine.resume(coroutine.create(function(Part)
  1249. for i = 0, 1, 0.3 do
  1250. swait()
  1251. Part.Transparency = i
  1252. end
  1253. Part.Transparency = 1
  1254. end), i)
  1255. end
  1256. end
  1257. end
  1258.  
  1259. function AirDash()
  1260. attack = true
  1261. local AntiJump = Humanoid.Changed:connect(function()
  1262. Humanoid.Jump = false
  1263. end)
  1264. Disappear()
  1265. CFuncs["Sound"].Create("rbxassetid://169445226", Torso, 1, .8)
  1266. for i = 0, 1, 0.1 do
  1267. swait()
  1268. RootPart.Velocity = RootPart.CFrame.lookVector * 150
  1269. for i = 1, 3 do
  1270. Effects["Elec"].Create(Torso.CFrame, 5, 5, 5)
  1271. end
  1272. PlayAnimationFromTable({
  1273. CFrame.new(0, -0.0684475452, -0.249608472, 1, 0, 0, 0, 0.866025388, 0.500000238, 0, -0.500000238, 0.866025388) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1274. CFrame.new(0, 1.41547072, 0.181262881, 1, 0, 0, 0, 0.906307876, -0.42261827, 0, 0.42261827, 0.906307876) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1275. CFrame.new(1.39608037, 0.0857366472, 0.69745177, -0.171009958, 0.0301529951, -0.984807849, 0.756428123, 0.644482613, -0.111619413, 0.631325841, -0.764024317, -0.133021519) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1276. CFrame.new(-1.56568348, 0.51024133, 0.517902374, 0.913699269, 0.316559821, 0.254840195, -0.354537129, 0.314407557, 0.880597234, 0.198638007, -0.894951463, 0.399506152) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1277. CFrame.new(0.500000358, -1.34467852, -0.458858073, 0.98480773, -0.0301534627, -0.17101039, 0.0996006578, 0.904794157, 0.414038181, 0.142244503, -0.424780726, 0.894051492) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1278. CFrame.new(-0.493063986, -1.76353812, 0.337700725, 0.965925753, -4.96573023e-007, 0.258819401, -0.14845252, 0.81915164, 0.55403316, -0.212012589, -0.573577225, 0.791239619) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1279. }, .5, false)
  1280. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(185), math.rad(-10)), 0.3)
  1281. end
  1282. Reappear()
  1283. for i = 0, 1, 0.3 do
  1284. swait()
  1285. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1286. PlayAnimationFromTable({
  1287. CFrame.new(-3.45729177e-006, -1.07288361e-006, -1.61215644e-006, 0.422617137, 0, 0.906308293, 0, 1, 0, -0.906308293, 0, 0.422617137),
  1288. CFrame.new(-2.93552876e-006, 1.49999666, 2.47359276e-006, 0.642787337, 0.0667652711, -0.763129652, 0, 0.996194661, 0.0871558487, 0.766044676, -0.0560226738, 0.640341341),
  1289. CFrame.new(0.698839545, 0.330527961, -1.17968464, -0.0858322605, 0.628752053, 0.772854269, 0.992461622, 0.122068912, 0.0109129949, -0.0874799117, 0.76796484, -0.634489775),
  1290. CFrame.new(-1.41369021, 0.137095958, 0.271576643, 0.951021314, 0.183494747, 0.248773009, -0.256190121, 0.918202639, 0.302110255, -0.172988355, -0.351046532, 0.920239806),
  1291. CFrame.new(0.64087379, -1.98256373, 0.140884519, 0.704417586, -0.0616254881, -0.707105517, 0.087155968, 0.996194661, 4.53608664e-006, 0.704414487, -0.0616316497, 0.70710808),
  1292. CFrame.new(-0.751752973, -1.94796431, 0.117966183, 0.936117291, 0.140046805, -0.322600812, -0.0871559978, 0.981060147, 0.172988161, 0.340717107, -0.133820623, 0.930593371),
  1293. }, .6, false)
  1294. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), .5)
  1295. end
  1296. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox, 1, 1)
  1297. for i = 0, 1, 0.3 do
  1298. swait()
  1299. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1300. PlayAnimationFromTable({
  1301. CFrame.new(2.70828605e-006, -0.256154776, -0.071654655, 0.499999046, -1.78813579e-007, -0.866026044, 0.150384009, 0.984807789, 0.0868238211, 0.852869093, -0.173648283, 0.492402941),
  1302. CFrame.new(4.34633694e-006, 1.49999607, 2.42484384e-006, 0.646143615, 0.0549410731, 0.761235893, -0.0851004422, 0.996372402, 0.000322267413, -0.758456767, -0.0649897307, 0.648474991),
  1303. CFrame.new(1.86507177, 0.598104239, 0.183552518, -0.114682339, -0.981059372, -0.156110525, 0.981060445, -0.0871559381, -0.172987223, 0.156104773, -0.172992408, 0.9724738),
  1304. CFrame.new(-1.52644157, 0.0874626189, -0.302744657, 0.95125103, 0.20658794, -0.229004204, -0.254887104, 0.944645047, -0.2065873, 0.173649222, 0.254886597, 0.951251268),
  1305. CFrame.new(0.623469114, -1.90178788, 0.0298061967, 0.992532074, -0.0928985924, 0.079056859, 0.0757590532, 0.97739321, 0.197391063, -0.0956070125, -0.189927697, 0.977131963),
  1306. CFrame.new(-0.786503196, -1.67652178, -0.389780819, 0.631277382, 0.179900557, 0.754403591, -0.0723632798, 0.982144117, -0.173656344, -0.772174001, 0.0550341941, 0.6330235),
  1307. }, .5, false)
  1308. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), .5)
  1309. end
  1310. for i = 0, 1, 0.3 do
  1311. swait()
  1312. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1313. PlayAnimationFromTable({
  1314. CFrame.new(0, -0, -0, 0.573575675, 0, -0.819152594, 0, 1, 0, 0.819152594, 0, 0.573575675),
  1315. CFrame.new(3.08454037e-006, 1.49999881, 2.57045031e-006, 0.642787039, -0.0667651147, 0.76312989, 0, 0.99619478, 0.0871556103, -0.766044915, -0.0560225062, 0.640341043),
  1316. CFrame.new(1.69747591, 0.457380712, 0.451709926, -0.0444228128, -0.827531219, 0.55965966, -0.981060326, -0.0695906579, -0.180770397, 0.18854022, -0.557090104, -0.808766544),
  1317. CFrame.new(-1.68707776, 0.160575554, -0.28150323, 0.690673113, 0.601469755, -0.401503354, -0.691249013, 0.712214351, -0.12217018, 0.212474763, 0.361918449, 0.907672644),
  1318. CFrame.new(0.637356639, -1.97847009, 0.076719813, 0.850760341, -0.123644285, 0.51080215, 0.0764630362, 0.990710139, 0.112458259, -0.519961715, -0.0566175357, 0.852311194),
  1319. CFrame.new(-0.628168941, -1.98483193, 0.152803689, 0.640938401, 0.0450230837, 0.766270876, -0.0758190081, 0.99710989, 0.00483164471, -0.763838768, -0.0611946844, 0.642499626),
  1320. }, .55, false)
  1321. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), .5)
  1322. end
  1323. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox, 1, 1.2)
  1324. for i = 0, 1, 0.3 do
  1325. swait()
  1326. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1327. PlayAnimationFromTable({
  1328. CFrame.new(-0, -0.179999992, 0, 0.707106352, 0, 0.707107365, 0, 1, 0, -0.707107365, 0, 0.707106352),
  1329. CFrame.new(-3.07708979e-006, 1.49999881, 2.57790089e-006, 0.64278692, 0.066765137, -0.763130128, 0, 0.99619478, 0.0871556103, 0.766045094, -0.056022495, 0.640340984),
  1330. CFrame.new(0.954324961, 0.24834919, -0.880105972, 0.326528549, 0.544942617, -0.772280335, -0.941748381, 0.257209718, -0.216687083, 0.0805559754, 0.798048139, 0.597185135),
  1331. CFrame.new(-1.58964086, 0.138686687, 0.0523245335, 0.944645166, 0.254885972, -0.206588656, -0.206587031, 0.951251626, 0.229002386, 0.254887283, -0.173647493, 0.951251388),
  1332. CFrame.new(0.670057595, -1.81781983, -0.10544461, 0.499700427, -0.0172690637, -0.866026282, 0.0345539972, 0.999402881, 9.12000269e-006, 0.865508974, -0.0299292281, 0.499998689),
  1333. CFrame.new(-0.884505391, -1.76931953, -0.185952976, 0.681231737, 0.216974914, -0.699174821, -0.105348974, 0.974182904, 0.199672803, 0.724448264, -0.0623660684, 0.686502278),
  1334. }, .5, false)
  1335. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(70)), .5)
  1336. end
  1337. for i = 0, 1, 0.3 do
  1338. swait()
  1339. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1340. PlayAnimationFromTable({
  1341. CFrame.new(-0, -0.199999988, 0, 0.499998987, 0, 0.866025984, 0, 1, 0, -0.866025984, 0, 0.499998987),
  1342. CFrame.new(-3.2261014e-006, 1.49999571, 1.87009573e-006, 0.499998987, 0.0754793361, -0.862730443, 0, 0.996194661, 0.087155968, 0.866025984, -0.0435778946, 0.498096317),
  1343. CFrame.new(0.758310795, 0.506792068, -1.07750559, 0.0780267715, 0.542353034, 0.836519599, 0.995831132, -0.0821644962, -0.0396157168, 0.0472465083, 0.836123407, -0.546503007),
  1344. CFrame.new(-1.56371987, -0.0378807485, -0.12044096, 0.892536283, 0.33327353, 0.30382207, -0.157379016, 0.861525297, -0.482707113, -0.422623843, 0.383018374, 0.821392834),
  1345. CFrame.new(0.688273072, -1.83205605, 0.326112747, 0.492402941, -0.0868238136, -0.866025984, 0.173647985, 0.984807849, 0, 0.852869213, -0.150383666, 0.499998987),
  1346. CFrame.new(-0.464390695, -1.92090166, -0.363977104, 0.962945819, 0.0995973051, -0.250631034, -0.0593889765, 0.984808624, 0.163171798, 0.263075113, -0.142240882, 0.954232156),
  1347. }, .3, false)
  1348. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(-30)), .5)
  1349. end
  1350. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox, 1, .7)
  1351. for i = 0, 1, 0.3 do
  1352. swait()
  1353. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1354. PlayAnimationFromTable({
  1355. CFrame.new(6.67199492e-006, -0.207597449, -0.0868210196, 0.642787039, 9.57827169e-008, -0.766045034, 0.13302201, 0.984807849, 0.11161866, 0.754407108, -0.173647866, 0.633021653),
  1356. CFrame.new(-2.45868534e-007, 1.4999963, -1.11758425e-008, 0.642787039, -1.63912773e-007, 0.766045034, 9.57827169e-008, 1.00000012, 1.1920929e-007, -0.766045034, -7.4505806e-009, 0.642787039),
  1357. CFrame.new(1.63684285, 0.191258341, 0.0590808541, 0.419205964, -0.896826267, -0.141311735, 0.875504494, 0.440527022, -0.198564485, 0.240329444, -0.0404796004, 0.969847083),
  1358. CFrame.new(-1.44409096, 0.0586332679, 0.28650257, 0.847117305, 0.408219695, 0.340219229, -0.468929112, 0.875426352, 0.117194086, -0.249995977, -0.258815825, 0.93301481),
  1359. CFrame.new(0.598103762, -1.98841107, 0.015527457, 0.981059909, -0.0858310461, -0.17365095, 0.115870565, 0.978432178, 0.171010211, 0.155227691, -0.187892288, 0.969845891),
  1360. CFrame.new(-0.84634155, -1.7162106, -0.315425038, 0.499999523, 0.150383905, 0.852868795, 7.07805157e-007, 0.98480767, -0.17364873, -0.866025805, 0.0868248716, 0.492403209),
  1361. }, .3, false)
  1362. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), .5)
  1363. end
  1364. for i = 0, 1, 0.3 do
  1365. swait()
  1366. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1367. PlayAnimationFromTable({
  1368. CFrame.new(0, -0, -0, 0.76604414, 0, -0.642788053, 0, 1, 0, 0.642788053, 0, 0.76604414),
  1369. CFrame.new(-1.40070915e-006, 1.4999963, -1.66893005e-006, 0.76604414, -0.0429935083, 0.6413486, 0, 0.997760653, 0.066885978, -0.642788053, -0.051237613, 0.764328718),
  1370. CFrame.new(1.66817236, 0.999997735, 0.511572003, 0.736215532, -0.634792984, 0.234573662, -0.642445922, -0.546619952, 0.537093997, -0.212720826, -0.546117783, -0.810250103),
  1371. CFrame.new(-1.37409723, 0.400003314, -0.627805173, 0.774178386, 0.211310744, -0.596653819, -0.628698826, 0.366000623, -0.686135113, 0.0733878911, 0.906306386, 0.416200638),
  1372. CFrame.new(0.653213322, -1.99999535, -0.12855646, 0.94284457, -0.0929451212, 0.320008487, 0.0665469989, 0.993487716, 0.0924861878, -0.326520622, -0.0659044906, 0.94288969),
  1373. CFrame.new(-0.640875459, -1.9999963, -0.0123234689, 0.764365256, 0.0739410222, 0.64053005, -0.0661710203, 0.997153461, -0.0361446291, -0.641379297, -0.0147568267, 0.767082214),
  1374. }, .35, false)
  1375. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), .5)
  1376. end
  1377. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox, 1, .8)
  1378. for i = 0, 1, 0.3 do
  1379. swait()
  1380. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1381. PlayAnimationFromTable({
  1382. CFrame.new(-1.3038516e-006, -0.390966356, -0.0855526477, 0.499999046, 1.78813579e-007, 0.866026044, -0.150384009, 0.984807789, 0.0868238211, -0.852869093, -0.173648283, 0.492402941),
  1383. CFrame.new(-4.05311584e-006, 1.49999619, 1.60932541e-006, 0.573575735, -0.0713945851, -0.81603545, 6.76140189e-007, 0.99619472, -0.0871561766, 0.819152594, 0.0499901175, 0.571393192),
  1384. CFrame.new(1.28216481, 0.179315746, -0.842360139, 0.633024693, -0.0230962932, -0.773787081, -0.717572212, 0.357540846, -0.597708046, 0.290465295, 0.933612049, 0.209758848),
  1385. CFrame.new(-1.62196672, 0.225311682, 0.0992549062, 0.755533695, 0.605033398, 0.25120458, -0.532469451, 0.790533543, -0.302544594, -0.381635189, 0.0948238969, 0.919436276),
  1386. CFrame.new(0.811682165, -1.60607064, -0.260146618, 0.492403209, -0.0868215263, -0.866026103, 0.173648342, 0.98480773, 2.86102295e-006, 0.852869093, -0.15038538, 0.499998868),
  1387. CFrame.new(-0.546382487, -1.80111504, -0.26132381, 0.984808207, 0.173645854, 6.02006912e-006, -0.142245889, 0.80670774, 0.573575616, 0.0995941162, -0.564862847, 0.819152772),
  1388. }, .43, false)
  1389. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(80)), .5)
  1390. end
  1391. FakeHandleWeld.C0 = CFrame.Angles(0, 0, 0)
  1392. AntiJump:disconnect()
  1393. attack = false
  1394. end
  1395.  
  1396. function attackone()
  1397. attack = true
  1398. local con = Hitbox.Touched:connect(function(hit)
  1399. Damagefunc(Hitbox, hit, 20, 25, math.random(1, 5), "Normal", RootPart, .2, "rbxassetid://199149221", .8)
  1400. end)
  1401. for i = 0, 1, 0.13 do
  1402. swait()
  1403. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1404. PlayAnimationFromTable({
  1405. CFrame.new(-0.131559491, -0.320498586, 0.169404626, 0.573576331, -1.19657315e-007, 0.819152236, -0.280166179, 0.939692795, 0.196174532, -0.769751489, -0.342019767, 0.538985491) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1406. CFrame.new(-4.47034836e-008, 1.50000048, 2.98023224e-007, 0.573576331, -0.142244831, -0.806707442, -1.19657315e-007, 0.98480767, -0.173648953, 0.819152236, 0.0996010229, 0.564862311) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1407. CFrame.new(0.808982491, 0.459623098, -0.809256911, -0.309975415, 0.628641963, 0.713249564, 0.948714852, 0.155525729, 0.275230855, 0.0620930195, 0.761985064, -0.644611061) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1408. CFrame.new(-1.51002705, 0.0649872497, 0.484053552, 0.933559537, 0.320965201, 0.159525007, -0.335746944, 0.62731266, 0.702675521, 0.125462264, -0.709549546, 0.693396747) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1409. CFrame.new(1.06218219, -1.44446337, -0.324575514, 0.633718252, -0.296198159, -0.714610517, 0.0593904257, 0.939692438, -0.336824715, 0.771280944, 0.171010911, 0.613091588) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1410. CFrame.new(-0.578954935, -1.89007342, -0.0991814733, 0.974172831, 0.036860466, -0.222775176, 0.0446061641, 0.935730338, 0.34988451, 0.221354336, -0.350785136, 0.909918845) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1411. }, .4, false)
  1412. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.3)
  1413. end
  1414. CFuncs["Sound"].Create("rbxassetid://588693579", Hitbox, 1, 1)
  1415. RootPart.Velocity = RootPart.CFrame.lookVector * 50
  1416. for i = 0, 1, 0.15 do
  1417. swait()
  1418. Effects["Elec"].Create(Hitbox.CFrame, .1, .1, .1)
  1419. PlayAnimationFromTable({
  1420. CFrame.new(-0.126416981, -0.288554907, -0.0458763018, 0.658456802, 0.336823344, -0.673041403, 0.0412939899, 0.876750886, 0.479168862, 0.751484811, -0.343304545, 0.563393831) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1421. CFrame.new(4.75347042e-006, 1.50000226, -8.70972872e-006, 0.629547477, -0.0176723152, 0.776760995, 0.182676718, 0.975082517, -0.125871003, -0.75518167, 0.221137911, 0.617089033) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1422. CFrame.new(1.86234975, 0.403067291, -0.0970593393, 0.0283662975, -0.981458306, -0.189565629, 0.811184466, 0.133416668, -0.569368005, 0.584102094, -0.13762185, 0.799928188) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1423. CFrame.new(-1.50460577, 0.187671542, 0.402171046, 0.0342593789, 0.798939466, 0.600434899, -0.526206851, 0.525188565, -0.668792546, -0.849666238, -0.293040574, 0.43840009) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1424. CFrame.new(0.630320907, -2.04325032, 0.0690481961, 0.981336057, -0.154941499, -0.113898009, 0.176862091, 0.95973134, 0.218256027, 0.0754945576, -0.23432678, 0.969222307) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1425. CFrame.new(-0.72014606, -1.49782073, -0.858283162, 0.708516896, -0.0158675089, 0.705515504, 0.260576338, 0.934978366, -0.240656585, -0.655823171, 0.354349881, 0.666582644) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1426. }, .5, false)
  1427. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.3)
  1428. end
  1429. con:disconnect()
  1430. attack = false
  1431. end
  1432.  
  1433. function attacktwo()
  1434. attack = true
  1435. local con = Hitbox.Touched:connect(function(hit)
  1436. Damagefunc(Hitbox, hit, 20, 25, math.random(1, 5), "Normal", RootPart, .2, "rbxassetid://199149221", .8)
  1437. end)
  1438. for i = 0, 1, 0.15 do
  1439. swait()
  1440. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1441. PlayAnimationFromTable({
  1442. CFrame.new(-0.0931401253, -0.403328717, -0.230022758, 0.707106054, -1.36977135e-007, 0.707107484, -0.241844028, 0.939693153, 0.241843715, -0.664464056, -0.342018902, 0.664462626) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1443. CFrame.new(-1.01327896e-006, 1.49999177, 1.31130219e-006, 0.707106054, -0.122787051, -0.696365118, -1.36977135e-007, 0.984808087, -0.173647076, 0.707107484, 0.122786999, 0.696363688) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1444. CFrame.new(1.51814342, 0.223689169, 0.688179493, -0.137568116, -0.246912807, -0.959223211, 0.789885521, 0.556966305, -0.256650597, 0.597625256, -0.792983413, 0.118412107) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1445. CFrame.new(-1.61155009, 0.84159255, -0.506984234, 0.725072443, 0.649718523, -0.228332728, 0.0704733431, -0.399815619, -0.913882494, -0.685057223, 0.646539629, -0.335683078) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1446. CFrame.new(0.959007144, -1.44447553, -0.459016204, 0.707106054, -0.183011726, -0.683013737, -1.36977135e-007, 0.96592629, -0.258817554, 0.707107484, 0.183011532, 0.683012247) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1447. CFrame.new(-0.401523113, -1.92804301, -0.0715783238, 0.98480773, 4.76837158e-007, 0.173648164, -0.0996008664, 0.819152236, 0.564862251, -0.142243981, -0.573576152, 0.806707501) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1448. }, .4, false)
  1449. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-10)), 0.3)
  1450. end
  1451. RootPart.Velocity = RootPart.CFrame.lookVector * 50
  1452. CFuncs["Sound"].Create("rbxassetid://588693922", Hitbox2, 1, 1.5)
  1453. CFuncs["Sound"].Create("rbxassetid://338586331", Hitbox2, 1, 1.1)
  1454. for i = 0, 1, 0.2 do
  1455. swait()
  1456. Effects["Elec"].Create(Hitbox2.CFrame, .1, .1, .1)
  1457. PlayAnimationFromTable({
  1458. CFrame.new(-0.42147997, -0.541991115, 0.41270873, 0.777157903, 0.336823314, -0.531578541, 0.0263469964, 0.82655102, 0.562244952, 0.62875396, -0.45095858, 0.633486271) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1459. CFrame.new(0.06552203, 1.48139107, 0.0732361525, 0.755344927, -0.00913953781, 0.655263901, 0.172986209, 0.96721828, -0.185916364, -0.632083893, 0.25378257, 0.732164264) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1460. CFrame.new(1.5181396, 0.22368449, 0.68819344, 0.198801011, -0.246908307, -0.948427498, 0.830028176, 0.556967854, 0.0289852768, 0.521086812, -0.792983711, 0.315666586) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1461. CFrame.new(-0.301909953, 0.485349864, -1.08579051, 0.197922766, -0.871504903, -0.44867146, -0.555551589, 0.277377427, -0.783852279, 0.80758214, 0.404402286, -0.429266572) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1462. CFrame.new(0.90766263, -1.68895841, -0.292883754, 0.823597074, -0.339787126, 0.454128563, 0.333233327, 0.937806427, 0.0973394513, -0.458959311, 0.071162343, 0.885602772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1463. CFrame.new(-0.638449132, -1.41060436, -0.708662212, 0.737985313, 0.155204505, 0.656726241, 0.242131248, 0.847485662, -0.472377807, -0.629881024, 0.507621825, 0.587852061) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1464. }, .5, false)
  1465. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-10)), 0.3)
  1466. end
  1467. con:disconnect()
  1468. attack = false
  1469. end
  1470.  
  1471. function attackthree()
  1472. attack = true
  1473. local con = Hitbox.Touched:connect(function(hit)
  1474. Damagefunc(Hitbox, hit, 20, 25, math.random(1, 5), "Normal", RootPart, .2, "rbxassetid://199149221", .8)
  1475. end)
  1476. for i = 0, 1, 0.2 do
  1477. swait()
  1478. Effects["Elec"].Create(Hitbox.CFrame, .1, .1, .1)
  1479. PlayAnimationFromTable({
  1480. CFrame.new(-0, -0.20810315, -0.0867809057, 1, 0, 0, 0, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1481. CFrame.new(0, 1.47561324, 0.0288389549, 1, 0, 0, 0, 0.99619478, -0.0871553123, 0, 0.0871553123, 0.99619478) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1482. CFrame.new(1.30000365, 1.09976232, 0.400648683, 0.965925872, -5.54146823e-007, -0.258818865, 0.166365132, -0.766044676, 0.620885253, -0.198267132, -0.642787635, -0.739942193) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1483. CFrame.new(-1.3975333, 0.0611867793, 0.304421067, 0.969846368, 0.138258651, 0.200705305, -0.187892184, 0.948662996, 0.254431367, -0.155224353, -0.28447026, 0.946035028) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1484. CFrame.new(0.500000536, -1.87321258, 0.271892726, 0.98480773, -4.69592806e-007, -0.173648208, 0.073387444, 0.906307578, 0.416198403, 0.15737848, -0.422619045, 0.892538726) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1485. CFrame.new(-0.5, -0.603483975, -0.925777316, 1, 0, -0, 0, 0.965925872, -0.258819073, 0, 0.258819073, 0.965925872) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1486. }, .5, false)
  1487. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  1488. end
  1489. RootPart.Velocity = RootPart.CFrame.lookVector * 50
  1490. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox, 1, 1.1)
  1491. for i = 0, 1, 0.16 do
  1492. swait()
  1493. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1494. PlayAnimationFromTable({
  1495. CFrame.new(-0, -0.470929444, -0.192718163, 1, 0, 0, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1496. CFrame.new(0, 1.47561359, 0.0288352519, 1, 0, 0, 0, 1, -2.98023224e-008, 0, -2.98023224e-008, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1497. CFrame.new(1.08788931, 0.280158341, -0.816111982, 0.965924978, 0.148454919, 0.212014496, 0.166366577, 0.271385759, -0.947983205, -0.198270485, 0.95095253, 0.237440437) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1498. CFrame.new(-1.48265684, 0.224726945, 0.575256824, 0.91523385, 0.274062514, 0.295358658, -0.374409705, 0.849327624, 0.37210232, -0.148876935, -0.451145858, 0.879944921) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1499. CFrame.new(0.481191039, -1.91050935, 0.407004416, 0.98480773, 0.0151346745, -0.17298761, 0.0733870268, 0.866584241, 0.493605196, 0.157378882, -0.498801291, 0.852308273) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1500. CFrame.new(-0.499998271, -1.47281778, -0.692839503, 0.984807849, 0, 0.173647985, 0.0593910702, 0.939692736, -0.33682391, -0.163175747, 0.342019886, 0.925416768) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1501. }, .6, false)
  1502. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(.5, .5, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(60)), 0.6)
  1503. end
  1504. con:disconnect()
  1505. attack = false
  1506. end
  1507.  
  1508. function attackfour()
  1509. attack = true
  1510. local con = Hitbox.Touched:connect(function(hit)
  1511. Damagefunc(Hitbox, hit, 20, 25, math.random(1, 5), "Normal", RootPart, .2, "rbxassetid://199149221", .8)
  1512. end)
  1513. for i = 0, 1, 0.15 do
  1514. swait()
  1515. Effects["Elec"].Create(Hitbox.CFrame, .1, .1, .1)
  1516. PlayAnimationFromTable({
  1517. CFrame.new(-0.113323241, -0.301505059, -0.358205646, 0.642786801, -4.78913407e-008, 0.766045153, -0.198266953, 0.965925872, 0.16636543, -0.739942849, -0.258818924, 0.620884418) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1518. CFrame.new(-1.05798244e-006, 1.49999213, 9.983778e-007, 0.642786801, -0.0667652637, -0.763130188, -4.78913407e-008, 0.99619478, -0.0871558189, 0.766045153, 0.0560226589, 0.640340865) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1519. CFrame.new(1.65369904, 0.162275895, -0.00659683347, 0.707105041, -0.696365714, -0.12278986, 0.579228401, 0.670027971, -0.464281261, 0.40558213, 0.257172287, 0.877134919) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1520. CFrame.new(-1.66235614, 0.192983806, -0.335417867, 0.563021898, 0.639703155, 0.52324605, 0.237272531, 0.481356442, -0.843799591, -0.791649222, 0.599229455, 0.119230166) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1521. CFrame.new(0.964248538, -1.60233533, -0.216483638, 0.571182966, -0.157378986, -0.805594265, 0.0301537905, 0.984807849, -0.171010092, 0.82026881, 0.0733863264, 0.567251086) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1522. CFrame.new(-0.823070824, -1.8176235, -0.245362669, 0.846333623, 0.340068877, -0.409966528, -0.271193385, 0.937547863, 0.217848897, 0.458446831, -0.0731925964, 0.885702848) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1523. }, .5, false)
  1524. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-50)), 0.5)
  1525. end
  1526. RootPart.CFrame = RootPart.CFrame * CFrame.new(0, 0, -10)
  1527. CFuncs["Sound"].Create("rbxassetid://338586331", Hitbox2, 1, 1)
  1528. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox2, 1, 1.5)
  1529. for i = 0, 1, 0.16 do
  1530. swait()
  1531. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1532. PlayAnimationFromTable({
  1533. CFrame.new(-0.157449037, -0.428025395, 0.0330477953, 0.31941691, 0.224143028, -0.920724034, 0.130619973, 0.951934218, 0.277055472, 0.938568771, -0.208761141, 0.274786323) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1534. CFrame.new(-8.62404704e-006, 1.49999344, -1.35879964e-005, 0.419978231, -0.0667628497, 0.905075192, 0.0789893046, 0.996194839, 0.0368312001, -0.904090106, 0.0560229644, 0.423653752) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1535. CFrame.new(1.42177391, 0.402980715, 0.530310392, 0.578039765, -0.574771583, -0.579230309, 0.767084241, 0.624832928, 0.145484447, 0.278301865, -0.52841413, 0.802076399) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1536. CFrame.new(-1.44472814, 1.10374677, -0.520131826, 0.989266992, 0.030755192, 0.142846346, 0.107178524, -0.817194343, -0.566309273, 0.099316299, 0.575541079, -0.811719656) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1537. CFrame.new(0.569701552, -1.87918103, 0.172382548, 0.960191846, -0.15472649, 0.232575998, 0.114886686, 0.977646708, 0.176091135, -0.254623055, -0.142361343, 0.956504226) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1538. CFrame.new(-0.878278732, -1.42697322, -0.499026388, 0.643315554, 0.242828339, 0.726071298, 0.0758636594, 0.923481584, -0.37606734, -0.761833251, 0.297012389, 0.575668097) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1539. }, .6, false)
  1540. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-50)), 0.6)
  1541. end
  1542. con:disconnect()
  1543. attack = false
  1544. end
  1545.  
  1546. --[[Attacks]]--
  1547.  
  1548. mouse.Button1Down:connect(function()
  1549. if attack == false and attacktype == 1 then
  1550. attacktype = 2
  1551. attackone()
  1552. elseif attack == false and attacktype == 2 then
  1553. attacktype = 3
  1554. attacktwo()
  1555. elseif attack == false and attacktype == 3 then
  1556. attacktype = 4
  1557. attackthree()
  1558. elseif attack == false and attacktype == 4 then
  1559. attacktype = 1
  1560. attackfour()
  1561. end
  1562. end)
  1563.  
  1564. mouse.KeyDown:connect(function(k)
  1565. k = k:lower()
  1566. if attack == false and k == 'z' then
  1567. AirDash()
  1568. end
  1569. end)
  1570.  
  1571. Humanoid.JumpPower = 80
  1572.  
  1573. while true do
  1574. swait()
  1575. Hitbox.Transparency = 1
  1576. Hitbox2.Transparency = 1
  1577. Handle.Transparency = 1
  1578. Handle2.Transparency = 1
  1579. FakeHandle.Transparency = 1
  1580. RootPart.Transparency = 1
  1581. Humanoid.WalkSpeed = 25
  1582. for i, v in pairs(Character:GetChildren()) do
  1583. if v:IsA("Part") then
  1584. v.Material = "SmoothPlastic"
  1585. elseif v:IsA("Accessory") then
  1586. v:WaitForChild("Handle").Material = "SmoothPlastic"
  1587. end
  1588. end
  1589. for i, v in pairs(Character:GetChildren()) do
  1590. if v:IsA'Model' then
  1591. for _, c in pairs(v:GetChildren()) do
  1592. if c:IsA'Part' then
  1593. c.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001)
  1594. end
  1595. end
  1596. end
  1597. end
  1598. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  1599. velocity = RootPart.Velocity.y
  1600. sine = sine + change
  1601. local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  1602. if equipped == true or equipped == false then
  1603. if RootPart.Velocity.y > 1 and hit == nil then
  1604. Anim = "Jump"
  1605. if attack == false then
  1606. PlayAnimationFromTable({
  1607. CFrame.new(-0, -0, -0, 1, 0, 0, 0, 1, 0, 0, 0, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1608. CFrame.new(0, 1.49104357, -0.0507529527, 1, 0, 0, 0, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1609. CFrame.new(1.37250769, 0.121224046, 0.64733851, 0.173648015, 2.58755701e-008, -0.984807789, 0.852869093, 0.499999106, 0.150383696, 0.49240306, -0.866025925, 0.0868238285) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1610. CFrame.new(-1.57669723, 0.162346587, -0.26788035, 0.8611601, 0.435611397, -0.262004048, -0.489563048, 0.849481702, -0.196745664, 0.136863008, 0.297697008, 0.944798946) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1611. CFrame.new(0.49999693, -1.99999774, -8.94069672e-008, 0.965925872, 3.7422879e-007, -0.258818924, 0.0449429974, 0.984807849, 0.167731062, 0.254886955, -0.173647881, 0.951251388) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1612. CFrame.new(-0.598104358, -1.58444905, -0.345675468, 0.981060326, 0.0858319253, 0.173648298, -0.141065046, 0.930940628, 0.336823732, -0.132746041, -0.354940027, 0.925416648) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1613. }, .3, false)
  1614. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-10)), 0.3)
  1615. end
  1616. elseif RootPart.Velocity.y < -1 and hit == nil then
  1617. Anim = "Fall"
  1618. if attack == false then
  1619. PlayAnimationFromTable({
  1620. CFrame.new(-0, -0, -0, 1, 0, 0, 0, 1, 0, 0, 0, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1621. CFrame.new(0, 1.4910444, -0.0507505536, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1622. CFrame.new(1.41551924, 0.430770516, 0.599072576, 0.163175896, -0.0593939237, -0.984807611, 0.972444415, 0.178148255, 0.150383249, 0.166509897, -0.982209563, 0.0868267864) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1623. CFrame.new(-1.53597856, 0.181962684, -0.0532567501, 0.748531938, 0.630958676, 0.203939021, -0.508304954, 0.743486166, -0.434573829, -0.425823927, 0.221629158, 0.877242625) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1624. CFrame.new(0.525004327, -1.77186298, -0.282919437, 0.965925634, -0.0885212198, -0.24321124, 0.0449429862, 0.982783973, -0.179209024, 0.254887909, 0.162171945, 0.953274548) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1625. CFrame.new(-0.625082374, -1.74759519, -0.371673733, 0.98105973, 0.161157295, 0.107471913, -0.141064972, 0.974630296, -0.173771828, -0.132749975, 0.155320033, 0.978904068) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1626. }, .3, false)
  1627. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-10)), 0.3)
  1628. end
  1629. elseif Torsovelocity < 1 and hit ~= nil then
  1630. Anim = "Idle"
  1631. if attack == false then
  1632. change = 1
  1633. PlayAnimationFromTable({
  1634. CFrame.new(-0.0741269588, -0.296722889, 0.0201097988, 0.819151819, 0, -0.573576868, 0, 1, 0, 0.573576868, 0, 0.819151819) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1635. CFrame.new(-0.0564861223, 1.48262787, -0.0806704611, 0.819151819, -0.0996004641, 0.564863026, 0, 0.984807849, 0.173647985, -0.573576868, -0.142244056, 0.806707144) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1636. CFrame.new(1.61798644, 0.0522672534, 0.0578619242, 0.35459581, -0.371187091, -0.858185351, 0.516142964, 0.843021989, -0.151362091, 0.779652774, -0.389273971, 0.490517616) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1637. CFrame.new(-1.59952319, 0.0271437615, -0.238670975, 0.950691044, 0.297527671, -0.0875436962, -0.310010105, 0.903491974, -0.295966268, -0.00896313787, 0.308511913, 0.951178312) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1638. CFrame.new(0.574041069, -1.71940637, 0.364966094, 0.988550007, -0.0436736047, -0.144435555, 0.130200043, 0.730692983, 0.67017597, 0.0762690306, -0.681308031, 0.7280128) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1639. CFrame.new(-0.737140536, -1.73033857, -0.0957245529, 0.640411794, -0.00933929533, 0.767975152, -0.0868059918, 0.992638648, 0.0844586417, -0.763110518, -0.120753139, 0.634886801) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1640. }, .3, false)
  1641. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-10)), 0.3)
  1642. end
  1643. elseif Torsovelocity > 2 and hit ~= nil then
  1644. Anim = "Walk"
  1645. if attack == false then
  1646. change = 3.5
  1647. PlayAnimationFromTable({
  1648. CFrame.new(0, -0.0223370567, -0.165983588, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872) * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20), math.rad(-3 * math.cos(sine / 10)), 0),
  1649. CFrame.new(0, 1.49999154, -4.32133675e-007, 1, 0, 0, 0, 0.99619478, -0.0871558785, 0, 0.0871558785, 0.99619478) * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(3 * math.cos(sine / 10)), 0),
  1650. CFrame.new(1.34347034, 1.02328479, -0.33295393, 0.952024519, 0.0437923931, -0.302872181, -0.167465881, -0.753811061, -0.635392845, -0.256133795, 0.65563035, -0.710312903) * CFrame.new(0, 0, -.3) * CFrame.Angles(math.rad(20), 0, 0),
  1651. CFrame.new(-1.58242321, 0.297260404, 0.384855121, 0.837201297, 0.488875121, 0.245142967, -0.533269644, 0.630305767, 0.564214647, 0.121315509, -0.603088558, 0.788395166) * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(3 * math.cos(sine / 10)), math.rad(3 + 1 * math.cos(sine / 10))),
  1652. CFrame.new(.5, -1.85 - 0.5 * math.cos(sine / 8) / 2, 0 + 2 * math.sin(sine / 8) / 2) * angles(math.rad(-80 * math.sin(sine / 8)), math.rad(-5), math.rad(0)),
  1653. CFrame.new(-.5, -1.85 + 0.5 * math.cos(sine / 8) / 2, 0 - 2 * math.sin(sine / 8) / 2) * angles(math.rad(80 * math.sin(sine / 8)), math.rad(5), math.rad(0)),
  1654. }, .3, false)
  1655. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(-.3, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-75)), 0.3)
  1656. end
  1657. end
  1658. end
  1659. if #Effects > 0 then
  1660. for e = 1, #Effects do
  1661. if Effects[e] ~= nil then
  1662. local Thing = Effects[e]
  1663. if Thing ~= nil then
  1664. local Part = Thing[1]
  1665. local Mode = Thing[2]
  1666. local Delay = Thing[3]
  1667. local IncX = Thing[4]
  1668. local IncY = Thing[5]
  1669. local IncZ = Thing[6]
  1670. if Thing[1].Transparency <= 1 then
  1671. if Thing[2] == "Block1" then
  1672. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1673. Mesh = Thing[1].Mesh
  1674. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1675. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1676. elseif Thing[2] == "Block2" then
  1677. Thing[1].CFrame = Thing[1].CFrame
  1678. Mesh = Thing[7]
  1679. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1680. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1681. elseif Thing[2] == "Cylinder" then
  1682. Mesh = Thing[1].Mesh
  1683. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1684. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1685. elseif Thing[2] == "Blood" then
  1686. Mesh = Thing[7]
  1687. Thing[1].CFrame = Thing[1].CFrame * Vector3.new(0, .5, 0)
  1688. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1689. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1690. elseif Thing[2] == "Elec" then
  1691. Mesh = Thing[1].Mesh
  1692. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  1693. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1694. elseif Thing[2] == "Disappear" then
  1695. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1696. elseif Thing[2] == "Shatter" then
  1697. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1698. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  1699. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  1700. Thing[6] = Thing[6] + Thing[5]
  1701. end
  1702. else
  1703. Part.Parent = nil
  1704. table.remove(Effects, e)
  1705. end
  1706. end
  1707. end
  1708. end
  1709. end
  1710. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement