Advertisement
B0bstone

Untitled

Sep 17th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 224.00 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.  
  46. function rotA()
  47. while renderstepped:wait() do
  48. spawn(rot)
  49. my = my + 1.5
  50. if my > 360 then
  51. my = 0
  52. end
  53. end
  54. end
  55.  
  56. spawn(rotA)
  57.  
  58. function lerp(dist,inc)
  59. for i = 0,10 do
  60. renderstepped:wait()
  61. for x,v in pairs(children) do
  62. --lookvector
  63. --( centerPoint.Y + distance * Math.Sin( angle ) )
  64. --diff rot is 90
  65. v.Size = v.Size + Vector3.new(.1/(dist/math.abs(dist)),.1/(dist/math.abs(dist)),.1/(dist/math.abs(dist)))
  66. v.Transparency = v.Transparency - .1/(dist/math.abs(dist))
  67. v.CFrame = CFrame.new(v.Position)*CFrame.Angles(0,math.rad(90*x+my),0)*CFrame.new(dist/10,0,0)
  68. end
  69. end
  70. end
  71.  
  72. local hello = Instance.new("Sound")
  73. hello.SoundId = "rbxassetid://538496845"
  74. hello.PlaybackSpeed = 1
  75. hello.Volume = 2
  76. hello.Parent = Head
  77. hello.Looped = true
  78. hello:Play()
  79.  
  80. local m = Create("Model"){
  81. Parent = Character,
  82. Name = "WeaponModel",
  83. }
  84.  
  85. Humanoid.Animator.Parent = nil
  86. Character.Animate.Parent = nil
  87.  
  88. local newMotor = function(part0, part1, c0, c1)
  89. local w = Create('Motor'){
  90. Parent = part0,
  91. Part0 = part0,
  92. Part1 = part1,
  93. C0 = c0,
  94. C1 = c1,
  95. }
  96. return w
  97. end
  98.  
  99. function clerp(a, b, t)
  100. return a:lerp(b, t)
  101. end
  102.  
  103. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  104. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  105. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  106. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  107. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  108. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  109. RootJoint.C1 = CFrame.new(0, 0, 0)
  110. RootJoint.C0 = CFrame.new(0, 0, 0)
  111. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  112. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  113.  
  114. local rarmc1 = RW.C1
  115. local larmc1 = LW.C1
  116. local rlegc1 = RH.C1
  117. local llegc1 = LH.C1
  118.  
  119. local resetc1 = false
  120.  
  121. function PlayAnimationFromTable(table, speed, bool)
  122. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  123. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  124. RW.C0 = clerp(RW.C0, table[3], speed)
  125. LW.C0 = clerp(LW.C0, table[4], speed)
  126. RH.C0 = clerp(RH.C0, table[5], speed)
  127. LH.C0 = clerp(LH.C0, table[6], speed)
  128. if bool == true then
  129. if resetc1 == false then
  130. resetc1 = true
  131. RootJoint.C1 = RootJoint.C1
  132. Torso.Neck.C1 = Torso.Neck.C1
  133. RW.C1 = rarmc1
  134. LW.C1 = larmc1
  135. RH.C1 = rlegc1
  136. LH.C1 = llegc1
  137. end
  138. end
  139. end
  140.  
  141. ArtificialHB = Create("BindableEvent", script){
  142. Parent = script,
  143. Name = "Heartbeat",
  144. }
  145.  
  146. script:WaitForChild("Heartbeat")
  147.  
  148. frame = 1 / 30
  149. tf = 0
  150. allowframeloss = false
  151. tossremainder = false
  152. lastframe = tick()
  153. script.Heartbeat:Fire()
  154.  
  155. game:GetService("RunService").Heartbeat:connect(function(s, p)
  156. tf = tf + s
  157. if tf >= frame then
  158. if allowframeloss then
  159. script.Heartbeat:Fire()
  160. lastframe = tick()
  161. else
  162. for i = 1, math.floor(tf / frame) do
  163. script.Heartbeat:Fire()
  164. end
  165. lastframe = tick()
  166. end
  167. if tossremainder then
  168. tf = 0
  169. else
  170. tf = tf - frame * math.floor(tf / frame)
  171. end
  172. end
  173. end)
  174.  
  175. function swait(num)
  176. if num == 0 or num == nil then
  177. ArtificialHB.Event:wait()
  178. else
  179. for i = 0, num do
  180. ArtificialHB.Event:wait()
  181. end
  182. end
  183. end
  184.  
  185. function RemoveOutlines(part)
  186. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  187. end
  188.  
  189. CFuncs = {
  190. Part = {
  191. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  192. local Part = Create("Part"){
  193. Parent = Parent,
  194. Reflectance = Reflectance,
  195. Transparency = Transparency,
  196. CanCollide = false,
  197. Locked = true,
  198. BrickColor = BrickColor.new(tostring(BColor)),
  199. Name = Name,
  200. Size = Size,
  201. Material = Material,
  202. }
  203. RemoveOutlines(Part)
  204. return Part
  205. end;
  206. };
  207.  
  208. Mesh = {
  209. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  210. local Msh = Create(Mesh){
  211. Parent = Part,
  212. Offset = OffSet,
  213. Scale = Scale,
  214. }
  215. if Mesh == "SpecialMesh" then
  216. Msh.MeshType = MeshType
  217. Msh.MeshId = MeshId
  218. end
  219. return Msh
  220. end;
  221. };
  222.  
  223. Weld = {
  224. Create = function(Parent, Part0, Part1, C0, C1)
  225. local Weld = Create("Weld"){
  226. Parent = Parent,
  227. Part0 = Part0,
  228. Part1 = Part1,
  229. C0 = C0,
  230. C1 = C1,
  231. }
  232. return Weld
  233. end;
  234. };
  235.  
  236. Sound = {
  237. Create = function(id, par, vol, pit)
  238. coroutine.resume(coroutine.create(function()
  239. local Sound = Create("Sound"){
  240. Volume = vol,
  241. Pitch = pit or 1,
  242. SoundId = "rbxassetid://" .. id,
  243. Parent = par or workspace,
  244. }
  245. Sound:play()
  246. game:GetService("Debris"):AddItem(Sound, 10)
  247. end))
  248. end;
  249. };
  250.  
  251. Decal = {
  252. Create = function(Color, Texture, Transparency, Name, Parent)
  253. local Decal = Create("Decal"){
  254. Color3 = Color,
  255. Texture = "rbxassetid://" .. Texture,
  256. Transparency = Transparency,
  257. Name = Name,
  258. Parent = Parent,
  259. }
  260. return Decal
  261. end;
  262. };
  263.  
  264. BillboardGui = {
  265. Create = function(Parent, Image, Position, Size)
  266. local BillPar = CFuncs.Part.Create(Parent, "SmoothPlastic", 0, 1, BrickColor.new("Black"), "BillboardGuiPart", Vector3.new(1, 1, 1))
  267. BillPar.CFrame = CFrame.new(Position)
  268. local Bill = Create("BillboardGui"){
  269. Parent = BillPar,
  270. Adornee = BillPar,
  271. Size = UDim2.new(1, 0, 1, 0),
  272. SizeOffset = Vector2.new(Size, Size),
  273. }
  274. local d = Create("ImageLabel", Bill){
  275. Parent = Bill,
  276. BackgroundTransparency = 1,
  277. Size = UDim2.new(1, 0, 1, 0),
  278. Image = "rbxassetid://" .. Image,
  279. }
  280. return BillPar
  281. end
  282. };
  283.  
  284. ParticleEmitter = {
  285. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  286. local Particle = Create("ParticleEmitter"){
  287. Parent = Parent,
  288. Color = ColorSequence.new(Color1, Color2),
  289. LightEmission = LightEmission,
  290. Size = Size,
  291. Texture = Texture,
  292. Transparency = Transparency,
  293. ZOffset = ZOffset,
  294. Acceleration = Accel,
  295. Drag = Drag,
  296. LockedToPart = LockedToPart,
  297. VelocityInheritance = VelocityInheritance,
  298. EmissionDirection = EmissionDirection,
  299. Enabled = Enabled,
  300. Lifetime = LifeTime,
  301. Rate = Rate,
  302. Rotation = Rotation,
  303. RotSpeed = RotSpeed,
  304. Speed = Speed,
  305. VelocitySpread = VelocitySpread,
  306. }
  307. return Particle
  308. end;
  309. };
  310.  
  311. CreateTemplate = {
  312.  
  313. };
  314. }
  315.  
  316. function rayCast(Position, Direction, Range, Ignore)
  317. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  318. end
  319.  
  320. function FindNearestTorso(pos)
  321. local list = (game.Workspace:children())
  322. local torso = nil
  323. local dist = 1000
  324. local temp, human, temp2 = nil, nil, nil
  325. for x = 1, #list do
  326. temp2 = list[x]
  327. if temp2.className == "Model" and temp2.Name ~= Character.Name then
  328. temp = temp2:findFirstChild("Torso")
  329. human = temp2:findFirstChild("Humanoid")
  330. if temp ~= nil and human ~= nil and human.Health > 0 and (temp.Position - pos).magnitude < dist then
  331. local dohit = true
  332. if dohit == true then
  333. torso = temp
  334. dist = (temp.Position - pos).magnitude
  335. end
  336. end
  337. end
  338. end
  339. return torso, dist
  340. end
  341.  
  342. local BladeHitSounds = {
  343. "199149137",
  344. "199149186",
  345. "199149221",
  346. "199149235",
  347. "199149269",
  348. "199149297"
  349. }
  350.  
  351. local FistHitSounds = {
  352. "199149137",
  353. "199149186",
  354. "199149221",
  355. "199149235",
  356. "199149269",
  357. "199149297"
  358. }
  359.  
  360. --[[
  361. Thanks for using Build-To-Lua by jarredbcv.
  362. ]]--
  363.  
  364. New = function(Object, Parent, Name, Data)
  365. local Object = Instance.new(Object)
  366. for Index, Value in pairs(Data or {}) do
  367. Object[Index] = Value
  368. end
  369. Object.Parent = Parent
  370. Object.Name = Name
  371. return Object
  372. end
  373.  
  374. Shadowblade = New("Model",Character,"Shadowblade",{})
  375. Handle = New("Part",Shadowblade,"Handle",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  376. moter = New("Weld",Handle,"Weld",{Part0 = RightArm,Part1 = Handle,})
  377. Wedge = New("WedgePart",Shadowblade,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  378. 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),})
  379. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  380. 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),})
  381. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  382. 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),})
  383. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  384. 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),})
  385. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  386. 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),})
  387. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  388. 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),})
  389. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  390. 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),})
  391. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  392. 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),})
  393. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  394. 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),})
  395. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  396. 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),})
  397. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  398. 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),})
  399. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  400. 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),})
  401. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  402. 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),})
  403. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  404. 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),})
  405. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  406. 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),})
  407. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  408. 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),})
  409. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  410. 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),})
  411. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  412. 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),})
  413. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  414. 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),})
  415. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  416. 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),})
  417. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  418. 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),})
  419. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  420. 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),})
  421. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  422. 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),})
  423. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  424. 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),})
  425. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  426. 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),})
  427. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  428. 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),})
  429. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  430. 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),})
  431. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  432. 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),})
  433. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  434. 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),})
  435. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  436. 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),})
  437. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  438. 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),})
  439. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  440. 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),})
  441. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  442. 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),})
  443. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  444. 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),})
  445. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  446. 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),})
  447. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  448. 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),})
  449. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  450. 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),})
  451. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  452. 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),})
  453. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  454. 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),})
  455. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  456. 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),})
  457. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  458. 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),})
  459. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  460. 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),})
  461. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  462. 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),})
  463. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  464. 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),})
  465. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  466. 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),})
  467. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  468. 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),})
  469. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  470. 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),})
  471. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  472. 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),})
  473. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  474. 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),})
  475. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  476. 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),})
  477. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  478. 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),})
  479. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  480. 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),})
  481. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  482. 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),})
  483. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  484. 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),})
  485. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  486. 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),})
  487. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  488. 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),})
  489. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  490. 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),})
  491. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  492. 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),})
  493. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  494. 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),})
  495. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  496. 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),})
  497. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  498. 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),})
  499. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  500. 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),})
  501. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  502. 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),})
  503. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  504. 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),})
  505. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  506. 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),})
  507. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  508. 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),})
  509. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  510. 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),})
  511. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  512. 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),})
  513. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  514. 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),})
  515. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  516. 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),})
  517. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  518. 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),})
  519. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  520. 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),})
  521. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  522. 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),})
  523. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  524. 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),})
  525. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  526. 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),})
  527. Wedge = New("WedgePart",Shadowblade,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  528. 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),})
  529. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  530. 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),})
  531. Wedge = New("WedgePart",Shadowblade,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  532. 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),})
  533. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  534. 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),})
  535. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  536. 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),})
  537. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  538. 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),})
  539. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  540. 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),})
  541. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  542. 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),})
  543. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  544. 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),})
  545. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  546. 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),})
  547. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  548. 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),})
  549. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  550. 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),})
  551. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  552. 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),})
  553. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  554. 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),})
  555. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  556. 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),})
  557. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  558. 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),})
  559. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  560. 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),})
  561. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  562. 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),})
  563. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  564. 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),})
  565. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  566. 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),})
  567. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  568. 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),})
  569. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  570. 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),})
  571. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  572. 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),})
  573. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  574. 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),})
  575. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  576. 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),})
  577. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  578. 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),})
  579. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  580. 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),})
  581. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  582. 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),})
  583. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  584. 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),})
  585. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  586. 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),})
  587. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  588. 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),})
  589. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  590. 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),})
  591. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  592. 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),})
  593. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  594. 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),})
  595. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  596. 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),})
  597. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  598. 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),})
  599. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  600. 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),})
  601. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  602. 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),})
  603. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  604. 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),})
  605. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  606. 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),})
  607. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  608. 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),})
  609. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  610. 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),})
  611. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  612. 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),})
  613. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  614. 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),})
  615. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  616. 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),})
  617. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  618. 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),})
  619. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  620. 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),})
  621. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  622. 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),})
  623. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  624. 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),})
  625. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  626. 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),})
  627. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  628. 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),})
  629. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  630. 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),})
  631. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  632. 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),})
  633. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  634. 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),})
  635. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  636. 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),})
  637. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  638. 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),})
  639. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  640. 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),})
  641. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  642. 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),})
  643. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  644. 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),})
  645. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  646. 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),})
  647. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  648. 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),})
  649. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  650. 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),})
  651. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  652. 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),})
  653. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  654. 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),})
  655. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  656. 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),})
  657. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  658. 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),})
  659. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  660. 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),})
  661. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  662. 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),})
  663. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  664. 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),})
  665. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  666. 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),})
  667. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  668. 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),})
  669. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  670. 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),})
  671. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  672. 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),})
  673. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  674. 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),})
  675. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  676. 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),})
  677. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  678. 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),})
  679. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  680. 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),})
  681. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  682. 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),})
  683. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  684. 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),})
  685. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  686. 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),})
  687. Wedge = New("WedgePart",Shadowblade,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  688. 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),})
  689. Hitbox = New("Part",Shadowblade,"Hitbox",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  690. 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),})
  691. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  692. 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),})
  693. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  694. 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),})
  695. Part = New("Part",Shadowblade,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Granite,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),})
  696. 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),})
  697.  
  698. function Damage(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  699. if hit.Parent == nil then
  700. return
  701. end
  702. local h = hit.Parent:FindFirstChildOfClass("Humanoid")
  703. for _, v in pairs(hit.Parent:children()) do
  704. if v:IsA("Humanoid") then
  705. h = v
  706. end
  707. end
  708. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("UpperTorso") ~= nil then
  709. warn'No R15 allowed'
  710. hit.Parent:FindFirstChild("Head"):BreakJoints()
  711. end
  712. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  713. if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  714. if hit.Parent.DebounceHit.Value == true then
  715. return
  716. end
  717. end
  718. local c = Create("ObjectValue"){
  719. Name = "creator",
  720. Value = game:service("Players").LocalPlayer,
  721. Parent = h,
  722. }
  723. game:GetService("Debris"):AddItem(c, .5)
  724. if HitSound ~= nil and HitPitch ~= nil then
  725. CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  726. end
  727. local Damage = math.random(minim, maxim)
  728. local blocked = false
  729. local block = hit.Parent:findFirstChild("Block")
  730. if block ~= nil then
  731. if block.className == "IntValue" then
  732. if block.Value > 0 then
  733. blocked = true
  734. block.Value = block.Value - 1
  735. print(block.Value)
  736. end
  737. end
  738. end
  739. if blocked == false then
  740. h.Health = h.Health - Damage
  741. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
  742. else
  743. h.Health = h.Health - (Damage / 2)
  744. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
  745. end
  746. if Type == "Knockdown" then
  747. local hum = hit.Parent.Humanoid
  748. hum.PlatformStand = true
  749. coroutine.resume(coroutine.create(function(HHumanoid)
  750. swait(1)
  751. HHumanoid.PlatformStand = false
  752. end), hum)
  753. local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  754. local bodvol = Create("BodyVelocity"){
  755. velocity = angle * knockback,
  756. P = 5000,
  757. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  758. Parent = hit,
  759. }
  760. local rl = Create("BodyAngularVelocity"){
  761. P = 3000,
  762. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  763. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  764. Parent = hit,
  765. }
  766. game:GetService("Debris"):AddItem(bodvol, .5)
  767. game:GetService("Debris"):AddItem(rl, .5)
  768. elseif Type == "Normal" then
  769. local vp = Create("BodyVelocity"){
  770. P = 500,
  771. maxForce = Vector3.new(math.huge, 0, math.huge),
  772. velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  773. }
  774. if knockback > 0 then
  775. vp.Parent = hit.Parent.Torso
  776. end
  777. game:GetService("Debris"):AddItem(vp, .5)
  778. elseif Type == "Up" then
  779. local bodyVelocity = Create("BodyVelocity"){
  780. velocity = Vector3.new(0, 20, 0),
  781. P = 5000,
  782. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  783. Parent = hit,
  784. }
  785. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  786. elseif Type == "DarkUp" then
  787. coroutine.resume(coroutine.create(function()
  788. for i = 0, 1, 0.1 do
  789. swait()
  790. Effects.Block.Create(BrickColor.new("Black"), hit.Parent.Torso.CFrame, 5, 5, 5, 1, 1, 1, .08, 1)
  791. end
  792. end))
  793. local bodyVelocity = Create("BodyVelocity"){
  794. velocity = Vector3.new(0, 20, 0),
  795. P = 5000,
  796. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  797. Parent = hit,
  798. }
  799. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  800. elseif Type == "Snare" then
  801. local bp = Create("BodyPosition"){
  802. P = 2000,
  803. D = 100,
  804. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  805. position = hit.Parent.Torso.Position,
  806. Parent = hit.Parent.Torso,
  807. }
  808. game:GetService("Debris"):AddItem(bp, 1)
  809. elseif Type == "Freeze" then
  810. local BodPos = Create("BodyPosition"){
  811. P = 50000,
  812. D = 1000,
  813. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  814. position = hit.Parent.Torso.Position,
  815. Parent = hit.Parent.Torso,
  816. }
  817. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  818. elseif Type == "Frostbite" then
  819. local hum = hit.Parent.Humanoid
  820. hum.PlatformStand = true
  821. coroutine.resume(coroutine.create(function(HHumanoid)
  822. swait(1)
  823. HHumanoid.PlatformStand = false
  824. end), hum)
  825. local BodGy = Create("BodyGyro") {
  826. maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  827. P = 20e+003,
  828. Parent = hit.Parent.Torso,
  829. cframe = hit.Parent.Torso.CFrame,
  830. }
  831. hit.Parent.Torso.Anchored = true
  832. coroutine.resume(coroutine.create(function(Part)
  833. swait(1.5)
  834. Part.Anchored = false
  835. end), hit.Parent.Torso)
  836. game:GetService("Debris"):AddItem(BodPos, 3)
  837. game:GetService("Debris"):AddItem(BodGy, 3)
  838. end
  839. local debounce = Create("BoolValue"){
  840. Name = "DebounceHit",
  841. Parent = hit.Parent,
  842. Value = true,
  843. }
  844. game:GetService("Debris"):AddItem(debounce, Delay)
  845. c = Create("ObjectValue"){
  846. Name = "creator",
  847. Value = Player,
  848. Parent = h,
  849. }
  850. game:GetService("Debris"):AddItem(c, .5)
  851. end
  852. end
  853.  
  854. function ShowDamage(Pos, Text, Time, Color)
  855. local Rate = (1 / 30)
  856. local Pos = (Pos or Vector3.new(0, 0, 0))
  857. local Text = (Text or "")
  858. local Time = (Time or 2)
  859. local Color = (Color or Color3.new(1, 0, 1))
  860. local EffectPart = CFuncs.Part.Create(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  861. EffectPart.Anchored = true
  862. local BillboardGui = Create("BillboardGui"){
  863. Size = UDim2.new(3, 0, 3, 0),
  864. Adornee = EffectPart,
  865. Parent = EffectPart,
  866. }
  867. local TextLabel = Create("TextLabel"){
  868. BackgroundTransparency = 1,
  869. Size = UDim2.new(1, 0, 1, 0),
  870. Text = Text,
  871. Font = "SciFi",
  872. TextColor3 = Color,
  873. TextScaled = true,
  874. Parent = BillboardGui,
  875. }
  876. game.Debris:AddItem(EffectPart, (Time))
  877. EffectPart.Parent = game:GetService("Workspace")
  878. delay(0, function()
  879. local Frames = (Time / Rate)
  880. for Frame = 1, Frames do
  881. wait(Rate)
  882. local Percent = (Frame / Frames)
  883. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  884. TextLabel.TextTransparency = Percent
  885. end
  886. if EffectPart and EffectPart.Parent then
  887. EffectPart:Destroy()
  888. end
  889. end)
  890. end
  891.  
  892. function MagnitudeDamage(Part, Magnitude, MinimumDamage, MaximumDamage, KnockBack, Type, HitSound, HitPitch)
  893. for _, c in pairs(workspace:children()) do
  894. local hum = c:findFirstChild("Humanoid")
  895. if hum ~= nil then
  896. local head = c:findFirstChild("Torso")
  897. if head ~= nil then
  898. local targ = head.Position - Part.Position
  899. local mag = targ.magnitude
  900. if mag <= Magnitude and c.Name ~= Player.Name then
  901. Damage(head, head, MinimumDamage, MaximumDamage, KnockBack, Type, RootPart, .1, "rbxassetid://" .. HitSound, HitPitch)
  902. end
  903. end
  904. end
  905. end
  906. end
  907.  
  908. EffectModel = Create("Model"){
  909. Parent = Character,
  910. Name = "Effects",
  911. }
  912.  
  913. Effects = {
  914.  
  915. Block = {
  916. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type, Part)
  917. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  918. prt.Anchored = true
  919. prt.CFrame = cframe
  920. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  921. game:GetService("Debris"):AddItem(prt, 10)
  922. if Type == 1 or Type == nil then
  923. table.insert(Effects, {
  924. prt,
  925. "Block1",
  926. delay,
  927. x3,
  928. y3,
  929. z3,
  930. msh
  931. })
  932. elseif Type == 2 then
  933. table.insert(Effects, {
  934. prt,
  935. "Block2",
  936. delay,
  937. x3,
  938. y3,
  939. z3,
  940. msh
  941. })
  942. elseif Type == 3 then
  943. table.insert(Effects, {
  944. prt,
  945. "Block3",
  946. delay,
  947. x3,
  948. y3,
  949. z3,
  950. msh,
  951. Part
  952. })
  953. elseif Type == 4 then
  954. table.insert(Effects, {
  955. prt,
  956. "Block2Fire",
  957. delay,
  958. x3,
  959. y3,
  960. z3,
  961. msh
  962. })
  963. end
  964. end
  965.  
  966. },
  967.  
  968. Cylinder = {
  969. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  970. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  971. prt.Anchored = true
  972. prt.CFrame = cframe
  973. local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  974. game:GetService("Debris"):AddItem(prt, 10)
  975. table.insert(Effects, {
  976. prt,
  977. "Cylinder",
  978. delay,
  979. x3,
  980. y3,
  981. z3,
  982. msh
  983. })
  984. end
  985.  
  986. },
  987.  
  988. Sphere = {
  989. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, parent)
  990. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  991. prt.Anchored = true
  992. prt.CFrame = cframe
  993. if parent == nil then
  994. prt.Parent = workspace
  995. else
  996. prt.Parent = parent
  997. end
  998. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  999. game:GetService("Debris"):AddItem(prt, 10)
  1000. table.insert(Effects, {
  1001. prt,
  1002. "Cylinder",
  1003. delay,
  1004. x3,
  1005. y3,
  1006. z3,
  1007. msh
  1008. })
  1009. end
  1010. },
  1011.  
  1012. Blood = {
  1013. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1014. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1015. prt.Anchored = true
  1016. prt.CFrame = cframe
  1017. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1018. game:GetService("Debris"):AddItem(prt, 10)
  1019. table.insert(Effects, {
  1020. prt,
  1021. "Blood",
  1022. delay,
  1023. x3,
  1024. y3,
  1025. z3,
  1026. msh
  1027. })
  1028. end
  1029. },
  1030.  
  1031. Head = {
  1032. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1033. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1034. prt.Anchored = true
  1035. prt.CFrame = cframe
  1036. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Head", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1037. game:GetService("Debris"):AddItem(prt, 10)
  1038. table.insert(Effects, {
  1039. prt,
  1040. "Cylinder",
  1041. delay,
  1042. x3,
  1043. y3,
  1044. z3,
  1045. msh
  1046. })
  1047. end
  1048. },
  1049.  
  1050. Fire = {
  1051. Create = function(brickcolor, cframe, x1, y1, z1, delay)
  1052. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1053. prt.Anchored = true
  1054. prt.CFrame = cframe
  1055. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1056. game:GetService("Debris"):AddItem(prt, 10)
  1057. table.insert(Effects, {
  1058. prt,
  1059. "Fire",
  1060. delay,
  1061. 1,
  1062. 1,
  1063. 1,
  1064. msh
  1065. })
  1066. end;
  1067. };
  1068.  
  1069. Ring = {
  1070. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, par)
  1071. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1072. prt.Anchored = true
  1073. if par ~= nil then
  1074. prt.Parent = par
  1075. end
  1076. prt.CFrame = cframe * CFrame.new(x3, y3, z3)
  1077. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1078. game:GetService("Debris"):AddItem(prt, 10)
  1079. table.insert(Effects, {
  1080. prt,
  1081. "Cylinder",
  1082. delay,
  1083. x3,
  1084. y3,
  1085. z3,
  1086. msh
  1087. })
  1088. end
  1089. },
  1090.  
  1091. Blast = {
  1092. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Part)
  1093. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1094. prt.Anchored = true
  1095. prt.CFrame = cframe
  1096. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://1323306", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1097. game:GetService("Debris"):AddItem(prt, 10)
  1098. table.insert(Effects, {
  1099. prt,
  1100. "Block4",
  1101. delay,
  1102. x3,
  1103. y3,
  1104. z3,
  1105. msh,
  1106. Part
  1107. })
  1108. end
  1109. },
  1110.  
  1111. Wave = {
  1112. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1113. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1114. prt.Anchored = true
  1115. prt.CFrame = cframe
  1116. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1117. game:GetService("Debris"):AddItem(prt, 10)
  1118. table.insert(Effects, {
  1119. prt,
  1120. "Cylinder",
  1121. delay,
  1122. x3,
  1123. y3,
  1124. z3,
  1125. msh
  1126. })
  1127. end
  1128. },
  1129.  
  1130. Elec = {
  1131. Create = function(cff, x, y, z)
  1132. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, BrickColor.new("Medium blue"), "Part", Vector3.new(1, 1, 1))
  1133. prt.Anchored = true
  1134. 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)
  1135. prt.CFrame = CFrame.new(prt.Position)
  1136. game:GetService("Debris"):AddItem(prt, 10)
  1137. local xval = math.random() / 9
  1138. local yval = math.random() / 9
  1139. local zval = math.random() / 9
  1140. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(xval, yval, zval))
  1141. local eul1 = math.random(-50, 50)
  1142. local eul2 = math.random(-50, 50)
  1143. local eul3 = math.random(-50, 50)
  1144. local euld = CFrame.fromEulerAnglesXYZ(eul1, eul2, eul3)
  1145. local euld2 = CFrame.fromEulerAnglesXYZ(-eul1, -eul2, -eul3)
  1146. Effects[#Effects + 1] = {
  1147. prt,
  1148. "Elec",
  1149. .05,
  1150. x,
  1151. y,
  1152. z,
  1153. xval,
  1154. yval,
  1155. zval,
  1156. msh,
  1157. euld,
  1158. euld2
  1159. }
  1160. end
  1161. },
  1162.  
  1163. Break = {
  1164. Create = function(brickcolor, cframe, x1, y1, z1)
  1165. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1166. prt.Anchored = true
  1167. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1168. game:GetService("Debris"):AddItem(prt, 10)
  1169. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1170. local num = math.random(10, 50) / 1000
  1171. table.insert(Effects, {
  1172. prt,
  1173. "Shatter",
  1174. num,
  1175. prt.CFrame,
  1176. math.random() - math.random(),
  1177. 0,
  1178. math.random(50, 100) / 100
  1179. })
  1180. end
  1181. },
  1182.  
  1183. Ice = {
  1184. Create = function(brickcolor, cframe, x1, y1, z1, delay)
  1185. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1186. prt.Anchored = true
  1187. prt.CFrame = cframe
  1188. msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://1778999", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1189. game:GetService("Debris"):AddItem(prt, 10)
  1190. for i = 1, 5 do
  1191. 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)
  1192. end
  1193. for i = 1, 15 do
  1194. 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()))
  1195. freezepart.Anchored = true
  1196. freezepart.CanCollide = true
  1197. 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))
  1198. game:GetService("Debris"):AddItem(freezepart, 10)
  1199. end
  1200. table.insert(Effects, {
  1201. prt,
  1202. "Ice",
  1203. delay,
  1204. msh,
  1205. 1,
  1206. .2
  1207. })
  1208. end
  1209. },
  1210.  
  1211. Lightning = {
  1212. Create = function(p0, p1, tym, ofs, col, th, tra, last)
  1213. local magz = (p0 - p1).magnitude
  1214. local curpos = p0
  1215. local trz = {
  1216. -ofs,
  1217. ofs
  1218. }
  1219. for i = 1, tym do
  1220. local li = CFuncs.Part.Create(EffectModel, "Neon", 0, tra or 0.4, col, "Ref", Vector3.new(th, th, magz / tym))
  1221. local ofz = Vector3.new(trz[math.random(1, 2)], trz[math.random(1, 2)], trz[math.random(1, 2)])
  1222. local trolpos = CFrame.new(curpos, p1) * CFrame.new(0, 0, magz / tym).p + ofz
  1223. li.Material = "Neon"
  1224. if tym == i then
  1225. local magz2 = (curpos - p1).magnitude
  1226. li.Size = Vector3.new(th, th, magz2)
  1227. li.CFrame = CFrame.new(curpos, p1) * CFrame.new(0, 0, -magz2 / 2)
  1228. table.insert(Effects, {
  1229. li,
  1230. "Disappear",
  1231. last
  1232. })
  1233. else
  1234. do
  1235. do
  1236. li.CFrame = CFrame.new(curpos, trolpos) * CFrame.new(0, 0, magz / tym / 2)
  1237. curpos = li.CFrame * CFrame.new(0, 0, magz / tym / 2).p
  1238. game.Debris:AddItem(li, 10)
  1239. table.insert(Effects, {
  1240. li,
  1241. "Disappear",
  1242. last
  1243. })
  1244. end
  1245. end
  1246. end
  1247. end
  1248. end
  1249. };
  1250.  
  1251. EffectTemplate = {
  1252.  
  1253. };
  1254.  
  1255. }
  1256.  
  1257. function attackone()
  1258. attack = true
  1259. local con1 = Hitbox.Touched:connect(function(hit)
  1260. Damage(Hitbox, hit, 10, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1261. end)
  1262. for i = 0, 1, 0.1 do
  1263. swait()
  1264. PlayAnimationFromTable({
  1265. 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),
  1266. 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),
  1267. 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),
  1268. 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),
  1269. 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),
  1270. 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),
  1271. }, .3, false)
  1272. 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)
  1273. end
  1274. con1:Disconnect()
  1275. attack = false
  1276. end
  1277.  
  1278. function attacktwo()
  1279. attack = true
  1280. local con1 = Hitbox.Touched:connect(function(hit)
  1281. Damage(Hitbox, hit, 10, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1282. end)
  1283. con1:Disconnect()
  1284. attack = false
  1285. end
  1286.  
  1287. function attackthree()
  1288. attack = true
  1289. local con1 = Hitbox.Touched:connect(function(hit)
  1290. Damage(Hitbox, hit, 10, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1291. end)
  1292. con1:Disconnect()
  1293. attack = false
  1294. end
  1295.  
  1296. function attackfour()
  1297. attack = true
  1298. local con1 = Hitbox.Touched:connect(function(hit)
  1299. Damage(Hitbox, hit, 10, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1300. end)
  1301. con1:Disconnect()
  1302. attack = false
  1303. end
  1304.  
  1305. function skill1()
  1306. attack = true
  1307. local con1 = Hitbox.Touched:connect(function(hit)
  1308. Damage(Hitbox, hit, 99, 99, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1309. end)
  1310. Humanoid.WalkSpeed = 0
  1311. for i = 0, 3.5, 0.1 do
  1312. swait()
  1313. PlayAnimationFromTable({
  1314. 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),
  1315. 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),
  1316. 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),
  1317. 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),
  1318. 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),
  1319. 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),
  1320. }, .3, false)
  1321. 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)
  1322. end
  1323. for i = 0, 1.9, 0.1 do
  1324. swait()
  1325. PlayAnimationFromTable({
  1326. 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),
  1327. 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),
  1328. 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),
  1329. 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),
  1330. 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),
  1331. 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),
  1332. }, .3, false)
  1333. 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)
  1334. end
  1335. con1:Disconnect()
  1336. Humanoid.WalkSpeed = 16
  1337. attack = false
  1338. end
  1339.  
  1340. function skill2()
  1341. attack = true
  1342. local con1 = Hitbox.Touched:connect(function(hit)
  1343. Damage(Hitbox, hit, 20, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1344. end)
  1345. for i = 0, 5, 0.1 do
  1346. swait()
  1347. PlayAnimationFromTable({
  1348. 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),
  1349. 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),
  1350. 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),
  1351. 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),
  1352. 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),
  1353. 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),
  1354. }, .3, false)
  1355. 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)
  1356. end
  1357. for i = 0, 2.5, 0.1 do
  1358. RootPart.Velocity = RootPart.CFrame.lookVector * 60
  1359. swait()
  1360. PlayAnimationFromTable({
  1361. 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),
  1362. 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),
  1363. 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),
  1364. 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),
  1365. 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),
  1366. 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),
  1367. }, .3, false)
  1368. 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)
  1369. end
  1370. local con1 = Hitbox.Touched:connect(function(hit)
  1371. Damage(Hitbox, hit, 20, 20, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1372. end)
  1373. attack = false
  1374. end
  1375.  
  1376. function skill3()
  1377. attack = true
  1378. Humanoid.WalkSpeed = 0
  1379. for i = 0, 1, 0.1 do
  1380. swait()
  1381. PlayAnimationFromTable({
  1382. 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),
  1383. 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),
  1384. 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),
  1385. 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),
  1386. 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),
  1387. 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),
  1388. }, .3, false)
  1389. 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)
  1390. end
  1391. for i = 0, 1, 0.1 do
  1392. swait()
  1393. PlayAnimationFromTable({
  1394. 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),
  1395. 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),
  1396. 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),
  1397. 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),
  1398. 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),
  1399. 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),
  1400. }, .3, false)
  1401. 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)
  1402. end
  1403. local rotation = my
  1404. if mouse.Target ~= nil then
  1405. local tp = mouse.Hit
  1406. lerp(-5,rotation)
  1407. Character:SetPrimaryPartCFrame(CFrame.new(tp.p)*CFrame.new(0,5,0))
  1408. lerp(5,rotation)
  1409. end
  1410. Humanoid.WalkSpeed = 16
  1411. attack = false
  1412. end
  1413.  
  1414. function skill4()
  1415. attack = true
  1416. local con1 = Hitbox.Touched:connect(function(hit)
  1417. Damage(Hitbox, hit, 25, 30, 1, "Knockdown", RootPart, 0.3, "rbxassetid://199149186", 1)
  1418. end)
  1419. for i = 0, 1, 0.1 do
  1420. swait()
  1421. PlayAnimationFromTable({
  1422. 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),
  1423. 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),
  1424. 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),
  1425. 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),
  1426. 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),
  1427. 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),
  1428. }, .3, false)
  1429. 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)
  1430. end
  1431. for i = 0, 1, 0.1 do
  1432. swait()
  1433. PlayAnimationFromTable({
  1434. 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),
  1435. 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),
  1436. 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),
  1437. 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),
  1438. 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),
  1439. 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),
  1440. }, .3, false)
  1441. 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)
  1442. end
  1443. for i = 0, 1, 0.1 do
  1444. swait()
  1445. PlayAnimationFromTable({
  1446. 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),
  1447. 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),
  1448. 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),
  1449. 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),
  1450. 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),
  1451. 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),
  1452. }, .3, false)
  1453. 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)
  1454. end
  1455. for i = 0, 1, 0.1 do
  1456. swait()
  1457. PlayAnimationFromTable({
  1458. 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),
  1459. 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),
  1460. 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),
  1461. 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),
  1462. 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),
  1463. 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),
  1464. }, .3, false)
  1465. 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)
  1466. end
  1467. for i = 0, 1, 0.1 do
  1468. swait()
  1469. PlayAnimationFromTable({
  1470. 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),
  1471. 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),
  1472. 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),
  1473. 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),
  1474. 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),
  1475. 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),
  1476. }, .3, false)
  1477. 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)
  1478. end
  1479. for i = 0, 1, 0.1 do
  1480. swait()
  1481. PlayAnimationFromTable({
  1482. 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),
  1483. 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),
  1484. 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),
  1485. 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),
  1486. 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),
  1487. 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),
  1488. }, .3, false)
  1489. 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)
  1490. end
  1491. for i = 0, 1, 0.1 do
  1492. swait()
  1493. PlayAnimationFromTable({
  1494. 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),
  1495. 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),
  1496. 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),
  1497. 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),
  1498. 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),
  1499. 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),
  1500. }, .3, false)
  1501. 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)
  1502. end
  1503. for i = 0, 1, 0.1 do
  1504. swait()
  1505. PlayAnimationFromTable({
  1506. 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),
  1507. 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),
  1508. 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),
  1509. 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),
  1510. 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),
  1511. 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),
  1512. }, .3, false)
  1513. 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)
  1514. end
  1515. for i = 0, 1, 0.1 do
  1516. swait()
  1517. PlayAnimationFromTable({
  1518. 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),
  1519. 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),
  1520. 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),
  1521. 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),
  1522. 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),
  1523. 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),
  1524. }, .3, false)
  1525. 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)
  1526. end
  1527. for i = 0, 1, 0.1 do
  1528. swait()
  1529. PlayAnimationFromTable({
  1530. 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),
  1531. 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),
  1532. 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),
  1533. 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),
  1534. 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),
  1535. 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),
  1536. }, .3, false)
  1537. 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)
  1538. end
  1539. for i = 0, 1, 0.1 do
  1540. swait()
  1541. PlayAnimationFromTable({
  1542. 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),
  1543. 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),
  1544. 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),
  1545. 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),
  1546. 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),
  1547. 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),
  1548. }, .3, false)
  1549. 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)
  1550. end
  1551. for i = 0, 1, 0.1 do
  1552. swait()
  1553. PlayAnimationFromTable({
  1554. 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),
  1555. 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),
  1556. 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),
  1557. 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),
  1558. 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),
  1559. 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),
  1560. }, .3, false)
  1561. 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)
  1562. end
  1563. for i = 0, 1, 0.1 do
  1564. swait()
  1565. PlayAnimationFromTable({
  1566. 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),
  1567. 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),
  1568. 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),
  1569. 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),
  1570. 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),
  1571. 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),
  1572. }, .3, false)
  1573. 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)
  1574. end
  1575. for i = 0, 1, 0.1 do
  1576. swait()
  1577. PlayAnimationFromTable({
  1578. 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),
  1579. 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),
  1580. 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),
  1581. 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),
  1582. 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),
  1583. 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),
  1584. }, .3, false)
  1585. 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)
  1586. end
  1587. for i = 0, 1, 0.1 do
  1588. swait()
  1589. PlayAnimationFromTable({
  1590. 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),
  1591. 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),
  1592. 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),
  1593. 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),
  1594. 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),
  1595. 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),
  1596. }, .3, false)
  1597. 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)
  1598. end
  1599. for i = 0, 1, 0.1 do
  1600. swait()
  1601. PlayAnimationFromTable({
  1602. 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),
  1603. 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),
  1604. 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),
  1605. 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),
  1606. 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),
  1607. 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),
  1608. }, .3, false)
  1609. 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)
  1610. end
  1611. for i = 0, 1, 0.1 do
  1612. swait()
  1613. PlayAnimationFromTable({
  1614. 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),
  1615. 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),
  1616. 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),
  1617. 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),
  1618. 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),
  1619. 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),
  1620. }, .3, false)
  1621. 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)
  1622. end
  1623. for i = 0, 1, 0.1 do
  1624. swait()
  1625. PlayAnimationFromTable({
  1626. 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),
  1627. 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),
  1628. 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),
  1629. 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),
  1630. 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),
  1631. 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),
  1632. }, .3, false)
  1633. 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)
  1634. end
  1635. for i = 0, 1, 0.1 do
  1636. swait()
  1637. PlayAnimationFromTable({
  1638. 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),
  1639. 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),
  1640. 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),
  1641. 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),
  1642. 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),
  1643. 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),
  1644. }, .3, false)
  1645. 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)
  1646. end
  1647. for i = 0, 1, 0.1 do
  1648. swait()
  1649. PlayAnimationFromTable({
  1650. 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),
  1651. 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),
  1652. 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),
  1653. 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),
  1654. 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),
  1655. 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),
  1656. }, .3, false)
  1657. 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)
  1658. end
  1659. con1:Disconnect()
  1660. attack = false
  1661. end
  1662.  
  1663. Mouse.Button1Down:connect(function()
  1664. if attack == false and attacktype == 1 then
  1665. attacktype = 2
  1666. attackone()
  1667. elseif attack == false and attacktype == 2 then
  1668. attacktype = 3
  1669. attacktwo()
  1670. elseif attack == false and attacktype == 3 then
  1671. attacktype = 4
  1672. attackthree()
  1673. elseif attack == false and attacktype == 4 then
  1674. attacktype = 1
  1675. attackfour()
  1676. end
  1677. end)
  1678.  
  1679. Mouse.KeyDown:connect(function(k)
  1680. k = k:lower()
  1681. if attack == false and k == 'z' then
  1682. skill1()
  1683. elseif attack == false and k == 'x' then
  1684. skill2()
  1685. elseif attack == false and k == 'c' then
  1686. skill3()
  1687. elseif attack == false and k == 'v' then
  1688. skill4()
  1689. end
  1690. end)
  1691.  
  1692. while true do
  1693. swait()
  1694. for i, v in pairs(Character:GetChildren()) do
  1695. if v:IsA("Part") then
  1696. v.Material = "SmoothPlastic"
  1697. elseif v:IsA("Accessory") then
  1698. v:WaitForChild("Handle").Material = "SmoothPlastic"
  1699. end
  1700. end
  1701. for i, v in pairs(Character:GetChildren()) do
  1702. if v:IsA'Model' then
  1703. for _, c in pairs(v:GetChildren()) do
  1704. if c:IsA'BasePart' then
  1705. c.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001)
  1706. end
  1707. end
  1708. end
  1709. end
  1710. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  1711. velocity = RootPart.Velocity.y
  1712. sine = sine + change
  1713. local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  1714. if RootPart.Velocity.y > 1 and hit == nil then
  1715. Anim = "Jump"
  1716. if attack == false then
  1717.  
  1718. CFrame.new(0, 0, 0, 1, -4.54383881e-28, 0, -4.54383881e-28, 0.999988317, -2.12296717e-42, 0, -2.12296717e-42, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-60), 0, 0),
  1719. CFrame.new(3.7945778e-26, 1.4590404, -0.447229177, 1, 2.34260134e-26, 8.68378084e-27, -2.18609134e-26, 0.731817484, 0.681493163, 9.6935228e-27, -0.681497157, 0.731821775) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1720. CFrame.new(1.0088923, 0.143907636, -0.778464913, 0.948227882, 0.312512338, 0.0565682463, -0.153942272, 0.60806638, -0.778810263, -0.277786702, 0.729785562, 0.624698043) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1721. CFrame.new(-1.10431612, -0.0306248814, -0.506222963, 0.90385884, -0.422551394, -0.0670242757, 0.307654262, 0.750797868, -0.584500194, 0.297305524, 0.507688701, 0.80861783) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1722. CFrame.new(0.540317595, -0.711926877, -0.714166045, 0.980744839, -0.170371115, -0.095465295, 0.149652734, 0.969689906, -0.193117216, 0.125474036, 0.175113052, 0.97652036) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1723. CFrame.new(-0.57800889, -0.743035674, -0.62212503, 0.978115499, 0.175883621, 0.111153781, -0.142733991, 0.955918789, -0.256582707, -0.151383549, 0.235103428, 0.960109174) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1724. }, .3, false)
  1725. end
  1726.  
  1727. elseif RootPart.Velocity.y < -1 and hit == nil then
  1728. Anim = "Fall"
  1729. if attack == false then
  1730. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1731. 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)
  1732. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1733. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1734. RH.C0 = clerp(RH.C0, CFrame.new(.5, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1735. LH.C0 = clerp(LH.C0, CFrame.new(-.5, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), .3)
  1736. end
  1737. elseif Torsovelocity < 1 and hit ~= nil then
  1738. Anim = "Idle"
  1739. if attack == false then
  1740. change = 1
  1741. for i = 0, .1, 0.1 do
  1742. swait()
  1743. PlayAnimationFromTable({
  1744. 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),
  1745. 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),
  1746. 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),
  1747. 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),
  1748. 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),
  1749. 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),
  1750. }, .3, false)
  1751. 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)
  1752. end
  1753. end
  1754. elseif Torsovelocity > 2 and hit ~= nil then
  1755. Anim = "Walk"
  1756. if attack == false then
  1757. 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)
  1758. PlayAnimationFromTable({
  1759. 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),
  1760. 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),
  1761. 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),
  1762. 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),
  1763. 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)),
  1764. 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)),
  1765. }, .3, false)
  1766. end
  1767. end
  1768. end
  1769. if #Effects > 0 then
  1770. for e = 1, #Effects do
  1771. if Effects[e] ~= nil then
  1772. local Thing = Effects[e]
  1773. if Thing ~= nil then
  1774. Part = Thing[1]
  1775. Mode = Thing[2]
  1776. Delay = Thing[3]
  1777. IncX = Thing[4]
  1778. IncY = Thing[5]
  1779. IncZ = Thing[6]
  1780. if Thing[2] == "Shoot" then
  1781. Look = Thing[1]
  1782. hit, pos = rayCast(Thing[4], Look, 5, Character)
  1783. mag = (Thing[4] - pos).magnitude
  1784. Thing[9].CFrame = CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(-1.57, 0, 0)
  1785. Thing[4] = Thing[4] + (Look * 5)
  1786. Thing[3] = Thing[3] - 1
  1787. if hit ~= nil then
  1788. print(hit.Parent)
  1789. Thing[3] = 0
  1790. --Damagefunc(hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, .2, 2, math.random(1, 5), nil, nil, true, "Movement", .02, 500)
  1791. --MagniDamage(Thing[9], 5, Thing[5], Thing[6], Thing[7], "Normal", RootPart, .2, 2, math.random(1, 5), nil, nil, true, "Movement", .02, 500)
  1792. end
  1793. if Thing[3] <= 0 then
  1794. if hit == nil then
  1795. Effects.Sphere.Create(BrickColor.new("Crimson"), Thing[9].CFrame, 1, 1, 1, 2, 2, 2, .1)
  1796. CFuncs.Sound.Create("285370517", Thing[9], 1, 1)
  1797. else
  1798. Effects.Wave.Create(BrickColor.new("Crimson"), Thing[9].CFrame * CFrame.fromEulerAnglesXYZ(3.2, 0, 0), .2, .2, .2, .6, .8, .6, .1)
  1799. CFuncs.Sound.Create("285370517", Thing[9], .6, 1)
  1800. CFuncs.Sound.Create("285370545", Thing[9], 1, 1)
  1801. end
  1802. for i = 1, math.random(2, 4) do
  1803. Effects.Break.Create(BrickColor.new("Crimson"), Thing[9].CFrame, math.random(20, 40) / 100, math.random(100, 600) / 100, math.random(20, 40) / 100)
  1804. end
  1805. Thing[9].Transparency = 1
  1806. game:GetService("Debris"):AddItem(Thing[9], 1)
  1807. table.remove(Effects, e)
  1808. end
  1809. end
  1810. if Thing[2] ~= "Shoot" then
  1811. if Thing[1].Transparency <= 1 then
  1812. if Thing[2] == "Block1" then
  1813. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1814. Mesh = Thing[7]
  1815. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1816. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1817. elseif Thing[2] == "Block2" then
  1818. Thing[1].CFrame = Thing[1].CFrame
  1819. Mesh = Thing[7]
  1820. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1821. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1822. elseif Thing[2] == "Block3" then
  1823. Thing[1].CFrame = Thing[8].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1824. Mesh = Thing[7]
  1825. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1826. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1827. elseif Thing[2] == "Block4" then
  1828. Thing[1].CFrame = Thing[8].CFrame * CFrame.new(0, -Thing[7].Scale.Y, 0) * CFrame.fromEulerAnglesXYZ(3.14, 0, 0)
  1829. Mesh = Thing[7]
  1830. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1831. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1832. elseif Thing[2] == "Block2Fire" then
  1833. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1834. Mesh = Thing[7]
  1835. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1836. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1837. if Thing[1].Transparency >= .3 then
  1838. Thing[1].BrickColor = BrickColor.new("Bright red")
  1839. else
  1840. Thing[1].BrickColor = BrickColor.new("Bright yellow")
  1841. end
  1842. elseif Thing[2] == "Ice" then
  1843. if Thing[6] <= Thing[5] then
  1844. Thing[6] = Thing[6] + .3
  1845. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, 1, 0)
  1846. else
  1847. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1848. end
  1849. elseif Thing[2] == "Shatter" then
  1850. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1851. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  1852. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  1853. Thing[6] = Thing[6] + Thing[5]
  1854. elseif Thing[2] == "Fire" then
  1855. Thing[1].CFrame = CFrame.new(Thing[1].Position) + Vector3.new(0, 0.2, 0)
  1856. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1857. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1858. elseif Thing[2] == "Cylinder" then
  1859. Mesh = Thing[7]
  1860. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1861. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1862. elseif Thing[2] == "Cylinder2" then
  1863. Mesh = Thing[7]
  1864. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1865. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, Thing[8], 0)
  1866. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1867. elseif Thing[2] == "Blood" then
  1868. Mesh = Thing[7]
  1869. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, .5, 0)
  1870. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1871. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1872. elseif Thing[2] == "Elec" then
  1873. Mesh = Thing[7]
  1874. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  1875. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1876. elseif Thing[2] == "Disappear" then
  1877. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1878. end
  1879. else
  1880. Part.Parent = nil
  1881. table.remove(Effects, e)
  1882. end
  1883. end
  1884. end
  1885. end
  1886. end
  1887. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement