Advertisement
Guest User

asd

a guest
Jan 18th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 225.08 KB | None | 0 0
  1. --unfinished piece of crap that i never finished
  2. --its pretty cancerous and stupid
  3. --also lazily made
  4.  
  5. --[[When_kun]]--
  6. wait(1 / 60)
  7. Effects = { }
  8. local Player = game.Players.localPlayer
  9. local Character = Player.Character
  10. local Humanoid = Character.Humanoid
  11. local Mouse = Player:GetMouse()
  12. local mouse = Mouse
  13. local LeftArm = Character["Left Arm"]
  14. local RightArm = Character["Right Arm"]
  15. local LeftLeg = Character["Left Leg"]
  16. local RightLeg = Character["Right Leg"]
  17. local Head = Character.Head
  18. local Torso = Character.Torso
  19. local Camera = game.Workspace.CurrentCamera
  20. local RootPart = Character.HumanoidRootPart
  21. local RootJoint = RootPart.RootJoint
  22. local attack = false
  23. local Anim = 'Idle'
  24. local attacktype = 1
  25. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  26. local velocity = RootPart.Velocity.y
  27. local sine = 0
  28. local change = 1
  29. local angles = CFrame.Angles
  30. local Create = LoadLibrary("RbxUtility").Create
  31.  
  32. renderstepped = game:GetService('RunService').RenderStepped
  33. userinput = game:GetService('UserInputService')
  34. mainmodel = Instance.new('Model',Character)
  35. mainchord = 5
  36.  
  37. children = mainmodel:GetChildren()
  38. my = 0
  39. function rot()
  40. for i,v in pairs(children) do
  41. -- v.Size = Vector3.new(mainchord/5,mainchord/5,mainchord/5)
  42. v.CFrame = v.CFrame*CFrame.Angles(math.rad(1),math.rad(1),math.rad(2))
  43. end
  44. end
  45. function rotA()
  46. while renderstepped:wait() do
  47. spawn(rot)
  48. my = my + 1.5
  49. if my > 360 then
  50. my = 0
  51. end
  52. end
  53. end
  54. spawn(rotA)
  55.  
  56. function lerp(dist,inc)
  57. for i = 0,10 do
  58. renderstepped:wait()
  59. for x,v in pairs(children) do
  60. --lookvector
  61. --( centerPoint.Y + distance * Math.Sin( angle ) )
  62. --diff rot is 90
  63. v.Size = v.Size + Vector3.new(.1/(dist/math.abs(dist)),.1/(dist/math.abs(dist)),.1/(dist/math.abs(dist)))
  64. v.Transparency = v.Transparency - .1/(dist/math.abs(dist))
  65. v.CFrame = CFrame.new(v.Position)*CFrame.Angles(0,math.rad(90*x+my),0)*CFrame.new(dist/10,0,0)
  66. end
  67. end
  68. end
  69.  
  70. local hello = Instance.new("Sound")
  71. hello.SoundId = "rbxassetid://538496845"
  72. hello.PlaybackSpeed = 1
  73. hello.Volume = 2
  74. hello.Parent = Head
  75. hello.Looped = true
  76. hello:Play()
  77.  
  78. local m = Create("Model"){
  79. Parent = Character,
  80. Name = "WeaponModel",
  81. }
  82.  
  83. Humanoid.Animator.Parent = nil
  84. Character.Animate.Parent = nil
  85.  
  86. local newMotor = function(part0, part1, c0, c1)
  87. local w = Create('Motor'){
  88. Parent = part0,
  89. Part0 = part0,
  90. Part1 = part1,
  91. C0 = c0,
  92. C1 = c1,
  93. }
  94. return w
  95. end
  96.  
  97. function clerp(a, b, t)
  98. return a:lerp(b, t)
  99. end
  100.  
  101. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  102. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  103.  
  104. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  105. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  106. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  107. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  108. RootJoint.C1 = CFrame.new(0, 0, 0)
  109. RootJoint.C0 = CFrame.new(0, 0, 0)
  110. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  111. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  112.  
  113. local rarmc1 = RW.C1
  114. local larmc1 = LW.C1
  115. local rlegc1 = RH.C1
  116. local llegc1 = LH.C1
  117.  
  118. local resetc1 = false
  119.  
  120. function PlayAnimationFromTable(table, speed, bool)
  121. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  122. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  123. RW.C0 = clerp(RW.C0, table[3], speed)
  124. LW.C0 = clerp(LW.C0, table[4], speed)
  125. RH.C0 = clerp(RH.C0, table[5], speed)
  126. LH.C0 = clerp(LH.C0, table[6], speed)
  127. if bool == true then
  128. if resetc1 == false then
  129. resetc1 = true
  130. RootJoint.C1 = RootJoint.C1
  131. Torso.Neck.C1 = Torso.Neck.C1
  132. RW.C1 = rarmc1
  133. LW.C1 = larmc1
  134. RH.C1 = rlegc1
  135. LH.C1 = llegc1
  136. end
  137. end
  138. end
  139.  
  140. ArtificialHB = Create("BindableEvent", script){
  141. Parent = script,
  142. Name = "Heartbeat",
  143. }
  144.  
  145. script:WaitForChild("Heartbeat")
  146.  
  147. frame = 1 / 30
  148. tf = 0
  149. allowframeloss = false
  150. tossremainder = false
  151. lastframe = tick()
  152. script.Heartbeat:Fire()
  153.  
  154. game:GetService("RunService").Heartbeat:connect(function(s, p)
  155. tf = tf + s
  156. if tf >= frame then
  157. if allowframeloss then
  158. script.Heartbeat:Fire()
  159. lastframe = tick()
  160. else
  161. for i = 1, math.floor(tf / frame) do
  162. script.Heartbeat:Fire()
  163. end
  164. lastframe = tick()
  165. end
  166. if tossremainder then
  167. tf = 0
  168. else
  169. tf = tf - frame * math.floor(tf / frame)
  170. end
  171. end
  172. end)
  173.  
  174. function swait(num)
  175. if num == 0 or num == nil then
  176. ArtificialHB.Event:wait()
  177. else
  178. for i = 0, num do
  179. ArtificialHB.Event:wait()
  180. end
  181. end
  182. end
  183.  
  184. function RemoveOutlines(part)
  185. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  186. end
  187.  
  188. CFuncs = {
  189. Part = {
  190. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  191. local Part = Create("Part"){
  192. Parent = Parent,
  193. Reflectance = Reflectance,
  194. Transparency = Transparency,
  195. CanCollide = false,
  196. Locked = true,
  197. BrickColor = BrickColor.new(tostring(BColor)),
  198. Name = Name,
  199. Size = Size,
  200. Material = Material,
  201. }
  202. RemoveOutlines(Part)
  203. return Part
  204. end;
  205. };
  206.  
  207. Mesh = {
  208. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  209. local Msh = Create(Mesh){
  210. Parent = Part,
  211. Offset = OffSet,
  212. Scale = Scale,
  213. }
  214. if Mesh == "SpecialMesh" then
  215. Msh.MeshType = MeshType
  216. Msh.MeshId = MeshId
  217. end
  218. return Msh
  219. end;
  220. };
  221.  
  222. Weld = {
  223. Create = function(Parent, Part0, Part1, C0, C1)
  224. local Weld = Create("Weld"){
  225. Parent = Parent,
  226. Part0 = Part0,
  227. Part1 = Part1,
  228. C0 = C0,
  229. C1 = C1,
  230. }
  231. return Weld
  232. end;
  233. };
  234.  
  235. Sound = {
  236. Create = function(id, par, vol, pit)
  237. coroutine.resume(coroutine.create(function()
  238. local Sound = Create("Sound"){
  239. Volume = vol,
  240. Pitch = pit or 1,
  241. SoundId = "rbxassetid://" .. id,
  242. Parent = par or workspace,
  243. }
  244. Sound:play()
  245. game:GetService("Debris"):AddItem(Sound, 10)
  246. end))
  247. end;
  248. };
  249.  
  250. Decal = {
  251. Create = function(Color, Texture, Transparency, Name, Parent)
  252. local Decal = Create("Decal"){
  253. Color3 = Color,
  254. Texture = "rbxassetid://" .. Texture,
  255. Transparency = Transparency,
  256. Name = Name,
  257. Parent = Parent,
  258. }
  259. return Decal
  260. end;
  261. };
  262.  
  263. BillboardGui = {
  264. Create = function(Parent, Image, Position, Size)
  265. local BillPar = CFuncs.Part.Create(Parent, "Neon", 0, 1, BrickColor.new("institutional white"), "BillboardGuiPart", Vector3.new(1, 1, 1))
  266. BillPar.CFrame = CFrame.new(Position)
  267. local Bill = Create("BillboardGui"){
  268. Parent = BillPar,
  269. Adornee = BillPar,
  270. Size = UDim2.new(1, 0, 1, 0),
  271. SizeOffset = Vector2.new(Size, Size),
  272. }
  273. local d = Create("ImageLabel", Bill){
  274. Parent = Bill,
  275. BackgroundTransparency = 1,
  276. Size = UDim2.new(1, 0, 1, 0),
  277. Image = "rbxassetid://" .. Image,
  278. }
  279. return BillPar
  280. end
  281. };
  282.  
  283. ParticleEmitter = {
  284. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  285. local Particle = Create("ParticleEmitter"){
  286. Parent = Parent,
  287. Color = ColorSequence.new(Color1, Color2),
  288. LightEmission = LightEmission,
  289. Size = Size,
  290. Texture = Texture,
  291. Transparency = Transparency,
  292. ZOffset = ZOffset,
  293. Acceleration = Accel,
  294. Drag = Drag,
  295. LockedToPart = LockedToPart,
  296. VelocityInheritance = VelocityInheritance,
  297. EmissionDirection = EmissionDirection,
  298. Enabled = Enabled,
  299. Lifetime = LifeTime,
  300. Rate = Rate,
  301. Rotation = Rotation,
  302. RotSpeed = RotSpeed,
  303. Speed = Speed,
  304. VelocitySpread = VelocitySpread,
  305. }
  306. return Particle
  307. end;
  308. };
  309.  
  310. CreateTemplate = {
  311.  
  312. };
  313. }
  314.  
  315. function rayCast(Position, Direction, Range, Ignore)
  316. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  317. end
  318.  
  319. function FindNearestTorso(pos)
  320. local list = (game.Workspace:children())
  321. local torso = nil
  322. local dist = 1000
  323. local temp, human, temp2 = nil, nil, nil
  324. for x = 1, #list do
  325. temp2 = list[x]
  326. if temp2.className == "Model" and temp2.Name ~= Character.Name then
  327. temp = temp2:findFirstChild("Torso")
  328. human = temp2:findFirstChild("Humanoid")
  329. if temp ~= nil and human ~= nil and human.Health > 0 and (temp.Position - pos).magnitude < dist then
  330. local dohit = true
  331. if dohit == true then
  332. torso = temp
  333. dist = (temp.Position - pos).magnitude
  334. end
  335. end
  336. end
  337. end
  338. return torso, dist
  339. end
  340.  
  341. local BladeHitSounds = {
  342. "199149137",
  343. "199149186",
  344. "199149221",
  345. "199149235",
  346. "199149269",
  347. "199149297"
  348. }
  349.  
  350. local FistHitSounds = {
  351. "199149137",
  352. "199149186",
  353. "199149221",
  354. "199149235",
  355. "199149269",
  356. "199149297"
  357. }
  358.  
  359. --[[
  360. Thanks for using Build-To-Lua by jarredbcv.
  361. ]]--
  362.  
  363. New = function(Object, Parent, Name, Data)
  364. local Object = Instance.new(Object)
  365. for Index, Value in pairs(Data or {}) do
  366. Object[Index] = Value
  367. end
  368. Object.Parent = Parent
  369. Object.Name = Name
  370. return Object
  371. end
  372.  
  373. Shadowblade = New("Model",Character,"Shadowblade",{})
  374. Handle = New("Part",Shadowblade,"Handle",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.64999986, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6245079, 4.29239702, -89.4332352, 3.60083504e-05, 1, -8.54020345e-06, 1, -3.60083504e-05, 7.14756754e-10, 4.07238132e-10, -8.54020345e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  375. moter = New("Weld",Handle,"Weld",{Part0 = RightArm,Part1 = Handle,})
  376. Wedge = New("WedgePart",Shadowblade,"Wedge",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(0.499999911, 0.24999997, 0.0999999791),CFrame = CFrame.new(-43.7305641, -2.62561941, -89.4332352, 4.26961333e-06, -3.60083504e-05, 1, 1.29065025e-09, -1, -3.60083504e-05, 1, 1.44439205e-09, -4.26961333e-06),CanCollide = false,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  377. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 4.26961333e-06, 1.29065025e-09, 1, -3.60083504e-05, -1, 1.44439205e-09, 1, -3.60083504e-05, -4.26961333e-06),C1 = CFrame.new(-6.91802025, -0.105808258, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  378. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.342049718, -0.939681828, -8.54020436e-06, -0.939681888, 0.342049688, 7.1401085e-10, 2.92050368e-06, 8.0253194e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  379. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.342049718, -0.939681888, 2.92050368e-06, -0.939681828, 0.342049688, 8.0253194e-06, -8.54020436e-06, 7.1401085e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  380. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -3.60083504e-05, -1, -8.54020345e-06, -1, 3.60083504e-05, 7.14756698e-10, -4.0723816e-10, 8.54020345e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  381. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -3.60083504e-05, -1, -4.07238132e-10, -1, 3.60083504e-05, 8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  382. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.573605597, -0.819131672, -8.54020254e-06, -0.819131613, 0.573605657, 7.23967442e-10, 4.89811464e-06, 6.99596603e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  383. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.573605597, -0.819131613, 4.89811509e-06, -0.819131672, 0.573605657, 6.99596603e-06, -8.54020254e-06, 7.23967442e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  384. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(0.249999851, 0.0500000007, 0.50000006),CFrame = CFrame.new(-43.6555481, -2.62561369, -89.4332352, 3.9197188e-05, -1, 8.54019709e-06, 1, 3.9197188e-05, -7.14479587e-10, 3.79727888e-10, 8.54019709e-06, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  385. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 3.9197188e-05, 1, 3.79727888e-10, -1, 3.9197188e-05, 8.54019709e-06, 8.54019709e-06, -7.14479587e-10, 1),C1 = CFrame.new(-6.91801167, -0.0307922363, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  386. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.984802902, 0.173675627, -8.54020072e-06, 0.173675612, -0.984802902, 7.19298621e-10, -8.41029032e-06, -1.48393315e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  387. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.984802902, 0.173675612, -8.41029032e-06, 0.173675627, -0.984802902, -1.48393315e-06, -8.54020072e-06, 7.19298621e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  388. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.642812192, 0.766023934, -8.54020254e-06, 0.766023934, -0.642812133, 7.17424231e-10, -5.48919661e-06, -6.5424606e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  389. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.642812192, 0.766023934, -5.48919661e-06, 0.766023934, -0.642812133, -6.5424606e-06, -8.54020254e-06, 7.17424231e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  390. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 3.60083504e-05, 1, -8.54020345e-06, 1, -3.60083504e-05, 7.14756698e-10, 4.0723816e-10, -8.54020345e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  391. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  392. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.341999233, 0.939700305, -8.54020345e-06, 0.939700246, 0.341999233, 7.14790005e-10, 2.92141453e-06, -8.02498744e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  393. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.341999233, 0.939700246, 2.92141476e-06, 0.939700305, 0.341999233, -8.02498744e-06, -8.54020345e-06, 7.14790005e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  394. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.939681232, 0.342051387, -8.54020345e-06, 0.342051327, -0.939681351, 7.09700188e-10, -8.02482646e-06, -2.92185518e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  395. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.939681232, 0.342051327, -8.02482646e-06, 0.342051387, -0.939681351, -2.92185541e-06, -8.54020345e-06, 7.09700243e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  396. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 1, 4.99189482e-05, -8.54020527e-06, 4.99189482e-05, -1, 7.17309379e-10, -8.54020527e-06, -1.14362753e-09, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  397. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1, 4.99189446e-05, -8.54020527e-06, 4.99189446e-05, -1, -1.14362741e-09, -8.54020527e-06, 7.17309379e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  398. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.087101832, 0.996199489, -8.54020072e-06, 0.996199489, 0.087101832, 7.1335815e-10, 7.44577846e-07, -8.50768083e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  399. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.087101832, 0.996199489, 7.4457779e-07, 0.996199489, 0.087101832, -8.50768174e-06, -8.54020072e-06, 7.1335815e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  400. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.0872129425, 0.996189713, -8.54021528e-06, 0.996189713, -0.0872129425, 7.10597747e-10, -7.441094e-07, -8.50773631e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  401. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0872129425, 0.996189713, -7.441094e-07, 0.996189713, -0.0872129425, -8.50773631e-06, -8.54021528e-06, 7.10597747e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  402. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.707118988, 0.70709455, -8.54020163e-06, 0.707094669, -0.707118928, 7.13462067e-10, -6.03843409e-06, -6.03923445e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  403. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.707118988, 0.707094669, -6.03843409e-06, 0.70709455, -0.707118928, -6.03923445e-06, -8.54020163e-06, 7.13462067e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  404. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.173601389, 0.984816015, -8.54020254e-06, 0.984816015, 0.173601389, 7.20115467e-10, 1.48330025e-06, -8.4104031e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  405. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.173601389, 0.984816015, 1.48330025e-06, 0.984816015, 0.173601389, -8.41040401e-06, -8.54020254e-06, 7.20115467e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  406. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.819168866, 0.573552489, -8.54020163e-06, 0.573552489, 0.819168925, 7.2065881e-10, 6.99628072e-06, -4.89766308e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  407. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.819168866, 0.573552489, 6.99628072e-06, 0.573552489, 0.819168925, -4.89766353e-06, -8.54020163e-06, 7.2065881e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  408. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.258873224, 0.965911388, -8.54019436e-06, 0.965911388, -0.258873194, 7.15348003e-10, -2.2101367e-06, -8.2492561e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  409. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.258873224, 0.965911388, -2.2101367e-06, 0.965911388, -0.258873194, -8.2492561e-06, -8.54019436e-06, 7.15348003e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  410. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.341982543, 0.939706326, -8.54020891e-06, 0.939706326, 0.341982573, 7.13820558e-10, 2.92127288e-06, -8.02504383e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  411. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.341982543, 0.939706326, 2.92127311e-06, 0.939706326, 0.341982573, -8.02504383e-06, -8.54020891e-06, 7.13820558e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  412. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.573574483, 0.819153428, -8.54020436e-06, 0.819153368, 0.573574483, 7.20779159e-10, 4.89903414e-06, -6.99532438e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  413. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.573574483, 0.819153368, 4.89903414e-06, 0.819153428, 0.573574483, -6.99532438e-06, -8.54020436e-06, 7.20779159e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  414. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.173701212, 0.984798372, -8.54019527e-06, 0.984798372, -0.173701227, 7.17901849e-10, -1.48273512e-06, -8.41049496e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  415. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.173701212, 0.984798372, -1.48273523e-06, 0.984798372, -0.173701227, -8.41049496e-06, -8.54019527e-06, 7.17901849e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  416. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.422589809, 0.906321108, -8.54020254e-06, 0.906321108, 0.422589839, 7.18486048e-10, 3.60965373e-06, -7.73986358e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  417. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.422589809, 0.906321108, 3.60965373e-06, 0.906321108, 0.422589839, -7.73986267e-06, -8.54020254e-06, 7.18486048e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  418. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.707105577, 0.707108021, -8.54019981e-06, 0.70710808, 0.707105577, 7.12421844e-10, 6.03932676e-06, -6.03834042e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  419. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.707105577, 0.70710808, 6.03932676e-06, 0.707108021, 0.707105577, -6.03834042e-06, -8.54019981e-06, 7.12421844e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  420. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.642775774, 0.766054332, -8.54019891e-06, 0.766054332, 0.642775834, 7.14757808e-10, 5.48998059e-06, -6.54179621e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  421. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.642775774, 0.766054332, 5.48998059e-06, 0.766054332, 0.642775834, -6.54179667e-06, -8.54019891e-06, 7.14757808e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  422. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.90630281, 0.422628909, -8.54020709e-06, 0.422628909, -0.90630281, 7.20612348e-10, -7.73970987e-06, -3.60999138e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  423. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.90630281, 0.422628909, -7.73970896e-06, 0.422628909, -0.90630281, -3.60999138e-06, -8.54020709e-06, 7.20612348e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  424. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.299999952, 1, 0.699999988),CFrame = CFrame.new(-43.6245308, 3.41728067, -89.4332352, 3.60083504e-05, 1, -8.54020345e-06, 1, -3.60083504e-05, 7.14756698e-10, 4.0723816e-10, -8.54020345e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  425. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),C1 = CFrame.new(-0.875116348, 7.62939453e-06, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  426. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.422597468, -0.906317472, -8.54020072e-06, -0.906317472, -0.422597528, 7.11372017e-10, -3.60971171e-06, 7.73983174e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  427. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.422597468, -0.906317472, -3.60971171e-06, -0.906317472, -0.422597528, 7.73983174e-06, -8.54020072e-06, 7.11372017e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  428. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.707111061, -0.707102478, -8.54020709e-06, -0.707102478, -0.70711112, 7.15879134e-10, -6.03938133e-06, 6.03829585e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  429. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.707111061, -0.707102478, -6.03938133e-06, -0.707102478, -0.70711112, 6.0382954e-06, -8.54020709e-06, 7.15879134e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  430. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.173598364, -0.984816492, -8.54019345e-06, -0.984816551, -0.173598349, 7.18816118e-10, -1.4832716e-06, 8.41039764e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  431. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.173598364, -0.984816551, -1.4832716e-06, -0.984816492, -0.173598349, 8.41039855e-06, -8.54019345e-06, 7.18816118e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  432. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.573563099, -0.819161415, -8.54020527e-06, -0.819161475, -0.573563039, 7.15766002e-10, -4.89893318e-06, 6.99539623e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  433. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.573563099, -0.819161475, -4.89893318e-06, -0.819161415, -0.573563039, 6.99539623e-06, -8.54020527e-06, 7.15766002e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  434. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.258777231, -0.965937078, -8.54020254e-06, -0.965937078, -0.258777201, 7.20944693e-10, -2.2107065e-06, 8.24911149e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  435. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.258777231, -0.965937078, -2.2107065e-06, -0.965937078, -0.258777201, 8.24911149e-06, -8.54020254e-06, 7.20944693e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  436. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.906303108, -0.422628373, -8.54020982e-06, -0.422628373, 0.906303167, 7.19375282e-10, 7.73971442e-06, 3.60998683e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  437. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.906303108, -0.422628373, 7.73971442e-06, -0.422628373, 0.906303167, 3.60998683e-06, -8.54020982e-06, 7.19375282e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  438. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.342065871, -0.939675987, -8.54020436e-06, -0.939675927, 0.342065901, 7.14053094e-10, 2.92064146e-06, 8.02526938e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  439. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.342065871, -0.939675927, 2.92064146e-06, -0.939675987, 0.342065901, 8.02526938e-06, -8.54020436e-06, 7.14053094e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  440. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -5.3085023e-05, -1, -8.54019981e-06, -1, 5.3085023e-05, 7.14205306e-10, -2.6084862e-10, 8.54019981e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  441. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -5.3085023e-05, -1, -2.60848593e-10, -1, 5.3085023e-05, 8.54019981e-06, -8.54019981e-06, 7.14205306e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  442. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.422660828, -0.906288028, -8.540208e-06, -0.906287968, 0.422660828, 7.18868909e-10, 3.60896024e-06, 7.7401919e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  443. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.422660828, -0.906287968, 3.60896001e-06, -0.906288028, 0.422660828, 7.74019281e-06, -8.540208e-06, 7.18868964e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  444. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.173608616, -0.984814703, -8.54019891e-06, -0.984814703, -0.173608616, 7.16382953e-10, -1.48335766e-06, 8.41038855e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  445. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.173608616, -0.984814703, -1.48335766e-06, -0.984814703, -0.173608616, 8.41038946e-06, -8.54019891e-06, 7.16382953e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  446. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.173683509, -0.984801531, -8.54020527e-06, -0.98480159, 0.173683479, 7.16934789e-10, 1.48258675e-06, 8.41053225e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  447. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.173683509, -0.98480159, 1.48258675e-06, -0.984801531, 0.173683479, 8.41053225e-06, -8.54020527e-06, 7.16934789e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  448. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.939687908, -0.342033058, -8.54020163e-06, -0.342033058, 0.939687908, 7.19861615e-10, 8.02487739e-06, 2.92170762e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  449. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.939687908, -0.342033058, 8.02487739e-06, -0.342033058, 0.939687908, 2.92170762e-06, -8.54020163e-06, 7.19861615e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  450. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.258871645, -0.965911746, -8.54019527e-06, -0.965911686, 0.258871645, 7.13617554e-10, 2.2101251e-06, 8.24926065e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  451. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.258871645, -0.965911686, 2.2101251e-06, -0.965911746, 0.258871645, 8.24925974e-06, -8.54019527e-06, 7.13617554e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  452. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.766054034, -0.642776251, -8.540198e-06, -0.642776251, 0.766053975, 7.20270676e-10, 6.54178984e-06, 5.48998833e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  453. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.766054034, -0.642776251, 6.54178984e-06, -0.642776251, 0.766053975, 5.48998833e-06, -8.540198e-06, 7.20270732e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  454. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.500032842, -0.866006494, -8.54019891e-06, -0.866006494, 0.500032842, 7.12532644e-10, 4.26976248e-06, 7.39622419e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  455. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.500032842, -0.866006494, 4.26976294e-06, -0.866006494, 0.500032842, 7.39622419e-06, -8.54019891e-06, 7.12532644e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  456. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.573589027, -0.819143355, -8.54020254e-06, -0.819143295, 0.573589027, 7.15825565e-10, 4.89798003e-06, 6.99606062e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  457. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.573589027, -0.819143236, 4.89798003e-06, -0.819143295, 0.573589027, 6.99606062e-06, -8.54020254e-06, 7.15825565e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  458. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.17370002, -0.98479867, -8.540198e-06, -0.98479867, 0.17370002, 7.15699111e-10, 1.48272761e-06, 8.4104995e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  459. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.17370002, -0.98479867, 1.48272773e-06, -0.98479867, 0.17370002, 8.41050041e-06, -8.540198e-06, 7.15699167e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  460. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.819144547, -0.573587239, -8.54020163e-06, -0.573587179, 0.819144547, 7.16383786e-10, 6.99524844e-06, 4.89913782e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  461. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.819144547, -0.573587179, 6.99524844e-06, -0.573587239, 0.819144547, 4.89913782e-06, -8.54020163e-06, 7.16383786e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  462. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.707120001, -0.707093537, -8.54019618e-06, -0.707093477, 0.707120001, 7.16046666e-10, 6.03843773e-06, 6.03922399e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  463. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.707120001, -0.707093477, 6.03843773e-06, -0.707093537, 0.707120001, 6.03922399e-06, -8.54019618e-06, 7.16046666e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  464. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.499977469, -0.866038442, -8.54019891e-06, -0.866038501, -0.49997741, 7.16920856e-10, -4.27052828e-06, 7.39578218e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  465. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.499977469, -0.866038501, -4.27052828e-06, -0.866038442, -0.49997741, 7.39578218e-06, -8.54019891e-06, 7.16920856e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  466. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.0872129425, -0.996189713, -8.54021528e-06, -0.996189713, 0.0872129425, 7.10597747e-10, 7.441094e-07, 8.50773631e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  467. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0872129425, -0.996189713, 7.441094e-07, -0.996189713, 0.0872129425, 8.50773631e-06, -8.54021528e-06, 7.10597747e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  468. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 1, 4.18127311e-05, -8.54020345e-06, 4.18127311e-05, -1, 7.15938198e-10, -8.54020345e-06, -1.07302744e-09, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  469. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1, 4.18127311e-05, -8.54020345e-06, 4.18127311e-05, -1, -1.07302744e-09, -8.54020345e-06, 7.15938253e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  470. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.939705133, -0.341985613, -8.54020618e-06, -0.341985613, -0.939705193, 7.1579076e-10, -8.0255204e-06, 2.91995525e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  471. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.939705133, -0.341985613, -8.0255204e-06, -0.341985613, -0.939705193, 2.91995502e-06, -8.54020618e-06, 7.1579076e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  472. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.819158018, -0.573568046, -8.54020345e-06, -0.573568046, -0.819158018, 7.18373583e-10, -6.9961884e-06, 4.8977995e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  473. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.819157958, -0.573568046, -6.99618795e-06, -0.573568046, -0.819157958, 4.8977995e-06, -8.54020345e-06, 7.18373583e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  474. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.173683509, 0.984801531, -8.54020527e-06, 0.98480159, -0.173683479, 7.16934789e-10, -1.48258675e-06, -8.41053225e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  475. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.173683509, 0.98480159, -1.48258675e-06, 0.984801531, -0.173683479, -8.41053225e-06, -8.54020527e-06, 7.16934789e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  476. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.939688981, 0.342030346, -8.54020163e-06, 0.342030376, -0.939688921, 7.11010029e-10, -8.02489012e-06, -2.92167601e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  477. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.939688981, 0.342030376, -8.02489012e-06, 0.342030346, -0.939688921, -2.92167601e-06, -8.54020163e-06, 7.11010029e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  478. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.573589027, 0.819143355, -8.54020254e-06, 0.819143295, -0.573589027, 7.15825565e-10, -4.89798003e-06, -6.99606062e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  479. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.573589027, 0.819143236, -4.89798003e-06, 0.819143295, -0.573589027, -6.99606062e-06, -8.54020254e-06, 7.15825565e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  480. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.819145143, 0.573586404, -8.54020345e-06, 0.573586404, -0.819145143, 7.14021731e-10, -6.99525617e-06, -4.89912964e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  481. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.819145143, 0.573586404, -6.99525663e-06, 0.573586404, -0.819145143, -4.89912918e-06, -8.54020345e-06, 7.14021786e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  482. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, -0.173616648, 0.984813333, -8.540198e-06, 0.984813333, 0.173616648, 7.2068379e-10, 1.48343042e-06, -8.41037672e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  483. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.173616648, 0.984813333, 1.48343042e-06, 0.984813333, 0.173616648, -8.41037672e-06, -8.540198e-06, 7.20683846e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  484. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.866034269, -0.499984682, -8.540198e-06, -0.499984682, -0.866034269, 7.16141035e-10, -7.39646248e-06, 4.26934776e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  485. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.866034269, -0.499984682, -7.39646248e-06, -0.499984682, -0.866034269, 4.26934776e-06, -8.540198e-06, 7.16141091e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  486. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.819153309, 0.573574722, -8.540198e-06, 0.573574662, -0.819153309, 7.10246861e-10, -6.99532438e-06, -4.89902368e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  487. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.819153309, 0.573574662, -6.99532438e-06, 0.573574722, -0.819153309, -4.89902368e-06, -8.540198e-06, 7.10246917e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  488. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.965932667, -0.258793622, -8.54019618e-06, -0.258793652, -0.965932608, 7.12363557e-10, -8.24943891e-06, 2.20946026e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  489. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.965932667, -0.258793652, -8.24943891e-06, -0.258793622, -0.965932608, 2.20946026e-06, -8.54019618e-06, 7.12363557e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  490. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.422642499, 0.906296551, -8.54020709e-06, 0.906296432, -0.422642529, 7.10565107e-10, -3.6088104e-06, -7.74025921e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  491. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.422642499, 0.906296432, -3.6088104e-06, 0.906296551, -0.422642529, -7.74026012e-06, -8.54020709e-06, 7.10565107e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  492. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.573602021, 0.819134176, -8.54020345e-06, 0.819134235, -0.573602021, 7.15220771e-10, -4.89809145e-06, -6.99598286e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  493. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.573602021, 0.819134235, -4.8980919e-06, 0.819134176, -0.573602021, -6.99598286e-06, -8.54020345e-06, 7.15220827e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  494. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.996192634, 0.0871793702, -8.540198e-06, 0.0871793628, -0.996192634, 7.19417248e-10, -8.50761899e-06, -7.45245757e-07, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  495. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.996192634, 0.0871793628, -8.50761899e-06, 0.0871793702, -0.996192634, -7.45245757e-07, -8.540198e-06, 7.19417304e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  496. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.707108796, 0.707104802, -8.54020163e-06, 0.707104802, -0.707108736, 7.17516491e-10, -6.03834405e-06, -6.03932449e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  497. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.707108796, 0.707104802, -6.03834405e-06, 0.707104802, -0.707108736, -6.03932449e-06, -8.54020163e-06, 7.17516491e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  498. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.984813571, -0.173615396, -8.54020072e-06, -0.173615396, -0.984813571, 7.15485671e-10, -8.41062956e-06, 1.4820057e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  499. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.984813571, -0.173615396, -8.41062956e-06, -0.173615396, -0.984813571, 1.4820057e-06, -8.54020072e-06, 7.15485671e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  500. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.766055346, 0.642774642, -8.54020254e-06, 0.642774701, -0.766055346, 7.19349913e-10, -6.54180485e-06, -5.48997696e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  501. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.766055346, 0.642774701, -6.54180531e-06, 0.642774642, -0.766055346, -5.48997696e-06, -8.54020254e-06, 7.19349913e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  502. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.866026521, 0.499997973, -8.54019981e-06, 0.499997973, -0.86602658, 7.15005499e-10, -7.39568259e-06, -4.27070199e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  503. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.866026521, 0.499997973, -7.39568259e-06, 0.499997973, -0.86602658, -4.27070199e-06, -8.54019981e-06, 7.15005499e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  504. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.707105577, -0.707108021, -8.54019981e-06, -0.70710808, -0.707105577, 7.12421844e-10, -6.03932676e-06, 6.03834042e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  505. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.707105577, -0.70710808, -6.03932676e-06, -0.707108021, -0.707105577, 6.03834042e-06, -8.54019981e-06, 7.12421844e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  506. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.422589809, -0.906321108, -8.54020254e-06, -0.906321108, -0.422589839, 7.18486048e-10, -3.60965373e-06, 7.73986358e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  507. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.422589809, -0.906321108, -3.60965373e-06, -0.906321108, -0.422589839, 7.73986267e-06, -8.54020254e-06, 7.18486048e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  508. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.573569, -0.819157243, -8.54019981e-06, -0.819157302, -0.57356894, 7.15034476e-10, -4.89897957e-06, 6.99535622e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  509. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.573569, -0.819157302, -4.89897957e-06, -0.819157243, -0.57356894, 6.99535667e-06, -8.54019981e-06, 7.15034476e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  510. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.341982543, -0.939706326, -8.54020891e-06, -0.939706326, -0.341982573, 7.13820558e-10, -2.92127288e-06, 8.02504383e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  511. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.341982543, -0.939706326, -2.92127311e-06, -0.939706326, -0.341982573, 8.02504383e-06, -8.54020891e-06, 7.13820558e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  512. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.642778516, -0.766052127, -8.54020527e-06, -0.766052127, -0.642778516, 7.19372117e-10, -5.49001152e-06, 6.54178029e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  513. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.642778516, -0.766052127, -5.49001152e-06, -0.766052127, -0.642778516, 6.54178029e-06, -8.54020527e-06, 7.19372117e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  514. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495552, 2.69217896, -89.4332352, 0.819164038, -0.573559463, -8.54020072e-06, -0.573559463, -0.819164038, 7.21149807e-10, -6.99623888e-06, 4.89772174e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  515. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.819164038, -0.573559463, -6.99623888e-06, -0.573559463, -0.819164038, 4.89772219e-06, -8.54020072e-06, 7.21149807e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249900818, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  516. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(4.25, 0.600000024, 0.50000006),CFrame = CFrame.new(-43.6804466, 0.474798441, -89.4332428, 3.9197188e-05, -1, 8.54019709e-06, 1, 3.9197188e-05, -7.14479587e-10, 3.79727888e-10, 8.54019709e-06, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  517. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 3.9197188e-05, 1, 3.79727888e-10, -1, 3.9197188e-05, 8.54019709e-06, 8.54019709e-06, -7.14479587e-10, 1),C1 = CFrame.new(-3.81760049, -0.0558013916, 7.62939453e-06, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  518. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.299999952, 1, 0.699999988),CFrame = CFrame.new(-42.1227379, 3.21732187, -89.4332733, 0.939685345, 0.342040122, -8.54019981e-06, 0.342040122, -0.939685285, 7.16790793e-10, -8.02485556e-06, -2.92176446e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  519. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.939685345, 0.342040122, -8.02485556e-06, 0.342040122, -0.939685285, -2.92176446e-06, -8.54019981e-06, 7.16790793e-10, -1),C1 = CFrame.new(-1.07502103, 1.50180817, 2.28881836e-05, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  520. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.965933681, -0.258789867, -8.54019981e-06, -0.258789867, -0.965933681, 7.12348236e-10, -8.24945164e-06, 2.20942889e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  521. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.965933681, -0.258789867, -8.24945073e-06, -0.258789867, -0.965933681, 2.20942889e-06, -8.54019981e-06, 7.12348236e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  522. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(0.449999899, 0.600000024, 0.50000006),CFrame = CFrame.new(-43.6805191, -1.87551451, -89.4332352, 3.9197188e-05, -1, 8.54019709e-06, 1, 3.9197188e-05, -7.14479587e-10, 3.79727888e-10, 8.54019709e-06, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  523. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 3.9197188e-05, 1, 3.79727888e-10, -1, 3.9197188e-05, 8.54019709e-06, 8.54019709e-06, -7.14479587e-10, 1),C1 = CFrame.new(-6.16791344, -0.0557899475, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  524. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(0.449999899, 0.600000024, 0.50000006),CFrame = CFrame.new(-43.6305237, -1.87550831, -89.4332199, 3.9197188e-05, -1, 8.54019709e-06, 1, 3.9197188e-05, -7.14479587e-10, 3.79727888e-10, 8.54019709e-06, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  525. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 3.9197188e-05, 1, 3.79727888e-10, -1, 3.9197188e-05, 8.54019709e-06, 8.54019709e-06, -7.14479587e-10, 1),C1 = CFrame.new(-6.16790533, -0.00579452515, -1.52587891e-05, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  526. Wedge = New("WedgePart",Shadowblade,"Wedge",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(0.499999911, 0.399999976, 0.199999973),CFrame = CFrame.new(-43.8805847, -2.3005743, -89.4332275, 4.26961333e-06, -3.60083504e-05, 1, 1.29065025e-09, -1, -3.60083504e-05, 1, 1.44439205e-09, -4.26961333e-06),CanCollide = false,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  527. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 4.26961333e-06, 1.29065025e-09, 1, -3.60083504e-05, -1, 1.44439205e-09, 1, -3.60083504e-05, -4.26961333e-06),C1 = CFrame.new(-6.59298038, -0.255840302, -7.62939453e-06, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  528. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(0.399999887, 0.25000003, 0.50000006),CFrame = CFrame.new(-43.6555405, -2.3005662, -89.4332352, 3.9197188e-05, -1, 8.54019709e-06, 1, 3.9197188e-05, -7.14479587e-10, 3.79727888e-10, 8.54019709e-06, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  529. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 3.9197188e-05, 1, 3.79727888e-10, -1, 3.9197188e-05, 8.54019709e-06, 8.54019709e-06, -7.14479587e-10, 1),C1 = CFrame.new(-6.59296417, -0.030796051, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  530. Wedge = New("WedgePart",Shadowblade,"Wedge",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(0.499999911, 0.399999976, 0.199999973),CFrame = CFrame.new(-43.4305191, -2.30055332, -89.4332352, -8.53939855e-06, -3.60083504e-05, -1, -1.50551416e-09, -1, 3.60083504e-05, -1, 1.81300364e-09, 8.53939855e-06),CanCollide = false,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  531. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -8.53939855e-06, -1.50551394e-09, -1, -3.60083504e-05, -1, 1.81300364e-09, -1, 3.60083504e-05, 8.53939855e-06),C1 = CFrame.new(-6.59294319, 0.194225311, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  532. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.866013527, -0.500020623, -8.54020436e-06, -0.500020683, 0.866013467, 7.1337064e-10, 7.39557572e-06, 4.27089617e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  533. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.866013527, -0.500020683, 7.39557572e-06, -0.500020623, 0.866013467, 4.27089572e-06, -8.54020436e-06, 7.1337064e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  534. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.642795026, -0.766038239, -8.54020345e-06, -0.766038239, 0.642794967, 7.11336656e-10, 5.48905473e-06, 6.54257974e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  535. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.642795026, -0.766038239, 5.48905518e-06, -0.766038239, 0.642794967, 6.54257929e-06, -8.54020345e-06, 7.11336656e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  536. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.965920389, -0.25883922, -8.54020436e-06, -0.25883922, 0.965920448, 7.13655912e-10, 8.24897234e-06, 2.21122923e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  537. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.965920389, -0.25883922, 8.24897324e-06, -0.25883922, 0.965920448, 2.21122923e-06, -8.54020436e-06, 7.13655912e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  538. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.866034269, -0.499984682, -8.540198e-06, -0.499984682, -0.866034269, 7.16141035e-10, -7.39646248e-06, 4.26934776e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  539. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.866034269, -0.499984682, -7.39646248e-06, -0.499984682, -0.866034269, 4.26934776e-06, -8.540198e-06, 7.16141091e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  540. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.984804153, 0.17366901, -8.54020618e-06, 0.17366901, -0.984804094, 7.16836368e-10, -8.41030487e-06, -1.48387517e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  541. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.984804153, 0.17366901, -8.41030578e-06, 0.17366901, -0.984804094, -1.48387517e-06, -8.54020618e-06, 7.16836368e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  542. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.642795026, 0.766038239, -8.54020345e-06, 0.766038239, -0.642794967, 7.11336656e-10, -5.48905473e-06, -6.54257974e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  543. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.642795026, 0.766038239, -5.48905518e-06, 0.766038239, -0.642794967, -6.54257929e-06, -8.54020345e-06, 7.11336656e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  544. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.342049718, 0.939681828, -8.54020436e-06, 0.939681888, -0.342049688, 7.1401085e-10, -2.92050368e-06, -8.0253194e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  545. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.342049718, 0.939681888, -2.92050368e-06, 0.939681828, -0.342049688, -8.0253194e-06, -8.54020436e-06, 7.1401085e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  546. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.939708054, -0.341977865, -8.54020163e-06, -0.341977894, -0.939708054, 7.11240011e-10, -8.0255395e-06, 2.91989181e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  547. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.939708054, -0.341977894, -8.0255395e-06, -0.341977865, -0.939708054, 2.91989159e-06, -8.54020163e-06, 7.11240011e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  548. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.766058683, -0.642770648, -8.54020527e-06, -0.642770588, -0.766058683, 7.18762994e-10, -6.54276073e-06, 5.48884236e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  549. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.766058683, -0.642770588, -6.54276027e-06, -0.642770648, -0.766058683, 5.48884236e-06, -8.54020527e-06, 7.18762994e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  550. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.573605597, 0.819131672, -8.54020345e-06, 0.819131613, -0.573605657, 7.21288695e-10, -4.89811737e-06, -6.99596512e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  551. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.573605597, 0.819131613, -4.89811782e-06, 0.819131672, -0.573605657, -6.99596512e-06, -8.54020345e-06, 7.21288695e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  552. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.707121372, 0.707092226, -8.54019981e-06, 0.707092285, -0.707121372, 7.15412452e-10, -6.03845183e-06, -6.0392149e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  553. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.707121372, 0.707092285, -6.03845183e-06, 0.707092226, -0.707121372, -6.0392149e-06, -8.54019981e-06, 7.15412452e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  554. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.996191978, 0.0871869028, -8.54020163e-06, 0.0871869028, -0.996191978, 7.13597126e-10, -8.50761899e-06, -7.45304646e-07, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  555. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.996191978, 0.0871869028, -8.50761808e-06, 0.0871869028, -0.996191978, -7.4530459e-07, -8.54020163e-06, 7.13597126e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  556. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.500033319, 0.866006196, -8.54019981e-06, 0.866006136, -0.500033319, 7.08098802e-10, -4.26977067e-06, -7.39621964e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  557. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.500033319, 0.866006136, -4.26977113e-06, 0.866006196, -0.500033319, -7.39621964e-06, -8.54019981e-06, 7.08098802e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  558. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.258792043, 0.965933084, -8.54020618e-06, 0.965933084, 0.258792043, 7.12909232e-10, 2.2108261e-06, -8.24908329e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  559. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.258792043, 0.965933084, 2.2108261e-06, 0.965933084, 0.258792043, -8.24908329e-06, -8.54020618e-06, 7.12909232e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  560. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.819156945, 0.573569477, -8.54020618e-06, 0.573569477, -0.819156945, 7.18377247e-10, -6.99535667e-06, -4.89899003e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  561. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.819156945, 0.573569477, -6.99535667e-06, 0.573569477, -0.819156945, -4.89899003e-06, -8.54020618e-06, 7.18377247e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  562. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.342068017, 0.939675212, -8.54019709e-06, 0.939675272, -0.342067987, 7.1135442e-10, -2.92066011e-06, -8.02525483e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  563. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.342068017, 0.939675272, -2.92065988e-06, 0.939675212, -0.342067987, -8.02525483e-06, -8.54019709e-06, 7.1135442e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  564. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.087192677, 0.996191502, -8.54020618e-06, 0.996191502, -0.087192677, 7.1443601e-10, -7.43931651e-07, -8.50774268e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  565. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.087192677, 0.996191502, -7.43931707e-07, 0.996191502, -0.087192677, -8.50774268e-06, -8.54020618e-06, 7.1443601e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  566. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.766051114, 0.642779648, -8.54020163e-06, 0.642779648, -0.766051114, 7.15007387e-10, -6.5417712e-06, -5.49001561e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  567. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.766051114, 0.642779648, -6.5417712e-06, 0.642779648, -0.766051114, -5.49001561e-06, -8.54020163e-06, 7.15007387e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  568. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.258869141, 0.965912461, -8.54019618e-06, 0.965912461, -0.258869112, 7.13289261e-10, -2.21010441e-06, -8.24926701e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  569. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.258869141, 0.965912461, -2.21010441e-06, 0.965912461, -0.258869112, -8.2492661e-06, -8.54019618e-06, 7.13289261e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  570. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.0871047899, 0.99619925, -8.5401889e-06, 0.996199131, 0.0871048048, 7.15580817e-10, 7.44604222e-07, -8.50766719e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  571. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0871047899, 0.996199131, 7.44604222e-07, 0.99619925, 0.0871048048, -8.5076681e-06, -8.5401889e-06, 7.15580817e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  572. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 5.93509394e-05, 1, -8.54020072e-06, 1, -5.93509394e-05, 7.18409776e-10, 2.11540896e-10, -8.54020072e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  573. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 5.93509394e-05, 1, 2.11540868e-10, 1, -5.93509394e-05, -8.54020072e-06, -8.54020072e-06, 7.18409776e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  574. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.96593374, -0.25878939, -8.54019709e-06, -0.25878939, -0.96593374, 7.15962234e-10, -8.24944982e-06, 2.2094207e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  575. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.96593374, -0.25878939, -8.24944982e-06, -0.25878939, -0.96593374, 2.2094207e-06, -8.54019709e-06, 7.15962234e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  576. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.258852303, -0.965916991, -8.54020345e-06, -0.965916991, 0.258852303, 7.15214776e-10, 2.20996048e-06, 8.2493134e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  577. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.258852303, -0.965916991, 2.20996048e-06, -0.965916991, 0.258852303, 8.2493134e-06, -8.54020345e-06, 7.15214832e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  578. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.0871129259, -0.996198535, -8.54020254e-06, -0.996198535, -0.0871129259, 7.16679216e-10, -7.44676015e-07, 8.50767356e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  579. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0871129259, -0.996198535, -7.44675958e-07, -0.996198535, -0.0871129259, 8.50767447e-06, -8.54020254e-06, 7.16679216e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  580. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.500033319, -0.866006196, -8.54019981e-06, -0.866006136, 0.500033319, 7.08098802e-10, 4.26977067e-06, 7.39621964e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  581. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.500033319, -0.866006136, 4.26977113e-06, -0.866006196, 0.500033319, 7.39621964e-06, -8.54019981e-06, 7.08098802e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  582. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.0872089937, -0.996190071, -8.54020618e-06, -0.996190071, 0.0872089937, 7.14581283e-10, 7.4407086e-07, 8.50772904e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  583. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0872089937, -0.996190071, 7.44070917e-07, -0.996190071, 0.0872089937, 8.50772994e-06, -8.54020618e-06, 7.14581283e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  584. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.422658175, -0.906289101, -8.54019618e-06, -0.90628916, 0.422658175, 7.12744141e-10, 3.60893773e-06, 7.74018736e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  585. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.422658175, -0.90628916, 3.60893773e-06, -0.906289101, 0.422658175, 7.74018827e-06, -8.54019618e-06, 7.12744141e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  586. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.965933323, 0.258791089, -8.54019436e-06, 0.258791089, 0.965933323, 7.11479042e-10, 8.24944254e-06, -2.20943889e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  587. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.965933323, 0.258791089, 8.24944254e-06, 0.258791089, 0.965933323, -2.20943889e-06, -8.54019436e-06, 7.11479042e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  588. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.866023123, -0.500003934, -8.54020072e-06, -0.500003934, 0.866023123, 7.22026272e-10, 7.39564985e-06, 4.27075929e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  589. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.866023123, -0.500003934, 7.39564985e-06, -0.500003934, 0.866023123, 4.27075929e-06, -8.54020072e-06, 7.22026272e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  590. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.642807782, -0.76602757, -8.540198e-06, -0.76602751, 0.642807841, 7.16393167e-10, 5.4891575e-06, 6.54248788e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  591. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.642807782, -0.76602751, 5.4891575e-06, -0.76602757, 0.642807841, 6.54248788e-06, -8.540198e-06, 7.16393223e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  592. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.906303823, -0.422626853, -8.54019618e-06, -0.422626853, 0.906303763, 7.15701665e-10, 7.73970987e-06, 3.60996501e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  593. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.906303823, -0.422626853, 7.73970987e-06, -0.422626853, 0.906303763, 3.60996501e-06, -8.54019618e-06, 7.15701665e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  594. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.500025749, -0.866010547, -8.54020163e-06, -0.866010547, 0.500025749, 7.16215531e-10, 4.26970018e-06, 7.39626239e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  595. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.500025749, -0.866010547, 4.26970064e-06, -0.866010547, 0.500025749, 7.39626239e-06, -8.54020163e-06, 7.16215531e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  596. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.7660411, -0.642791688, -8.54019436e-06, -0.642791688, 0.7660411, 7.10162595e-10, 6.54168389e-06, 5.4901102e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  597. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.7660411, -0.642791688, 6.54168389e-06, -0.642791688, 0.7660411, 5.4901102e-06, -8.54019436e-06, 7.10162595e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  598. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.939700961, 0.341997296, -8.54020709e-06, 0.341997296, 0.939701021, 7.12970516e-10, 8.02548402e-06, -2.9200578e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  599. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.939700961, 0.341997296, 8.02548402e-06, 0.341997296, 0.939701021, -2.9200578e-06, -8.54020709e-06, 7.12970516e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  600. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.819155872, -0.573570967, -8.54020163e-06, -0.573570907, 0.819155931, 7.21968596e-10, 6.99534212e-06, 4.89900322e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  601. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.819155872, -0.573570907, 6.99534212e-06, -0.573570967, 0.819155931, 4.89900322e-06, -8.54020163e-06, 7.21968596e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  602. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -1, -2.77982253e-05, -8.54019163e-06, -2.77982253e-05, 1, 7.14059534e-10, 8.54019163e-06, 9.51461687e-10, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  603. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, -2.77982253e-05, 8.54019163e-06, -2.77982253e-05, 1, 9.51461687e-10, -8.54019163e-06, 7.14059534e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  604. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.939686716, -0.342036575, -8.54020254e-06, -0.342036605, 0.939686656, 7.10798254e-10, 8.02487193e-06, 2.92172945e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  605. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.939686716, -0.342036605, 8.02487193e-06, -0.342036575, 0.939686656, 2.92172945e-06, -8.54020254e-06, 7.10798254e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  606. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.96591574, -0.258856624, -8.54020436e-06, -0.258856624, 0.965915799, 7.07902903e-10, 8.24893505e-06, 2.21137225e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  607. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.96591574, -0.258856624, 8.24893505e-06, -0.258856624, 0.965915799, 2.21137225e-06, -8.54020436e-06, 7.07902903e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  608. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.766051114, -0.642779648, -8.54020163e-06, -0.642779648, 0.766051114, 7.15007387e-10, 6.5417712e-06, 5.49001561e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  609. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.766051114, -0.642779648, 6.5417712e-06, -0.642779648, 0.766051114, 5.49001561e-06, -8.54020163e-06, 7.15007387e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  610. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.996199131, 0.0871054754, -8.54020436e-06, 0.0871054754, 0.996199131, 7.17304938e-10, 8.50780634e-06, -7.43183932e-07, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  611. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.996199131, 0.0871054754, 8.50780634e-06, 0.0871054754, 0.996199131, -7.43183932e-07, -8.54020436e-06, 7.17304938e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  612. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.996192217, -0.0871844068, -8.54020345e-06, -0.0871844143, 0.996192217, 7.13141657e-10, 8.50762171e-06, 7.45283046e-07, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  613. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.996192217, -0.0871844143, 8.50762171e-06, -0.0871844068, 0.996192217, 7.45282989e-07, -8.54020345e-06, 7.13141657e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  614. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.173702925, -0.984798133, -8.54020891e-06, -0.984798074, 0.173702925, 7.14604709e-10, 1.48275547e-06, 8.41050496e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  615. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.173702925, -0.984798074, 1.48275558e-06, -0.984798133, 0.173702925, 8.41050587e-06, -8.54020891e-06, 7.14604709e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  616. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.707121372, -0.707092226, -8.54019981e-06, -0.707092285, 0.707121372, 7.15412452e-10, 6.03845183e-06, 6.0392149e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  617. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.707121372, -0.707092285, 6.03845183e-06, -0.707092226, 0.707121372, 6.0392149e-06, -8.54019981e-06, 7.15412452e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  618. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.766058683, -0.642770648, -8.54020527e-06, -0.642770588, -0.766058683, 7.18762994e-10, -6.54276073e-06, 5.48884236e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  619. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.766058683, -0.642770588, -6.54276027e-06, -0.642770648, -0.766058683, 5.48884236e-06, -8.54020527e-06, 7.18762994e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  620. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.499985039, -0.866034091, -8.54020254e-06, -0.866034091, -0.499985039, 7.16689708e-10, -4.27059422e-06, 7.39574807e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  621. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.499985039, -0.866034091, -4.27059422e-06, -0.866034091, -0.499985039, 7.39574807e-06, -8.54020254e-06, 7.16689708e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  622. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.258774757, -0.965937674, -8.54020345e-06, -0.965937674, -0.258774757, 7.11707249e-10, -2.21067671e-06, 8.24912058e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  623. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.258774757, -0.965937674, -2.21067671e-06, -0.965937674, -0.258774757, 8.24912058e-06, -8.54020345e-06, 7.11707304e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  624. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.7660411, 0.642791688, -8.54019436e-06, 0.642791688, -0.7660411, 7.10162595e-10, -6.54168389e-06, -5.4901102e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  625. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.7660411, 0.642791688, -6.54168389e-06, 0.642791688, -0.7660411, -5.4901102e-06, -8.54019436e-06, 7.10162595e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  626. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.939700067, -0.34199965, -8.54020163e-06, -0.34199965, -0.939700127, 7.06336545e-10, -8.02546947e-06, 2.92008258e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  627. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.939700067, -0.34199965, -8.02546947e-06, -0.34199965, -0.939700127, 2.92008235e-06, -8.54020163e-06, 7.06336545e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  628. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.96591574, 0.258856624, -8.54020436e-06, 0.258856624, -0.965915799, 7.07902903e-10, -8.24893505e-06, -2.21137225e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  629. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.96591574, 0.258856624, -8.24893505e-06, 0.258856624, -0.965915799, -2.21137225e-06, -8.54020436e-06, 7.07902903e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  630. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.996199131, -0.0871054754, -8.54020436e-06, -0.0871054754, -0.996199131, 7.17304938e-10, -8.50780634e-06, 7.43183932e-07, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  631. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.996199131, -0.0871054754, -8.50780634e-06, -0.0871054754, -0.996199131, 7.43183932e-07, -8.54020436e-06, 7.17304938e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  632. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.500019014, 0.866014421, -8.54020163e-06, 0.866014421, -0.500019073, 7.11226078e-10, -4.26964698e-06, -7.39629286e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  633. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.500019014, 0.866014421, -4.26964698e-06, 0.866014421, -0.500019073, -7.39629286e-06, -8.54020163e-06, 7.11226078e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  634. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.34198463, -0.939705551, -8.54020254e-06, -0.93970561, -0.3419846, 7.14732773e-10, -2.92128948e-06, 8.025032e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  635. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.34198463, -0.93970561, -2.92128948e-06, -0.939705551, -0.3419846, 8.025032e-06, -8.54020254e-06, 7.14732773e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  636. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.996197641, -0.087122567, -8.54020163e-06, -0.087122567, -0.996197641, 7.1519507e-10, -8.50778997e-06, 7.43331839e-07, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  637. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.996197641, -0.087122567, -8.50778997e-06, -0.087122567, -0.996197641, 7.43331839e-07, -8.54020163e-06, 7.1519507e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  638. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.573558509, -0.819164693, -8.54020345e-06, -0.819164693, -0.573558509, 7.11191994e-10, -4.89888907e-06, 6.99542488e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  639. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.573558509, -0.819164634, -4.89888907e-06, -0.819164634, -0.573558509, 6.99542488e-06, -8.54020345e-06, 7.1119205e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  640. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.906296492, 0.422642678, -8.540198e-06, 0.422642678, -0.906296432, 7.24161509e-10, -7.7396453e-06, -3.61010802e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  641. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.906296492, 0.422642678, -7.7396453e-06, 0.422642678, -0.906296432, -3.61010825e-06, -8.540198e-06, 7.24161564e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  642. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.965919793, 0.258841664, -8.54020345e-06, 0.258841664, -0.965919733, 7.18157867e-10, -8.24896597e-06, -2.21125424e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  643. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.965919793, 0.258841664, -8.24896597e-06, 0.258841664, -0.965919733, -2.21125424e-06, -8.54020345e-06, 7.18157867e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  644. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.819155395, -0.573571742, -8.54019891e-06, -0.573571742, -0.819155395, 7.19252713e-10, -6.99616203e-06, 4.89782724e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  645. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.819155335, -0.573571742, -6.99616203e-06, -0.573571742, -0.819155335, 4.89782724e-06, -8.54019891e-06, 7.19252713e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  646. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.996190846, 0.0872001573, -8.54020709e-06, 0.0872001573, -0.996190846, 7.1600248e-10, -8.50761353e-06, -7.45420664e-07, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  647. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.996190846, 0.0872001573, -8.50761353e-06, 0.0872001573, -0.996190846, -7.45420664e-07, -8.54020709e-06, 7.1600248e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  648. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.642780125, -0.766050756, -8.54019254e-06, -0.766050756, -0.642780125, 7.17133353e-10, -5.49001561e-06, 6.54176029e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  649. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.642780125, -0.766050756, -5.49001561e-06, -0.766050756, -0.642780125, 6.54176029e-06, -8.54019254e-06, 7.17133353e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  650. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 1, 2.67327996e-05, -8.54019891e-06, 2.67327996e-05, -1, 7.18370363e-10, -8.54019891e-06, -9.4667385e-10, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  651. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1, 2.67327978e-05, -8.54019891e-06, 2.67327978e-05, -1, -9.4667385e-10, -8.54019891e-06, 7.18370363e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  652. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.9848122, -0.173622951, -8.540198e-06, -0.173622921, -0.98481226, 7.18227811e-10, -8.41061683e-06, 1.48206709e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  653. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.9848122, -0.173622921, -8.41061592e-06, -0.173622951, -0.98481226, 1.48206709e-06, -8.540198e-06, 7.18227866e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  654. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.0871047899, -0.99619925, -8.5401889e-06, -0.996199131, -0.0871048048, 7.15580817e-10, -7.44604222e-07, 8.50766719e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  655. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0871047899, -0.996199131, -7.44604222e-07, -0.99619925, -0.0871048048, 8.5076681e-06, -8.5401889e-06, 7.15580817e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  656. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.258869141, -0.965912461, -8.54019618e-06, -0.965912461, 0.258869112, 7.13289261e-10, 2.21010441e-06, 8.24926701e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  657. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.258869141, -0.965912461, 2.21010441e-06, -0.965912461, 0.258869112, 8.2492661e-06, -8.54019618e-06, 7.13289261e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  658. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.087192677, -0.996191502, -8.54020618e-06, -0.996191502, 0.087192677, 7.1443601e-10, 7.43931651e-07, 8.50774268e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  659. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.087192677, -0.996191502, 7.43931707e-07, -0.996191502, 0.087192677, 8.50774268e-06, -8.54020618e-06, 7.1443601e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  660. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -0.342068017, -0.939675212, -8.54019709e-06, -0.939675272, 0.342067987, 7.1135442e-10, 2.92066011e-06, 8.02525483e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  661. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.342068017, -0.939675272, 2.92065988e-06, -0.939675212, 0.342067987, 8.02525483e-06, -8.54019709e-06, 7.1135442e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  662. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, -5.61248489e-05, -1, -8.54019981e-06, -1, 5.61248489e-05, 7.14190485e-10, -2.34873038e-10, 8.54019981e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  663. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -5.61248489e-05, -1, -2.3487301e-10, -1, 5.61248489e-05, 8.54019981e-06, -8.54019981e-06, 7.14190485e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  664. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.258784354, -0.965935111, -8.54021164e-06, -0.965935171, -0.258784324, 7.12864878e-10, -2.21076198e-06, 8.24910603e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  665. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.258784354, -0.965935171, -2.21076175e-06, -0.965935111, -0.258784324, 8.24910603e-06, -8.54021164e-06, 7.12864878e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  666. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.57356149, -0.819162548, -8.54020436e-06, -0.819162548, -0.57356149, 7.20699e-10, -4.89892273e-06, 6.9954026e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  667. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.57356149, -0.819162488, -4.89892273e-06, -0.819162488, -0.57356149, 6.99540215e-06, -8.54020436e-06, 7.20699e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  668. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.642807782, 0.76602757, -8.540198e-06, 0.76602751, -0.642807841, 7.16393167e-10, -5.4891575e-06, -6.54248788e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  669. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.642807782, 0.76602751, -5.4891575e-06, 0.76602757, -0.642807841, -6.54248788e-06, -8.540198e-06, 7.16393223e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  670. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.866024017, 0.500002384, -8.54019709e-06, 0.500002325, -0.866024137, 7.14080073e-10, -7.39565849e-06, -4.27073746e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  671. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.866024017, 0.500002325, -7.39565849e-06, 0.500002384, -0.866024137, -4.27073746e-06, -8.54019709e-06, 7.14080073e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  672. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.642775774, -0.766054332, -8.54019891e-06, -0.766054332, -0.642775834, 7.14757808e-10, -5.48998059e-06, 6.54179621e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  673. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.642775774, -0.766054332, -5.48998059e-06, -0.766054332, -0.642775834, 6.54179667e-06, -8.54019891e-06, 7.14757808e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  674. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.906306148, 0.422621965, -8.54020345e-06, 0.422621936, -0.906306148, 7.21983806e-10, -7.73973352e-06, -3.60993181e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  675. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.906306148, 0.422621936, -7.73973352e-06, 0.422621965, -0.906306148, -3.60993204e-06, -8.54020345e-06, 7.21983862e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  676. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 5.3085023e-05, 1, -8.54019981e-06, 1, -5.3085023e-05, 7.14205306e-10, 2.6084862e-10, -8.54019981e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  677. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 5.3085023e-05, 1, 2.60848593e-10, 1, -5.3085023e-05, -8.54019981e-06, -8.54019981e-06, 7.14205306e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  678. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.342068017, 0.939675212, -8.54019709e-06, 0.939675272, -0.342067987, 7.1135442e-10, -2.92066011e-06, -8.02525483e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  679. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.342068017, 0.939675272, -2.92065988e-06, 0.939675212, -0.342067987, -8.02525483e-06, -8.54019709e-06, 7.1135442e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  680. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.984812379, -0.173621967, -8.54019527e-06, -0.173621938, -0.984812438, 7.12895465e-10, -8.41061501e-06, 1.48206345e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  681. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.984812379, -0.173621938, -8.4106141e-06, -0.173621967, -0.984812438, 1.48206345e-06, -8.54019527e-06, 7.12895465e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  682. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.699999809, 0.600000024, 0.550000012),CFrame = CFrame.new(-43.6495514, 2.69217896, -89.4332352, 0.422662586, 0.906287074, -8.54020254e-06, 0.906287074, -0.422662586, 7.16701642e-10, -3.60897457e-06, -7.74017644e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  683. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.422662586, 0.906287074, -3.60897434e-06, 0.906287074, -0.422662586, -7.74017735e-06, -8.54020254e-06, 7.16701642e-10, -1),C1 = CFrame.new(-1.60021901, -0.0249862671, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  684. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.299999952, 1, 0.699999988),CFrame = CFrame.new(-43.6244583, 5.26752234, -89.4332275, 3.60083504e-05, 1, -8.54020345e-06, 1, -3.60083504e-05, 7.14756698e-10, 4.0723816e-10, -8.54020345e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  685. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),C1 = CFrame.new(0.975125313, 1.52587891e-05, -7.62939453e-06, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  686. Wedge = New("WedgePart",Shadowblade,"Wedge",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(0.499999911, 0.24999997, 0.100000001),CFrame = CFrame.new(-43.5805359, -2.62560844, -89.4332275, 4.25507824e-06, -3.60083504e-05, -1, -8.68457251e-10, -1, 3.60083504e-05, -1, 7.15238868e-10, -4.25507824e-06),CanCollide = false,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  687. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 4.25507824e-06, -8.68457251e-10, -1, -3.60083504e-05, -1, 7.15238868e-10, -1, 3.60083504e-05, -4.25507824e-06),C1 = CFrame.new(-6.91800404, 0.0442199707, -7.62939453e-06, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  688. Hitbox = New("Part",Shadowblade,"Hitbox",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Size = Vector3.new(4.25, 0.600000024, 0.50000006),CFrame = CFrame.new(-43.6304359, 0.474804997, -89.4332275, 3.9197188e-05, -1, 8.54019709e-06, 1, 3.9197188e-05, -7.14479587e-10, 3.79727888e-10, 8.54019709e-06, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  689. mot = New("Motor",Hitbox,"mot",{Part0 = Hitbox,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 3.9197188e-05, 1, 3.79727888e-10, -1, 3.9197188e-05, 8.54019709e-06, 8.54019709e-06, -7.14479587e-10, 1),C1 = CFrame.new(-3.81759238, -0.00579071045, -7.62939453e-06, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  690. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.299999952, 1, 0.699999988),CFrame = CFrame.new(-45.1581993, 3.21717024, -89.4332352, -0.939712405, -0.341965705, 8.54020709e-06, 0.341965675, -0.939712524, -7.12308046e-10, 8.02558225e-06, 2.91978881e-06, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  691. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.939712405, 0.341965675, 8.02558225e-06, -0.341965705, -0.939712524, 2.91978859e-06, 8.54020709e-06, -7.12308046e-10, 1),C1 = CFrame.new(-1.0752821, -1.53365326, 1.52587891e-05, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  692. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.899999857, 0.600000024, 0.550000012),CFrame = CFrame.new(-44.6057358, 3.01392007, -89.4332428, 0.939706922, 0.341980755, 8.54019891e-06, -0.341980726, 0.939706981, -7.10890902e-10, -8.02552768e-06, -2.91991591e-06, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  693. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.939706922, -0.341980726, -8.02552768e-06, 0.341980755, 0.939706981, -2.91991591e-06, 8.54019891e-06, -7.10890902e-10, 1),C1 = CFrame.new(-1.27851224, -0.981182098, 1.52587891e-05, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  694. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really institutional white"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.899999857, 0.600000024, 0.550000012),CFrame = CFrame.new(-42.6752129, 3.01401949, -89.4332504, -0.93967998, -0.342055082, -8.54020345e-06, -0.342055082, 0.939679921, 7.1544104e-10, 8.02481281e-06, 2.92189225e-06, -1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  695. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.93967998, -0.342055082, 8.02481281e-06, -0.342055082, 0.939679921, 2.92189225e-06, -8.54020345e-06, 7.15441095e-10, -1),C1 = CFrame.new(-1.2783432, 0.94934082, 7.62939453e-06, 3.60083504e-05, 1, 4.07238132e-10, 1, -3.60083504e-05, -8.54020345e-06, -8.54020345e-06, 7.14756754e-10, -1),})
  696.  
  697. function Damage(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  698. if hit.Parent == nil then
  699. return
  700. end
  701. local h = hit.Parent:FindFirstChildOfClass("Humanoid")
  702. for _, v in pairs(hit.Parent:children()) do
  703. if v:IsA("Humanoid") then
  704. h = v
  705. end
  706. end
  707. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("UpperTorso") ~= nil then
  708. warn'No R15 allowed'
  709. hit.Parent:FindFirstChild("Head"):BreakJoints()
  710. end
  711. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  712. if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  713. if hit.Parent.DebounceHit.Value == true then
  714. return
  715. end
  716. end
  717. local c = Create("ObjectValue"){
  718. Name = "creator",
  719. Value = game:service("Players").LocalPlayer,
  720. Parent = h,
  721. }
  722. game:GetService("Debris"):AddItem(c, .5)
  723. if HitSound ~= nil and HitPitch ~= nil then
  724. CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  725. end
  726. local Damage = math.random(minim, maxim)
  727. local blocked = false
  728. local block = hit.Parent:findFirstChild("Block")
  729. if block ~= nil then
  730. if block.className == "IntValue" then
  731. if block.Value > 0 then
  732. blocked = true
  733. block.Value = block.Value - 1
  734. print(block.Value)
  735. end
  736. end
  737. end
  738. if blocked == false then
  739. h.Health = h.Health - Damage
  740. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really institutional white").Color)
  741. else
  742. h.Health = h.Health - (Damage / 2)
  743. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really institutional white").Color)
  744. end
  745. if Type == "Knockdown" then
  746. local hum = hit.Parent.Humanoid
  747. hum.PlatformStand = true
  748. coroutine.resume(coroutine.create(function(HHumanoid)
  749. swait(1)
  750. HHumanoid.PlatformStand = false
  751. end), hum)
  752. local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  753. local bodvol = Create("BodyVelocity"){
  754. velocity = angle * knockback,
  755. P = 5000,
  756. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  757. Parent = hit,
  758. }
  759. local rl = Create("BodyAngularVelocity"){
  760. P = 3000,
  761. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  762. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  763. Parent = hit,
  764. }
  765. game:GetService("Debris"):AddItem(bodvol, .5)
  766. game:GetService("Debris"):AddItem(rl, .5)
  767. elseif Type == "Normal" then
  768. local vp = Create("BodyVelocity"){
  769. P = 500,
  770. maxForce = Vector3.new(math.huge, 0, math.huge),
  771. velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  772. }
  773. if knockback > 0 then
  774. vp.Parent = hit.Parent.Torso
  775. end
  776. game:GetService("Debris"):AddItem(vp, .5)
  777. elseif Type == "Up" then
  778. local bodyVelocity = Create("BodyVelocity"){
  779. velocity = Vector3.new(0, 20, 0),
  780. P = 5000,
  781. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  782. Parent = hit,
  783. }
  784. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  785. elseif Type == "DarkUp" then
  786. coroutine.resume(coroutine.create(function()
  787. for i = 0, 1, 0.1 do
  788. swait()
  789. Effects.Block.Create(BrickColor.new("institutional white"), hit.Parent.Torso.CFrame, 5, 5, 5, 1, 1, 1, .08, 1)
  790. end
  791. end))
  792. local bodyVelocity = Create("BodyVelocity"){
  793. velocity = Vector3.new(0, 20, 0),
  794. P = 5000,
  795. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  796. Parent = hit,
  797. }
  798. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  799. elseif Type == "Snare" then
  800. local bp = Create("BodyPosition"){
  801. P = 2000,
  802. D = 100,
  803. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  804. position = hit.Parent.Torso.Position,
  805. Parent = hit.Parent.Torso,
  806. }
  807. game:GetService("Debris"):AddItem(bp, 1)
  808. elseif Type == "Freeze" then
  809. local BodPos = Create("BodyPosition"){
  810. P = 50000,
  811. D = 1000,
  812. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  813. position = hit.Parent.Torso.Position,
  814. Parent = hit.Parent.Torso,
  815. }
  816. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  817. elseif Type == "Frostbite" then
  818. local hum = hit.Parent.Humanoid
  819. hum.PlatformStand = true
  820. coroutine.resume(coroutine.create(function(HHumanoid)
  821. swait(1)
  822. HHumanoid.PlatformStand = false
  823. end), hum)
  824. local BodGy = Create("BodyGyro") {
  825. maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  826. P = 20e+003,
  827. Parent = hit.Parent.Torso,
  828. cframe = hit.Parent.Torso.CFrame,
  829. }
  830. hit.Parent.Torso.Anchored = true
  831. coroutine.resume(coroutine.create(function(Part)
  832. swait(1.5)
  833. Part.Anchored = false
  834. end), hit.Parent.Torso)
  835. game:GetService("Debris"):AddItem(BodPos, 3)
  836. game:GetService("Debris"):AddItem(BodGy, 3)
  837. end
  838. local debounce = Create("BoolValue"){
  839. Name = "DebounceHit",
  840. Parent = hit.Parent,
  841. Value = true,
  842. }
  843. game:GetService("Debris"):AddItem(debounce, Delay)
  844. c = Create("ObjectValue"){
  845. Name = "creator",
  846. Value = Player,
  847. Parent = h,
  848. }
  849. game:GetService("Debris"):AddItem(c, .5)
  850. end
  851. end
  852.  
  853. function ShowDamage(Pos, Text, Time, Color)
  854. local Rate = (1 / 30)
  855. local Pos = (Pos or Vector3.new(0, 0, 0))
  856. local Text = (Text or "")
  857. local Time = (Time or 2)
  858. local Color = (Color or Color3.new(1, 0, 1))
  859. local EffectPart = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  860. EffectPart.Anchored = true
  861. local BillboardGui = Create("BillboardGui"){
  862. Size = UDim2.new(3, 0, 3, 0),
  863. Adornee = EffectPart,
  864. Parent = EffectPart,
  865. }
  866. local TextLabel = Create("TextLabel"){
  867. BackgroundTransparency = 1,
  868. Size = UDim2.new(1, 0, 1, 0),
  869. Text = Text,
  870. Font = "SciFi",
  871. TextColor3 = Color,
  872. TextScaled = true,
  873. Parent = BillboardGui,
  874. }
  875. game.Debris:AddItem(EffectPart, (Time))
  876. EffectPart.Parent = game:GetService("Workspace")
  877. delay(0, function()
  878. local Frames = (Time / Rate)
  879. for Frame = 1, Frames do
  880. wait(Rate)
  881. local Percent = (Frame / Frames)
  882. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  883. TextLabel.TextTransparency = Percent
  884. end
  885. if EffectPart and EffectPart.Parent then
  886. EffectPart:Destroy()
  887. end
  888. end)
  889. end
  890.  
  891. function MagnitudeDamage(Part, Magnitude, MinimumDamage, MaximumDamage, KnockBack, Type, HitSound, HitPitch)
  892. for _, c in pairs(workspace:children()) do
  893. local hum = c:findFirstChild("Humanoid")
  894. if hum ~= nil then
  895. local head = c:findFirstChild("Torso")
  896. if head ~= nil then
  897. local targ = head.Position - Part.Position
  898. local mag = targ.magnitude
  899. if mag <= Magnitude and c.Name ~= Player.Name then
  900. Damage(head, head, MinimumDamage, MaximumDamage, KnockBack, Type, RootPart, .1, "rbxassetid://" .. HitSound, HitPitch)
  901. end
  902. end
  903. end
  904. end
  905. end
  906.  
  907. EffectModel = Create("Model"){
  908. Parent = Character,
  909. Name = "Effects",
  910. }
  911.  
  912. Effects = {
  913.  
  914. Block = {
  915. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type, Part)
  916. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  917. prt.Anchored = true
  918. prt.CFrame = cframe
  919. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  920. game:GetService("Debris"):AddItem(prt, 10)
  921. if Type == 1 or Type == nil then
  922. table.insert(Effects, {
  923. prt,
  924. "Block1",
  925. delay,
  926. x3,
  927. y3,
  928. z3,
  929. msh
  930. })
  931. elseif Type == 2 then
  932. table.insert(Effects, {
  933. prt,
  934. "Block2",
  935. delay,
  936. x3,
  937. y3,
  938. z3,
  939. msh
  940. })
  941. elseif Type == 3 then
  942. table.insert(Effects, {
  943. prt,
  944. "Block3",
  945. delay,
  946. x3,
  947. y3,
  948. z3,
  949. msh,
  950. Part
  951. })
  952. elseif Type == 4 then
  953. table.insert(Effects, {
  954. prt,
  955. "Block2Fire",
  956. delay,
  957. x3,
  958. y3,
  959. z3,
  960. msh
  961. })
  962. end
  963. end
  964.  
  965. },
  966.  
  967. Cylinder = {
  968. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  969. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  970. prt.Anchored = true
  971. prt.CFrame = cframe
  972. local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  973. game:GetService("Debris"):AddItem(prt, 10)
  974. table.insert(Effects, {
  975. prt,
  976. "Cylinder",
  977. delay,
  978. x3,
  979. y3,
  980. z3,
  981. msh
  982. })
  983. end
  984.  
  985. },
  986.  
  987. Sphere = {
  988. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, parent)
  989. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  990. prt.Anchored = true
  991. prt.CFrame = cframe
  992. if parent == nil then
  993. prt.Parent = workspace
  994. else
  995. prt.Parent = parent
  996. end
  997. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  998. game:GetService("Debris"):AddItem(prt, 10)
  999. table.insert(Effects, {
  1000. prt,
  1001. "Cylinder",
  1002. delay,
  1003. x3,
  1004. y3,
  1005. z3,
  1006. msh
  1007. })
  1008. end
  1009. },
  1010.  
  1011. Blood = {
  1012. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1013. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1014. prt.Anchored = true
  1015. prt.CFrame = cframe
  1016. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1017. game:GetService("Debris"):AddItem(prt, 10)
  1018. table.insert(Effects, {
  1019. prt,
  1020. "Blood",
  1021. delay,
  1022. x3,
  1023. y3,
  1024. z3,
  1025. msh
  1026. })
  1027. end
  1028. },
  1029.  
  1030. Head = {
  1031. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1032. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1033. prt.Anchored = true
  1034. prt.CFrame = cframe
  1035. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Head", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1036. game:GetService("Debris"):AddItem(prt, 10)
  1037. table.insert(Effects, {
  1038. prt,
  1039. "Cylinder",
  1040. delay,
  1041. x3,
  1042. y3,
  1043. z3,
  1044. msh
  1045. })
  1046. end
  1047. },
  1048.  
  1049. Fire = {
  1050. Create = function(brickcolor, cframe, x1, y1, z1, delay)
  1051. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1052. prt.Anchored = true
  1053. prt.CFrame = cframe
  1054. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1055. game:GetService("Debris"):AddItem(prt, 10)
  1056. table.insert(Effects, {
  1057. prt,
  1058. "Fire",
  1059. delay,
  1060. 1,
  1061. 1,
  1062. 1,
  1063. msh
  1064. })
  1065. end;
  1066. };
  1067.  
  1068. Ring = {
  1069. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, par)
  1070. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1071. prt.Anchored = true
  1072. if par ~= nil then
  1073. prt.Parent = par
  1074. end
  1075. prt.CFrame = cframe * CFrame.new(x3, y3, z3)
  1076. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1077. game:GetService("Debris"):AddItem(prt, 10)
  1078. table.insert(Effects, {
  1079. prt,
  1080. "Cylinder",
  1081. delay,
  1082. x3,
  1083. y3,
  1084. z3,
  1085. msh
  1086. })
  1087. end
  1088. },
  1089.  
  1090. Blast = {
  1091. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Part)
  1092. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1093. prt.Anchored = true
  1094. prt.CFrame = cframe
  1095. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://1323306", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1096. game:GetService("Debris"):AddItem(prt, 10)
  1097. table.insert(Effects, {
  1098. prt,
  1099. "Block4",
  1100. delay,
  1101. x3,
  1102. y3,
  1103. z3,
  1104. msh,
  1105. Part
  1106. })
  1107. end
  1108. },
  1109.  
  1110. Wave = {
  1111. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1112. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1113. prt.Anchored = true
  1114. prt.CFrame = cframe
  1115. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1116. game:GetService("Debris"):AddItem(prt, 10)
  1117. table.insert(Effects, {
  1118. prt,
  1119. "Cylinder",
  1120. delay,
  1121. x3,
  1122. y3,
  1123. z3,
  1124. msh
  1125. })
  1126. end
  1127. },
  1128.  
  1129. Elec = {
  1130. Create = function(cff, x, y, z)
  1131. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, BrickColor.new("Medium blue"), "Part", Vector3.new(1, 1, 1))
  1132. prt.Anchored = true
  1133. prt.CFrame = cff * CFrame.new(math.random(-x * 100, x * 100) / 100, math.random(-y * 100, y * 100) / 100, math.random(-z * 100, z * 100) / 100)
  1134. prt.CFrame = CFrame.new(prt.Position)
  1135. game:GetService("Debris"):AddItem(prt, 10)
  1136. local xval = math.random() / 9
  1137. local yval = math.random() / 9
  1138. local zval = math.random() / 9
  1139. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(xval, yval, zval))
  1140. local eul1 = math.random(-50, 50)
  1141. local eul2 = math.random(-50, 50)
  1142. local eul3 = math.random(-50, 50)
  1143. local euld = CFrame.fromEulerAnglesXYZ(eul1, eul2, eul3)
  1144. local euld2 = CFrame.fromEulerAnglesXYZ(-eul1, -eul2, -eul3)
  1145. Effects[#Effects + 1] = {
  1146. prt,
  1147. "Elec",
  1148. .05,
  1149. x,
  1150. y,
  1151. z,
  1152. xval,
  1153. yval,
  1154. zval,
  1155. msh,
  1156. euld,
  1157. euld2
  1158. }
  1159. end
  1160. },
  1161.  
  1162. Break = {
  1163. Create = function(brickcolor, cframe, x1, y1, z1)
  1164. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1165. prt.Anchored = true
  1166. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1167. game:GetService("Debris"):AddItem(prt, 10)
  1168. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1169. local num = math.random(10, 50) / 1000
  1170. table.insert(Effects, {
  1171. prt,
  1172. "Shatter",
  1173. num,
  1174. prt.CFrame,
  1175. math.random() - math.random(),
  1176. 0,
  1177. math.random(50, 100) / 100
  1178. })
  1179. end
  1180. },
  1181.  
  1182. Ice = {
  1183. Create = function(brickcolor, cframe, x1, y1, z1, delay)
  1184. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1185. prt.Anchored = true
  1186. prt.CFrame = cframe
  1187. msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://1778999", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1188. game:GetService("Debris"):AddItem(prt, 10)
  1189. for i = 1, 5 do
  1190. Effects.Break.Create(BrickColor.new(brickcolor), prt.CFrame * CFrame.new(0, 4, 0), math.random(20, 80) / 100, math.random(2, 10), math.random(20, 80) / 100)
  1191. end
  1192. for i = 1, 15 do
  1193. local freezepart = CFuncs.Part.Create(EffectModel, "Neon", 0.5, 0.5, BrickColor.new("Bright blue"), "Ice Part", Vector3.new(math.random(1, 2) + math.random(), math.random(1, 2) + math.random(), math.random(1, 2) + math.random()))
  1194. freezepart.Anchored = true
  1195. freezepart.CanCollide = true
  1196. freezepart.CFrame = cframe * CFrame.new(math.random(-300, 300) / 100, 4, math.random(-300, 300) / 100) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1197. game:GetService("Debris"):AddItem(freezepart, 10)
  1198. end
  1199. table.insert(Effects, {
  1200. prt,
  1201. "Ice",
  1202. delay,
  1203. msh,
  1204. 1,
  1205. .2
  1206. })
  1207. end
  1208. },
  1209.  
  1210. Lightning = {
  1211. Create = function(p0, p1, tym, ofs, col, th, tra, last)
  1212. local magz = (p0 - p1).magnitude
  1213. local curpos = p0
  1214. local trz = {
  1215. -ofs,
  1216. ofs
  1217. }
  1218. for i = 1, tym do
  1219. local li = CFuncs.Part.Create(EffectModel, "Neon", 0, tra or 0.4, col, "Ref", Vector3.new(th, th, magz / tym))
  1220. local ofz = Vector3.new(trz[math.random(1, 2)], trz[math.random(1, 2)], trz[math.random(1, 2)])
  1221. local trolpos = CFrame.new(curpos, p1) * CFrame.new(0, 0, magz / tym).p + ofz
  1222. li.Material = "Neon"
  1223. if tym == i then
  1224. local magz2 = (curpos - p1).magnitude
  1225. li.Size = Vector3.new(th, th, magz2)
  1226. li.CFrame = CFrame.new(curpos, p1) * CFrame.new(0, 0, -magz2 / 2)
  1227. table.insert(Effects, {
  1228. li,
  1229. "Disappear",
  1230. last
  1231. })
  1232. else
  1233. do
  1234. do
  1235. li.CFrame = CFrame.new(curpos, trolpos) * CFrame.new(0, 0, magz / tym / 2)
  1236. curpos = li.CFrame * CFrame.new(0, 0, magz / tym / 2).p
  1237. game.Debris:AddItem(li, 10)
  1238. table.insert(Effects, {
  1239. li,
  1240. "Disappear",
  1241. last
  1242. })
  1243. end
  1244. end
  1245. end
  1246. end
  1247. end
  1248. };
  1249.  
  1250. EffectTemplate = {
  1251.  
  1252. };
  1253.  
  1254. }
  1255.  
  1256. function attackone()
  1257. attack = true
  1258. local con1 = Hitbox.Touched:connect(function(hit)
  1259. Damage(Hitbox, hit, 10, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1260. end)
  1261. for i = 0, 1, 0.1 do
  1262. swait()
  1263. PlayAnimationFromTable({
  1264. CFrame.new(-3.83407951e-06, -0.099994801, -7.62948912e-06, 1.00000322, 1.93715422e-07, -7.82312242e-08, 2.01166003e-07, 1.00000334, -4.36677361e-11, 1.15484191e-07, 6.98494595e-10, 1.00000322) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1265. CFrame.new(4.13657426e-06, 1.59999311, 1.52588655e-05, 1.00000322, 2.01166017e-07, 1.15484212e-07, 1.93715422e-07, 1.00000358, 7.56702812e-10, -7.82312242e-08, 1.45394807e-11, 1.00000346) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1266. CFrame.new(0.469174385, 0.394461602, -1.03103852, 0.436612606, 0.868544757, 0.234552875, 0.242067143, 0.137687877, -0.960449338, -0.866482794, 0.476112872, -0.150127098) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1267. CFrame.new(-1.37114704, 0.0709182322, 0.067497313, 0.961397171, 0.113685571, 0.250594735, -0.0996581912, 0.992697895, -0.068013981, -0.256496131, 0.0404144786, 0.965703547) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1268. CFrame.new(0.626114428, -1.8974992, -0.28499046, 0.00259825238, -0.0845598578, -0.996418297, -0.0614385903, 0.994525909, -0.0845598802, 0.998110771, 0.0614380315, -0.00261123804) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1269. CFrame.new(-0.60553652, -2.03520966, -0.0977527276, 0.978090227, 0.167586342, 0.123534247, -0.157092318, 0.983445823, -0.0903494433, -0.136630088, 0.0689633712, 0.988222122) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1270. }, .3, false)
  1271. moter.C0 = clerp(moter.C0, CFrame.new(2.12633014, -1.82132447, 0.0494364351, -0.850089192, -0.470143139, -0.237355217, 0.511008859, -0.845356941, -0.155734956, -0.12743029, -0.253675938, 0.95886606) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1272. end
  1273. con1:Disconnect()
  1274. attack = false
  1275. end
  1276.  
  1277. function attacktwo()
  1278. attack = true
  1279. local con1 = Hitbox.Touched:connect(function(hit)
  1280. Damage(Hitbox, hit, 10, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1281. end)
  1282. con1:Disconnect()
  1283. attack = false
  1284. end
  1285.  
  1286. function attackthree()
  1287. attack = true
  1288. local con1 = Hitbox.Touched:connect(function(hit)
  1289. Damage(Hitbox, hit, 10, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1290. end)
  1291. con1:Disconnect()
  1292. attack = false
  1293. end
  1294.  
  1295. function attackfour()
  1296. attack = true
  1297. local con1 = Hitbox.Touched:connect(function(hit)
  1298. Damage(Hitbox, hit, 10, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1299. end)
  1300. con1:Disconnect()
  1301. attack = false
  1302. end
  1303.  
  1304. function skill1()
  1305. attack = true
  1306. local con1 = Hitbox.Touched:connect(function(hit)
  1307. Damage(Hitbox, hit, 99, 99, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1308. end)
  1309. Humanoid.WalkSpeed = 0
  1310. for i = 0, 3.5, 0.1 do
  1311. swait()
  1312. PlayAnimationFromTable({
  1313. CFrame.new(-5.6469662e-07, 3.09944153e-06, -1.07748056e-05, 0.669129729, 0, 0.743145645, 0, 1, 0, -0.743145645, 0, 0.669129729) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1314. CFrame.new(-5.66975132e-06, 1.49998689, 5.1050547e-06, 0.669129729, 0, -0.743145645, 0, 1, 0, 0.743145645, 0, 0.669129729) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1315. CFrame.new(1.8709861, 0.469743878, 0.419357061, -0.30901143, -0.951058984, -1.15561888e-05, 9.2332657e-06, 9.15085548e-06, -1, 0.951058924, -0.309013098, 5.95364691e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1316. CFrame.new(-1.33869219, -0.156486765, 0.248973787, 0.965925694, -0.258819729, -7.4505806e-07, 0.250000805, 0.933012307, 0.258819699, -0.0669869184, -0.250000745, 0.965925753) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1317. CFrame.new(0.621353447, -1.99999595, -0.0881602466, 0.587786019, 0, -0.809016883, 0, 1, 0, 0.809016883, 0, 0.587786019) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1318. CFrame.new(-0.50000298, -1.99999595, -9.43243504e-06, 0.978147626, 0, 0.207911849, 0, 1, 0, -0.207911849, 0, 0.978147626) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1319. }, .3, false)
  1320. moter.C0 = clerp(moter.C0, CFrame.new(-0.157720059, -3.02628803, -0.232226968, 0.0523328781, -0.912304223, -0.406157583, 0.998631358, 0.047826767, 0.0212483406, 4.02700571e-05, -0.406713158, 0.913556337) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1321. end
  1322. for i = 0, 1.9, 0.1 do
  1323. swait()
  1324. PlayAnimationFromTable({
  1325. CFrame.new(0, 3.09944153e-06, 0, 0.453990638, 0, 0.891008973, 0, 1, 0, -0.891008973, 0, 0.453990638) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1326. CFrame.new(-6.79785899e-06, 1.49998689, 3.46367369e-06, 0.453990638, 0, -0.891008973, 0, 1, 0, 0.891008973, 0, 0.453990638) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1327. CFrame.new(1.50800502, 0.469742924, -0.378021657, 0.978155017, -0.207891107, -1.27032745e-05, -1.18519802e-05, 5.34040646e-06, -1, 0.207891107, 0.978155017, 2.75980642e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1328. CFrame.new(-1.31464934, -0.0240028426, 0.2689794, 0.976822078, -0.18529667, 0.107183576, 0.140642256, 0.933012128, 0.331222177, -0.161377996, -0.308470547, 0.937447369) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1329. CFrame.new(0.605079412, -1.99999595, 0.028976351, 0.358369708, 0, -0.933582544, 0, 1, 0, 0.933582544, 0, 0.358369738) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1330. CFrame.new(-0.47511062, -1.99999595, -0.279208064, 0.998631835, 0, -0.0523357093, 0, 1, 0, 0.0523357093, 0, 0.998631835) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1331. }, .3, false)
  1332. moter.C0 = clerp(moter.C0, CFrame.new(-0.241495401, -2.72323298, -0.655384839, 0.991738379, -0.021346122, 0.126494721, 0.0254337192, 0.999203861, -0.030789353, -0.12573646, 0.0337523408, 0.99148953) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1333. end
  1334. con1:Disconnect()
  1335. Humanoid.WalkSpeed = 16
  1336. attack = false
  1337. end
  1338.  
  1339. function skill2()
  1340. attack = true
  1341. local con1 = Hitbox.Touched:connect(function(hit)
  1342. Damage(Hitbox, hit, 20, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1343. end)
  1344. for i = 0, 5, 0.1 do
  1345. swait()
  1346. PlayAnimationFromTable({
  1347. CFrame.new(0, 3.09944153e-06, 0, 0.453990638, 0, 0.891008973, 0, 1, 0, -0.891008973, 0, 0.453990638) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1348. CFrame.new(-6.79785899e-06, 1.49998689, 3.46367369e-06, 0.453990638, 0, -0.891008973, 0, 1, 0, 0.891008973, 0, 0.453990638) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1349. CFrame.new(1.66434598, 0.469740808, -0.401574045, 0.454010755, -0.89099741, -1.27033909e-05, -3.30834905e-06, 1.25716688e-05, -1, 0.89099741, 0.454010755, 2.75995262e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1350. CFrame.new(-1.49168754, -0.0442977548, -0.0363077521, 0.749955416, 0.225166246, -0.621990621, -0.513435781, 0.791002512, -0.332727134, 0.417077065, 0.568890452, 0.70881927) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1351. CFrame.new(0.605079412, -1.99999595, 0.028976351, 0.358369708, 0, -0.933582544, 0, 1, 0, 0.933582544, 0, 0.358369738) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1352. CFrame.new(-0.47511062, -1.99999595, -0.279208064, 0.998631835, 0, -0.0523357093, 0, 1, 0, 0.0523357093, 0, 0.998631835) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1353. }, .3, false)
  1354. moter.C0 = clerp(moter.C0, CFrame.new(-1.40682578, 0.965759516, 0.505053878, 0.0309793297, 0.0102588357, -0.999466181, 0.99942255, -0.0142027503, 0.0308321919, -0.0138789006, -0.999846518, -0.010692928) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1355. end
  1356. for i = 0, 2.5, 0.1 do
  1357. RootPart.Velocity = RootPart.CFrame.lookVector * 60
  1358. swait()
  1359. PlayAnimationFromTable({
  1360. CFrame.new(-7.05701314e-06, 3.09944153e-06, -1.55318048e-05, 0.777147651, 0, -0.629318476, 0, 1, 0, 0.629318476, 0, 0.777147651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1361. CFrame.new(4.80131894e-06, 1.49998689, 5.92916604e-06, 0.777147651, 0, 0.629318476, 0, 1, 0, -0.629318476, 0, 0.777147651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1362. CFrame.new(1.44662893, 0.250838518, 0.427664518, 0.0560602844, -0.146062165, -0.987685502, 0.933583915, 0.358360857, -6.0901807e-06, 0.353948921, -0.922086358, 0.156451046) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1363. CFrame.new(-1.51693988, 0.378769547, -0.531211317, 0.748464763, 0.662085772, 0.0380481295, 0.0450440459, 0.00648663566, -0.998973489, -0.661645949, 0.749404013, -0.0249683484) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1364. CFrame.new(0.587990165, -1.7398932, -0.117823362, 0.965924859, 0.173187777, -0.192342579, -9.94895231e-07, 0.743144035, 0.669131696, 0.258823574, -0.646330714, 0.717821479) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1365. CFrame.new(-0.612445235, -1.68025279, -0.130765259, 0.915169477, -0.0212858617, 0.402510524, -0.145761251, 0.913543999, 0.379721582, -0.375793606, -0.406179219, 0.832947612) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1366. }, .3, false)
  1367. moter.C0 = clerp(moter.C0, CFrame.new(-1.23020804, 3.52634335, 4.427526, 0.317584872, 0.927189887, 0.198645979, -0.788600743, 0.374589264, -0.487638801, -0.526543856, -0.001785642, 0.850145698) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1368. end
  1369. local con1 = Hitbox.Touched:connect(function(hit)
  1370. Damage(Hitbox, hit, 20, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1371. end)
  1372. attack = false
  1373. end
  1374.  
  1375. function skill3()
  1376. attack = true
  1377. Humanoid.WalkSpeed = 0
  1378. for i = 0, 1, 0.1 do
  1379. swait()
  1380. PlayAnimationFromTable({
  1381. CFrame.new(-7.05701314e-06, -0.0999969095, -1.55318048e-05, 0.777147651, 0, -0.629318476, 0, 1, 0, 0.629318476, 0, 0.777147651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1382. CFrame.new(4.80131894e-06, 1.59998691, 5.92916604e-06, 0.777147651, 0, 0.629318476, 0, 1, 0, -0.629318476, 0, 0.777147651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1383. CFrame.new(1.32030511, -0.110619649, -0.369897991, 0.142921448, 0.0636264533, -0.987686992, -0.406727552, 0.913549483, -4.21241702e-06, 0.902300596, 0.401720047, 0.15644449) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1384. CFrame.new(-1.07091737, 1.42222512, 0.0375443883, 0.748463452, 0.304053575, -0.589367568, 0.0450434834, -0.909959555, -0.412243694, -0.661644697, 0.282002151, -0.694767058) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1385. CFrame.new(0.518713176, -1.93715382, 0.140715003, 0.965924859, 0.0404923446, -0.255636185, -1.1337338e-06, 0.987687111, 0.15644376, 0.258823186, -0.151112586, 0.954031706) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1386. CFrame.new(-0.685573995, -1.97265947, -0.156644091, 0.915168941, 0.182820484, 0.359225214, -0.145760983, 0.981014371, -0.127924174, -0.375792205, 0.0647112131, 0.924441934) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1387. }, .3, false)
  1388. moter.C0 = clerp(moter.C0, CFrame.new(-4.87768936, 1.51043165, 1.8158778, -0.605512261, 0.040932674, 0.794782639, 0.536436319, 0.758697033, 0.369614542, -0.587870002, 0.650156438, -0.4813582) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1389. end
  1390. for i = 0, 1, 0.1 do
  1391. swait()
  1392. PlayAnimationFromTable({
  1393. CFrame.new(-7.05701314e-06, -0.0999969095, -1.55318048e-05, 0.777147651, 0, -0.629318476, 0, 1, 0, 0.629318476, 0, 0.777147651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1394. CFrame.new(4.80131894e-06, 1.59998691, 5.92916604e-06, 0.777147651, 0, 0.629318476, 0, 1, 0, -0.629318476, 0, 0.777147651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1395. CFrame.new(1.32030511, -0.110619649, -0.369897991, 0.142921448, 0.0636264533, -0.987686992, -0.406727552, 0.913549483, -4.21241702e-06, 0.902300596, 0.401720047, 0.15644449) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1396. CFrame.new(-1.05272961, 1.3791405, 0.0551985949, 0.748463452, 0.363994598, -0.554359734, 0.0450437628, -0.861888468, -0.505099952, -0.661644816, 0.353080183, -0.661487341) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1397. CFrame.new(0.518713176, -1.93715382, 0.140715003, 0.965924859, 0.0404923446, -0.255636185, -1.1337338e-06, 0.987687111, 0.15644376, 0.258823186, -0.151112586, 0.954031706) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1398. CFrame.new(-0.685573995, -1.97265947, -0.156644091, 0.915168941, 0.182820484, 0.359225214, -0.145760983, 0.981014371, -0.127924174, -0.375792205, 0.0647112131, 0.924441934) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1399. }, .3, false)
  1400. moter.C0 = clerp(moter.C0, CFrame.new(-4.87768936, 1.51043165, 1.8158778, -0.605512261, 0.040932674, 0.794782639, 0.536436319, 0.758697033, 0.369614542, -0.587870002, 0.650156438, -0.4813582) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1401. end
  1402. local rotation = my
  1403. if mouse.Target ~= nil then
  1404. local tp = mouse.Hit
  1405. lerp(-5,rotation)
  1406. Character:SetPrimaryPartCFrame(CFrame.new(tp.p)*CFrame.new(0,5,0))
  1407. lerp(5,rotation)
  1408. end
  1409. Humanoid.WalkSpeed = 16
  1410. attack = false
  1411. end
  1412.  
  1413. function skill4()
  1414. attack = true
  1415. local con1 = Hitbox.Touched:connect(function(hit)
  1416. Damage(Hitbox, hit, 25, 30, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1417. end)
  1418. for i = 0, 1, 0.1 do
  1419. swait()
  1420. PlayAnimationFromTable({
  1421. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1422. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1423. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1424. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1425. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1426. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1427. }, .3, false)
  1428. moter.C0 = clerp(moter.C0, CFrame.new(-4.75418425, -11.0036821, -5.46682024, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1429. end
  1430. for i = 0, 1, 0.1 do
  1431. swait()
  1432. PlayAnimationFromTable({
  1433. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1434. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1435. CFrame.new(1.53487122, 0.693031669, -1.2761941, 0.971029937, -0.0455975756, 0.234558791, 0.224243268, -0.165136561, -0.960441589, 0.0825273693, 0.985216737, -0.150127783) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1436. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1437. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1438. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1439. }, .3, false)
  1440. moter.C0 = clerp(moter.C0, CFrame.new(-3.07011247, -4.56561279, 4.8648262, -0.238876954, 0.1210135, -0.963477969, 0.153487697, 0.984439611, 0.0855914056, 0.958844125, -0.127436548, -0.25373584) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1441. end
  1442. for i = 0, 1, 0.1 do
  1443. swait()
  1444. PlayAnimationFromTable({
  1445. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1446. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1447. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1448. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1449. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1450. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1451. }, .3, false)
  1452. moter.C0 = clerp(moter.C0, CFrame.new(-4.75418425, -11.0036821, -5.46682024, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1453. end
  1454. for i = 0, 1, 0.1 do
  1455. swait()
  1456. PlayAnimationFromTable({
  1457. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1458. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1459. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1460. CFrame.new(-0.765071511, 0.713329196, -1.33339572, 0.806773663, -0.589637101, 0.0380075909, -0.0593131669, -0.144820824, -0.987678587, 0.587876141, 0.794579327, -0.151810646) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1461. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1462. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1463. }, .3, false)
  1464. moter.C0 = clerp(moter.C0, CFrame.new(-3.11792302, -4.38957644, -6.17307758, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1465. end
  1466. for i = 0, 1, 0.1 do
  1467. swait()
  1468. PlayAnimationFromTable({
  1469. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1470. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1471. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1472. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1473. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1474. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1475. }, .3, false)
  1476. moter.C0 = clerp(moter.C0, CFrame.new(-4.75418425, -11.0036821, -5.46682024, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1477. end
  1478. for i = 0, 1, 0.1 do
  1479. swait()
  1480. PlayAnimationFromTable({
  1481. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1482. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1483. CFrame.new(1.53487122, 0.693031669, -1.2761941, 0.971029937, -0.0455975756, 0.234558791, 0.224243268, -0.165136561, -0.960441589, 0.0825273693, 0.985216737, -0.150127783) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1484. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1485. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1486. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1487. }, .3, false)
  1488. moter.C0 = clerp(moter.C0, CFrame.new(-3.07011247, -4.56561279, 4.8648262, -0.238876954, 0.1210135, -0.963477969, 0.153487697, 0.984439611, 0.0855914056, 0.958844125, -0.127436548, -0.25373584) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1489. end
  1490. for i = 0, 1, 0.1 do
  1491. swait()
  1492. PlayAnimationFromTable({
  1493. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1494. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1495. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1496. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1497. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1498. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1499. }, .3, false)
  1500. moter.C0 = clerp(moter.C0, CFrame.new(-4.75418425, -11.0036821, -5.46682024, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1501. end
  1502. for i = 0, 1, 0.1 do
  1503. swait()
  1504. PlayAnimationFromTable({
  1505. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1506. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1507. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1508. CFrame.new(-0.765071511, 0.713329196, -1.33339572, 0.806773663, -0.589637101, 0.0380075909, -0.0593131669, -0.144820824, -0.987678587, 0.587876141, 0.794579327, -0.151810646) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1509. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1510. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1511. }, .3, false)
  1512. moter.C0 = clerp(moter.C0, CFrame.new(-3.11792302, -4.38957644, -6.17307758, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1513. end
  1514. for i = 0, 1, 0.1 do
  1515. swait()
  1516. PlayAnimationFromTable({
  1517. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1518. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1519. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1520. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1521. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1522. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1523. }, .3, false)
  1524. moter.C0 = clerp(moter.C0, CFrame.new(-4.75418425, -11.0036821, -5.46682024, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1525. end
  1526. for i = 0, 1, 0.1 do
  1527. swait()
  1528. PlayAnimationFromTable({
  1529. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1530. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1531. CFrame.new(1.53487122, 0.693031669, -1.2761941, 0.971029937, -0.0455975756, 0.234558791, 0.224243268, -0.165136561, -0.960441589, 0.0825273693, 0.985216737, -0.150127783) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1532. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1533. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1534. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1535. }, .3, false)
  1536. moter.C0 = clerp(moter.C0, CFrame.new(-3.07011247, -4.56561279, 4.8648262, -0.238876954, 0.1210135, -0.963477969, 0.153487697, 0.984439611, 0.0855914056, 0.958844125, -0.127436548, -0.25373584) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1537. end
  1538. for i = 0, 1, 0.1 do
  1539. swait()
  1540. PlayAnimationFromTable({
  1541. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1542. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1543. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1544. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1545. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1546. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1547. }, .3, false)
  1548. moter.C0 = clerp(moter.C0, CFrame.new(-4.75418425, -11.0036821, -5.46682024, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1549. end
  1550. for i = 0, 1, 0.1 do
  1551. swait()
  1552. PlayAnimationFromTable({
  1553. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1554. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1555. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1556. CFrame.new(-0.765071511, 0.713329196, -1.33339572, 0.806773663, -0.589637101, 0.0380075909, -0.0593131669, -0.144820824, -0.987678587, 0.587876141, 0.794579327, -0.151810646) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1557. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1558. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1559. }, .3, false)
  1560. moter.C0 = clerp(moter.C0, CFrame.new(-3.11792302, -4.38957644, -6.17307758, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1561. end
  1562. for i = 0, 1, 0.1 do
  1563. swait()
  1564. PlayAnimationFromTable({
  1565. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1566. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1567. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1568. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1569. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1570. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1571. }, .3, false)
  1572. moter.C0 = clerp(moter.C0, CFrame.new(-4.75418425, -11.0036821, -5.46682024, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1573. end
  1574. for i = 0, 1, 0.1 do
  1575. swait()
  1576. PlayAnimationFromTable({
  1577. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1578. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1579. CFrame.new(1.53487122, 0.693031669, -1.2761941, 0.971029937, -0.0455975756, 0.234558791, 0.224243268, -0.165136561, -0.960441589, 0.0825273693, 0.985216737, -0.150127783) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1580. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1581. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1582. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1583. }, .3, false)
  1584. moter.C0 = clerp(moter.C0, CFrame.new(-3.07011247, -4.56561279, 4.8648262, -0.238876954, 0.1210135, -0.963477969, 0.153487697, 0.984439611, 0.0855914056, 0.958844125, -0.127436548, -0.25373584) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1585. end
  1586. for i = 0, 1, 0.1 do
  1587. swait()
  1588. PlayAnimationFromTable({
  1589. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1590. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1591. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1592. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1593. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1594. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1595. }, .3, false)
  1596. moter.C0 = clerp(moter.C0, CFrame.new(-4.75418425, -11.0036821, -5.46682024, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1597. end
  1598. for i = 0, 1, 0.1 do
  1599. swait()
  1600. PlayAnimationFromTable({
  1601. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1602. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1603. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1604. CFrame.new(-0.765071511, 0.713329196, -1.33339572, 0.806773663, -0.589637101, 0.0380075909, -0.0593131669, -0.144820824, -0.987678587, 0.587876141, 0.794579327, -0.151810646) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1605. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1606. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1607. }, .3, false)
  1608. moter.C0 = clerp(moter.C0, CFrame.new(-3.11792302, -4.38957644, -6.17307758, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1609. end
  1610. for i = 0, 1, 0.1 do
  1611. swait()
  1612. PlayAnimationFromTable({
  1613. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1614. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1615. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1616. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1617. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1618. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1619. }, .3, false)
  1620. moter.C0 = clerp(moter.C0, CFrame.new(-4.75418425, -11.0036821, -5.46682024, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1621. end
  1622. for i = 0, 1, 0.1 do
  1623. swait()
  1624. PlayAnimationFromTable({
  1625. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1626. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1627. CFrame.new(1.53487122, 0.693031669, -1.2761941, 0.971029937, -0.0455975756, 0.234558791, 0.224243268, -0.165136561, -0.960441589, 0.0825273693, 0.985216737, -0.150127783) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1628. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1629. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1630. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1631. }, .3, false)
  1632. moter.C0 = clerp(moter.C0, CFrame.new(-3.07011247, -4.56561279, 4.8648262, -0.238876954, 0.1210135, -0.963477969, 0.153487697, 0.984439611, 0.0855914056, 0.958844125, -0.127436548, -0.25373584) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1633. end
  1634. for i = 0, 1, 0.1 do
  1635. swait()
  1636. PlayAnimationFromTable({
  1637. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1638. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1639. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1640. CFrame.new(-1.37114346, 0.0709186792, 0.0675002486, 0.992487252, 0.113685377, 0.0452332124, -0.111621529, 0.992694676, -0.0458077751, -0.0501104109, 0.0404145643, 0.997926056) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1641. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1642. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1643. }, .3, false)
  1644. moter.C0 = clerp(moter.C0, CFrame.new(-4.75418425, -11.0036821, -5.46682024, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1645. end
  1646. for i = 0, 1, 0.1 do
  1647. swait()
  1648. PlayAnimationFromTable({
  1649. CFrame.new(7.38964445e-13, -0.0999969095, -7.62939362e-06, 0.999999881, 0, -9.68575478e-08, 0, 1, 0, 9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1650. CFrame.new(7.38964445e-13, 1.59998691, 7.62939362e-06, 0.999999881, 0, 9.68575478e-08, 0, 1, 0, -9.68575478e-08, 0, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1651. CFrame.new(1.55313313, 0.125685856, 0.0505743995, 0.971031904, -0.231850013, -0.0578137413, 0.224243641, 0.967766225, -0.114652075, 0.0825320259, 0.098366484, 0.99172169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1652. CFrame.new(-0.765071511, 0.713329196, -1.33339572, 0.806773663, -0.589637101, 0.0380075909, -0.0593131669, -0.144820824, -0.987678587, 0.587876141, 0.794579327, -0.151810646) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1653. CFrame.new(0.626110554, -1.89749026, -0.284990191, 0.58778584, -0.0845604911, -0.804585874, -8.47740353e-07, 0.994523704, -0.104523182, 0.809016407, 0.0614379123, 0.584566772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1654. CFrame.new(-0.605535388, -2.03519583, -0.0977549031, 0.976733208, 0.167584971, -0.133820355, -0.175122678, 0.983442605, -0.0466134772, 0.123792976, 0.0689638779, 0.989908516) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1655. }, .3, false)
  1656. moter.C0 = clerp(moter.C0, CFrame.new(-3.11792302, -4.38957644, -6.17307758, -0.238877416, 0.121018231, -0.963479698, -0.96556133, 0.0757470801, 0.248907939, 0.103102855, 0.989758015, 0.0987562239) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1657. end
  1658. con1:Disconnect()
  1659. attack = false
  1660. end
  1661.  
  1662. Mouse.Button1Down:connect(function()
  1663. if attack == false and attacktype == 1 then
  1664. attacktype = 2
  1665. attackone()
  1666. elseif attack == false and attacktype == 2 then
  1667. attacktype = 3
  1668. attacktwo()
  1669. elseif attack == false and attacktype == 3 then
  1670. attacktype = 4
  1671. attackthree()
  1672. elseif attack == false and attacktype == 4 then
  1673. attacktype = 1
  1674. attackfour()
  1675. end
  1676. end)
  1677.  
  1678. Mouse.KeyDown:connect(function(k)
  1679. k = k:lower()
  1680. if attack == false and k == 'z' then
  1681. skill1()
  1682. elseif attack == false and k == 'x' then
  1683. skill2()
  1684. elseif attack == false and k == 'c' then
  1685. skill3()
  1686. elseif attack == false and k == 'v' then
  1687. skill4()
  1688. end
  1689. end)
  1690.  
  1691. while true do
  1692. swait()
  1693. for i, v in pairs(Character:GetChildren()) do
  1694. if v:IsA("Part") then
  1695. v.Material = "Neon"
  1696. elseif v:IsA("Accessory") then
  1697. v:WaitForChild("Handle").Material = "Neon"
  1698. end
  1699. end
  1700. for i, v in pairs(Character:GetChildren()) do
  1701. if v:IsA'Model' then
  1702. for _, c in pairs(v:GetChildren()) do
  1703. if c:IsA'BasePart' then
  1704. c.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001)
  1705. end
  1706. end
  1707. end
  1708. end
  1709. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  1710. velocity = RootPart.Velocity.y
  1711. sine = sine + change
  1712. local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  1713. if RootPart.Velocity.y > 1 and hit == nil then
  1714. Anim = "Jump"
  1715. if attack == false then
  1716. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1717. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1718. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1719. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1720. RH.C0 = clerp(RH.C0, CFrame.new(.5, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1721. LH.C0 = clerp(LH.C0, CFrame.new(-.5, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1722. end
  1723. elseif RootPart.Velocity.y < -1 and hit == nil then
  1724. Anim = "Fall"
  1725. if attack == false then
  1726. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1727. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1728. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1729. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1730. RH.C0 = clerp(RH.C0, CFrame.new(.5, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1731. LH.C0 = clerp(LH.C0, CFrame.new(-.5, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1732. end
  1733. elseif Torsovelocity < 1 and hit ~= nil then
  1734. Anim = "Idle"
  1735. if attack == false then
  1736. change = 1
  1737. for i = 0, .1, 0.1 do
  1738. swait()
  1739. PlayAnimationFromTable({
  1740. CFrame.new(-0, -0, -0, 1, 0, 0, 0, 1, 0, 0, 0, 1) * CFrame.new(0, -0.1 + .1 * math.cos(sine / 20), 0) * CFrame.Angles(0, 0, 0),
  1741. CFrame.new(0, 1.49998999, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) * CFrame.Angles(math.rad(0 + 1 * math.cos(sine / 20)), 0, 0),
  1742. CFrame.new(0.0971713364, 0.48047477, -0.690263033, 0.156437621, 0.987688661, 5.07910954e-07, -0.103244141, 0.0163530931, -0.994521618, -0.982278764, 0.155580461, 0.104531169) * CFrame.new(0, 0, 0 - 0.1 * math.cos(sine / 20)) * CFrame.Angles(0 + 0.1 * math.cos(sine / 20), 0, 0),
  1743. CFrame.new(-0.222224712, 0.450065523, -0.758310735, 0.156435266, -0.986334026, -0.05169167, 3.74561705e-06, 0.0523365997, -0.99862951, 0.987687588, 0.156220689, 0.00819099043) * CFrame.new(0, 0, 0) * CFrame.new(0, 0, 0 - 0.1 * math.cos(sine / 20)) * CFrame.Angles(0 + 0.1 * math.cos(sine / 20), 0, 0),
  1744. CFrame.new(0.499998271, -1.99999285, 6.7371875e-06, 0.99862957, 0, -0.0523360297, 0, 1, 0, 0.0523360297, 0, 0.99862957) * CFrame.new(0, 0, 0) * CFrame.new(0, 0, 0 - 0.1 * math.cos(sine / 20)) * CFrame.Angles(0 + 0.1 * math.cos(sine / 20), 0, 0),
  1745. CFrame.new(-0.500002325, -1.99999285, -6.53788447e-07, 0.998629332, 0, 0.0523360744, 0, 1, 0, -0.0523360744, 0, 0.998629332) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1746. }, .3, false)
  1747. moter.C0 = clerp(moter.C0, CFrame.new(-3.02235246, 1.92388391, -3.48753023, -0.103249773, -0.156442299, -0.982277453, 0.0163175277, -0.987687945, 0.155588895, -0.994521618, 3.61958882e-05, 0.104531169) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1748. end
  1749. end
  1750. elseif Torsovelocity > 2 and hit ~= nil then
  1751. Anim = "Walk"
  1752. if attack == false then
  1753. moter.C0 = clerp(moter.C0, CFrame.new(1.6 + 1 * math.cos((sine) / 40),-2,0) * angles(-math.rad(50),0,math.rad(50)), 0.3)
  1754. PlayAnimationFromTable({
  1755. CFrame.new(-0, -0, 0, 1, 0, 0, 0, 0.996187985, 0.0871556774, 0, -0.0871556699, 0.996194661) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1756. CFrame.new(0, 1.49999499, 1.11760201e-08, 1, 0, 0, 0, 0.999998331, -7.45067918e-09, 0, 7.45069251e-09, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1757. CFrame.new(1.18911254, 0.0782896876, 0.255851567, 0.993456841, -0.0824780688, 0.0789991543, 0.03798889, 0.8909688, 0.452474058, -0.10770496, -0.446512401, 0.888272345) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1758. CFrame.new(0.0464204997, 0.397541106, -0.658183217, 0.0588601753, -0.997954249, 0.0249623619, 0.311851442, -0.00537268305, -0.950118005, 0.948310018, 0.0637085587, 0.310896575) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1759. CFrame.new(0.5, -2.00000334, 2.67028881e-005, 1, 0, 0, 0, 1.00000024, 0, 0, 0, 1.00000024) * CFrame.new(0, 0+ .3 * math.cos((sine) / 2), 0 + 1 * math.cos((sine) / 4)) * CFrame.Angles(math.rad(0 - 50 * math.cos((sine) / 4)), math.rad(0), math.rad(0)),
  1760. CFrame.new(-0.5, -2.00000334, 2.67028881e-005, 1, 0, 0, 0, 1.00000024, 0, 0, 0, 1.00000024) * CFrame.new(0, 0+ .3 * math.cos((sine) / 2), 0 - 1 * math.cos((sine) / 4)) * CFrame.Angles(math.rad(0 + 50 * math.cos((sine) / 4)), math.rad(0), math.rad(0)),
  1761. }, .3, false)
  1762. end
  1763. end
  1764. end
  1765. if #Effects > 0 then
  1766. for e = 1, #Effects do
  1767. if Effects[e] ~= nil then
  1768. local Thing = Effects[e]
  1769. if Thing ~= nil then
  1770. Part = Thing[1]
  1771. Mode = Thing[2]
  1772. Delay = Thing[3]
  1773. IncX = Thing[4]
  1774. IncY = Thing[5]
  1775. IncZ = Thing[6]
  1776. if Thing[2] == "Shoot" then
  1777. Look = Thing[1]
  1778. hit, pos = rayCast(Thing[4], Look, 5, Character)
  1779. mag = (Thing[4] - pos).magnitude
  1780. Thing[9].CFrame = CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(-1.57, 0, 0)
  1781. Thing[4] = Thing[4] + (Look * 5)
  1782. Thing[3] = Thing[3] - 1
  1783. if hit ~= nil then
  1784. print(hit.Parent)
  1785. Thing[3] = 0
  1786. --Damagefunc(hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, .2, 2, math.random(1, 5), nil, nil, true, "Movement", .02, 500)
  1787. --MagniDamage(Thing[9], 5, Thing[5], Thing[6], Thing[7], "Normal", RootPart, .2, 2, math.random(1, 5), nil, nil, true, "Movement", .02, 500)
  1788. end
  1789. if Thing[3] <= 0 then
  1790. if hit == nil then
  1791. Effects.Sphere.Create(BrickColor.new("Crimson"), Thing[9].CFrame, 1, 1, 1, 2, 2, 2, .1)
  1792. CFuncs.Sound.Create("285370517", Thing[9], 1, 1)
  1793. else
  1794. Effects.Wave.Create(BrickColor.new("Crimson"), Thing[9].CFrame * CFrame.fromEulerAnglesXYZ(3.2, 0, 0), .2, .2, .2, .6, .8, .6, .1)
  1795. CFuncs.Sound.Create("285370517", Thing[9], .6, 1)
  1796. CFuncs.Sound.Create("285370545", Thing[9], 1, 1)
  1797. end
  1798. for i = 1, math.random(2, 4) do
  1799. Effects.Break.Create(BrickColor.new("Crimson"), Thing[9].CFrame, math.random(20, 40) / 100, math.random(100, 600) / 100, math.random(20, 40) / 100)
  1800. end
  1801. Thing[9].Transparency = 1
  1802. game:GetService("Debris"):AddItem(Thing[9], 1)
  1803. table.remove(Effects, e)
  1804. end
  1805. end
  1806. if Thing[2] ~= "Shoot" then
  1807. if Thing[1].Transparency <= 1 then
  1808. if Thing[2] == "Block1" then
  1809. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1810. Mesh = Thing[7]
  1811. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1812. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1813. elseif Thing[2] == "Block2" then
  1814. Thing[1].CFrame = Thing[1].CFrame
  1815. Mesh = Thing[7]
  1816. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1817. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1818. elseif Thing[2] == "Block3" then
  1819. Thing[1].CFrame = Thing[8].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1820. Mesh = Thing[7]
  1821. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1822. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1823. elseif Thing[2] == "Block4" then
  1824. Thing[1].CFrame = Thing[8].CFrame * CFrame.new(0, -Thing[7].Scale.Y, 0) * CFrame.fromEulerAnglesXYZ(3.14, 0, 0)
  1825. Mesh = Thing[7]
  1826. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1827. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1828. elseif Thing[2] == "Block2Fire" then
  1829. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1830. Mesh = Thing[7]
  1831. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1832. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1833. if Thing[1].Transparency >= .3 then
  1834. Thing[1].BrickColor = BrickColor.new("Bright red")
  1835. else
  1836. Thing[1].BrickColor = BrickColor.new("Bright yellow")
  1837. end
  1838. elseif Thing[2] == "Ice" then
  1839. if Thing[6] <= Thing[5] then
  1840. Thing[6] = Thing[6] + .3
  1841. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, 1, 0)
  1842. else
  1843. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1844. end
  1845. elseif Thing[2] == "Shatter" then
  1846. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1847. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  1848. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  1849. Thing[6] = Thing[6] + Thing[5]
  1850. elseif Thing[2] == "Fire" then
  1851. Thing[1].CFrame = CFrame.new(Thing[1].Position) + Vector3.new(0, 0.2, 0)
  1852. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1853. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1854. elseif Thing[2] == "Cylinder" then
  1855. Mesh = Thing[7]
  1856. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1857. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1858. elseif Thing[2] == "Cylinder2" then
  1859. Mesh = Thing[7]
  1860. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1861. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, Thing[8], 0)
  1862. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1863. elseif Thing[2] == "Blood" then
  1864. Mesh = Thing[7]
  1865. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, .5, 0)
  1866. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1867. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1868. elseif Thing[2] == "Elec" then
  1869. Mesh = Thing[7]
  1870. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  1871. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1872. elseif Thing[2] == "Disappear" then
  1873. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1874. end
  1875. else
  1876. Part.Parent = nil
  1877. table.remove(Effects, e)
  1878. end
  1879. end
  1880. end
  1881. end
  1882. end
  1883. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement