Mr-Shadow_Cat

Sinister god

Jan 10th, 2018
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 231.35 KB | None | 0 0
  1. local colorone = "Mulberry"
  2. local colortwo = "Royal purple"
  3. local colorthree = "Really black"
  4.  
  5. local mode = "BerserkMode"
  6.  
  7.  
  8.  
  9. wait(1 / 60)
  10. Effects = { }
  11. local Player = game.Players.localPlayer
  12. script.Parent = Player.PlayerGui
  13. script.Name = math.random(100, 100000)..[[ ]]..math.random(100000, 1000000000)
  14. local Character = Player.Character
  15. local Humanoid = Character.Humanoid
  16. local Mouse = Player:GetMouse()
  17. local LeftArm = Character["Left Arm"]
  18. local RightArm = Character["Right Arm"]
  19. local LeftLeg = Character["Left Leg"]
  20. local RightLeg = Character["Right Leg"]
  21. local Head = Character.Head
  22. local Torso = Character.Torso
  23. local Camera = game.Workspace.CurrentCamera
  24. local RootPart = Character.HumanoidRootPart
  25. local RootJoint = RootPart.RootJoint
  26. local attack = false
  27. local Anim = 'Idle'
  28. local attacktype = 1
  29. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  30. local velocity = RootPart.Velocity.y
  31. local sine = 0
  32. local change = 1
  33. local hobb = 0
  34. local rest = 0
  35. local looprevive = false
  36. local revive = false
  37. local Create = LoadLibrary("RbxUtility").Create
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54. function RemoveOutlines(part)
  55. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  56. end
  57.  
  58. CFuncs = {
  59. ["Part"] = {
  60. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  61. local Part = Create("Part"){
  62. Parent = Parent,
  63. Reflectance = Reflectance,
  64. Transparency = Transparency,
  65. CanCollide = false,
  66. Locked = true,
  67. BrickColor = BrickColor.new(tostring(BColor)),
  68. Name = Name,
  69. Size = Size,
  70. Material = Material,
  71. }
  72.  
  73. if Part.BrickColor == BrickColor.new("Mulberry") then
  74. Part.BrickColor = BrickColor.new(colorone)
  75. end
  76. if Part.BrickColor == BrickColor.new("Royal purple") then
  77. Part.BrickColor = BrickColor.new(colortwo)
  78. end
  79. if Part.BrickColor == BrickColor.new("Really black") or Part.BrickColor == BrickColor.new("Dark indigo") then
  80. Part.BrickColor = BrickColor.new(colorthree)
  81. end
  82.  
  83. RemoveOutlines(Part)
  84. return Part
  85. end;
  86. };
  87.  
  88. ["Mesh"] = {
  89. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  90. local Msh = Create(Mesh){
  91. Parent = Part,
  92. Offset = OffSet,
  93. Scale = Scale,
  94. }
  95. if Mesh == "SpecialMesh" then
  96. Msh.MeshType = MeshType
  97. Msh.MeshId = MeshId
  98. end
  99. return Msh
  100. end;
  101. };
  102.  
  103. ["Mesh"] = {
  104. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  105. local Msh = Create(Mesh){
  106. Parent = Part,
  107. Offset = OffSet,
  108. Scale = Scale,
  109. }
  110. if Mesh == "SpecialMesh" then
  111. Msh.MeshType = MeshType
  112. Msh.MeshId = MeshId
  113. end
  114. return Msh
  115. end;
  116. };
  117.  
  118. ["Weld"] = {
  119. Create = function(Parent, Part0, Part1, C0, C1)
  120. local Weld = Create("Weld"){
  121. Parent = Parent,
  122. Part0 = Part0,
  123. Part1 = Part1,
  124. C0 = C0,
  125. C1 = C1,
  126. }
  127. return Weld
  128. end;
  129. };
  130.  
  131. ["Sound"] = {
  132. Create = function(id, par, vol, pit)
  133. coroutine.resume(coroutine.create(function()
  134. local S = Create("Sound"){
  135. Volume = vol,
  136. Pitch = pit or 1,
  137. SoundId = id,
  138. Parent = par or workspace,
  139. }
  140. wait()
  141. S:play()
  142. game:GetService("Debris"):AddItem(S, 6)
  143. end))
  144. end;
  145. };
  146.  
  147. ["ParticleEmitter"] = {
  148. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  149. local fp = Create("ParticleEmitter"){
  150. Parent = Parent,
  151. Color = ColorSequence.new(Color1, Color2),
  152. LightEmission = LightEmission,
  153. Size = Size,
  154. Texture = Texture,
  155. Transparency = Transparency,
  156. ZOffset = ZOffset,
  157. Acceleration = Accel,
  158. Drag = Drag,
  159. LockedToPart = LockedToPart,
  160. VelocityInheritance = VelocityInheritance,
  161. EmissionDirection = EmissionDirection,
  162. Enabled = Enabled,
  163. Lifetime = LifeTime,
  164. Rate = Rate,
  165. Rotation = Rotation,
  166. RotSpeed = RotSpeed,
  167. Speed = Speed,
  168. VelocitySpread = VelocitySpread,
  169. }
  170. return fp
  171. end;
  172. };
  173.  
  174. CreateTemplate = {
  175.  
  176. };
  177. }
  178.  
  179.  
  180.  
  181.  
  182.  
  183. function chatfunc(text)
  184. local chat = coroutine.wrap(function()
  185. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  186. Character:FindFirstChild("TalkingBillBoard"):destroy()
  187. end
  188. local naeeym2 = Instance.new("BillboardGui",Character)
  189. naeeym2.Size = UDim2.new(0,0,0,0)
  190. naeeym2.StudsOffset = Vector3.new(0,3,0)
  191. naeeym2.Adornee = Head
  192. naeeym2.Name = "TalkingBillBoard"
  193. local tecks2 = Instance.new("TextLabel",naeeym2)
  194. tecks2.BackgroundTransparency = 1
  195. tecks2.BorderSizePixel = 0
  196. tecks2.Text = ""
  197. tecks2.Font = "Fantasy"
  198. tecks2.FontSize = "Size24"
  199. tecks2.TextStrokeTransparency = 0
  200. tecks2.TextColor3 = BrickColor.new(colortwo).Color
  201. tecks2.TextStrokeColor3 = BrickColor.new(colorone).Color
  202. tecks2.Size = UDim2.new(0,0,0.0,0)
  203. local shk = coroutine.wrap(function()
  204. while tecks2 ~= nil do
  205. wait(.05)
  206. tecks2.Position = UDim2.new(0,math.random(-3,3),0,math.random(-3,3))
  207. end
  208. end)
  209. shk()
  210. for i = 1,string.len(text),1 do
  211. CFuncs.Sound.Create("rbxassetid://454824301", Torso, 1, 1)
  212. tecks2.Text = string.sub(text,1,i)
  213. wait(0.01)
  214. end
  215. wait(1)
  216. for i = 1, 5 do
  217. wait(.01)
  218. tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
  219. tecks2.Rotation = tecks2.Rotation + 2
  220. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
  221. tecks2.TextTransparency = tecks2.TextTransparency + .2
  222. end
  223. naeeym2:Destroy()
  224. end)
  225. chat()
  226. end
  227. function onChatted(msg)
  228. chatfunc(msg)
  229. end
  230. Player.Chatted:connect(onChatted)
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237. wait(0.1)
  238.  
  239.  
  240. Player:ClearCharacterAppearance()
  241. Player.Character.Head.face:Destroy()
  242.  
  243. Head.Transparency = 1
  244. Torso.Transparency = 1
  245. RightArm.Transparency = 1
  246. LeftArm.Transparency = 1
  247. RightLeg.Transparency = 1
  248. LeftLeg.Transparency = 1
  249.  
  250. Humanoid.JumpPower = 0
  251. Humanoid.WalkSpeed = 0
  252.  
  253. chatfunc("")
  254. wait()
  255. chatfunc("")
  256. wait()
  257. chatfunc("")
  258. wait()
  259. chatfunc("")
  260. wait()
  261. chatfunc("")
  262. wait()
  263. local kolor = Instance.new("ColorCorrectionEffect",game.Lighting)
  264.  
  265. kolor.Brightness = -0.1
  266. kolor.Contrast = 0.1
  267. wait(0.1)
  268. kolor.Brightness = -0.2
  269. kolor.Contrast = 0.2
  270. wait(0.1)
  271. kolor.Brightness = -0.3
  272. kolor.Contrast = 0.3
  273. wait(0.1)
  274. kolor.Brightness = -0.4
  275. kolor.Contrast = 0.4
  276. wait(0.1)
  277. kolor.Brightness = -0.5
  278. kolor.Contrast = 0.5
  279. wait(0.1)
  280. kolor.Brightness = -0.6
  281. kolor.Contrast = 0.6
  282. wait(0.1)
  283. kolor.Brightness = -0.7
  284. kolor.Contrast = 0.7
  285. wait(0.1)
  286. kolor.Brightness = -0.8
  287. kolor.Contrast = 0.8
  288. wait(0.1)
  289. kolor.Brightness = -0.9
  290. kolor.Contrast = 0.9
  291. wait(0.1)
  292. kolor.Brightness = -1
  293. kolor.Contrast = 1
  294. wait(0.1)
  295. kolor.Brightness = -1
  296. kolor.Contrast = 0.75
  297. wait(0.1)
  298. kolor.Brightness = -1
  299. kolor.Contrast = 0.5
  300. wait(0.1)
  301. kolor.Brightness = -1
  302. kolor.Contrast = 0.25
  303. wait(0.1)
  304. kolor.Brightness = -1
  305. kolor.Contrast = 0.15
  306. wait(0.1)
  307. kolor.Brightness = -1
  308. kolor.Contrast = 0
  309. wait(0.1)
  310. wait(1)
  311. local naeeym = Instance.new("BillboardGui",Character)
  312. naeeym.Size = UDim2.new(0,100,0,40)
  313. naeeym.StudsOffset = Vector3.new(0,2,0)
  314. naeeym.Adornee = Head
  315. local tecks = Instance.new("TextLabel",naeeym)
  316. tecks.BackgroundTransparency = 1
  317. tecks.BorderSizePixel = 0
  318. tecks.Text = "???"
  319. tecks.Font = "ArialBold"
  320. tecks.FontSize = "Size24"
  321. tecks.TextStrokeTransparency = 0
  322. tecks.TextStrokeColor3 = BrickColor.new(colortwo).Color
  323. tecks.TextColor3 = BrickColor.new(colorone).Color
  324. tecks.Size = UDim2.new(1,0,0.5,0)
  325. Spawn(function()
  326. while true do
  327. wait(.01)
  328. tecks.TextTransparency = Head.Transparency
  329. tecks.TextStrokeTransparency = Head.Transparency
  330. tecks.Position = UDim2.new(0,math.random(-3,3),0,math.random(-3,3))
  331. tecks.Rotation = math.random(-1, 3)
  332. if mode == "BerserkMode" then
  333. tecks.Text = "The God of The Void"
  334. elseif mode == "Rampage" then
  335. tecks.Text = "The Blood Thirsty God"
  336. end
  337. end
  338. end)
  339. Head.Transparency = 0
  340. Torso.Transparency = 0
  341. RightArm.Transparency = 0
  342. LeftArm.Transparency = 0
  343. RightLeg.Transparency = 0
  344. LeftLeg.Transparency = 0
  345.  
  346.  
  347.  
  348.  
  349. local music = Instance.new("Sound",Character)
  350. music.Volume = 5
  351. music.Looped = true
  352. music.SoundId = "rbxassetid://154630272"
  353. music:Play()
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361. New = function(Object, Parent, Name, Data)
  362. local Object = Instance.new(Object)
  363. for Index, Value in pairs(Data or {}) do
  364. Object[Index] = Value
  365. end
  366. Object.Parent = Parent
  367. Object.Name = Name
  368. return Object
  369. end
  370.  
  371. RightPad = New("Model",Character,"RightPad",{})
  372. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 1.00999999),CFrame = CFrame.new(-25.0149879, 8.87999916, 5.47998381, -1.00000644, 0, -6.00519388e-06, 0, 1, 0, 5.40169412e-06, 0, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  373. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  374. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),C1 = CFrame.new(0, 0.989999294, 0, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  375. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 0.200000003, 1),CFrame = CFrame.new(-25.0149879, 8.81000042, 5.47998381, -1.00000644, 0, -6.00519388e-06, 0, 1, 0, 5.40169412e-06, 0, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  376. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.5, 1),MeshType = Enum.MeshType.Brick,})
  377. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),C1 = CFrame.new(0, 0.920000553, 0, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  378. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 1.01100004),CFrame = CFrame.new(-25.5049896, 8.3999958, 5.48000431, 1.36342328e-06, -1.00000644, -5.82637949e-06, -1, -1.36341475e-06, -1.53262684e-13, -6.95197762e-12, 5.22287974e-06, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  379. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  380. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.36341737e-06, -1, -7.22621962e-12, -1.00000215, -1.36341475e-06, 5.42402267e-06, -5.62518835e-06, -1.53262684e-13, -1.00000215),C1 = CFrame.new(0.489999771, 0.509995937, -1.76429749e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  381. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.579999983, 0.519999981),CFrame = CFrame.new(-25.2649937, 9.15999889, 5.4800005, 8.51605091e-06, 0, -1.00000644, 0, 1, 0, 1.00000644, 0, 7.92000174e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  382. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  383. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 8.31484795e-06, 0, 1.00000215, 0, 1, 0, -1.00000215, 0, 8.12113285e-06),C1 = CFrame.new(0.250005722, 1.26999903, -1.52587891e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  384. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.590000033, 0.200000003),CFrame = CFrame.new(-25.2549915, 9.16499805, 5.4799962, 8.51605091e-06, 0, -1.00000644, 0, 1, 0, 1.00000644, 0, 7.92000174e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  385. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  386. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 8.31484795e-06, 0, 1.00000215, 0, 1, 0, -1.00000215, 0, 8.12113285e-06),C1 = CFrame.new(0.240003586, 1.27499819, -1.09672546e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  387. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.450000018, 0.200000003),CFrame = CFrame.new(-25.0749931, 9.09499836, 5.47999191, 8.51605091e-06, 0, -1.00000644, 0, 1, 0, 1.00000644, 0, 7.92000174e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  388. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  389. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 8.31484795e-06, 0, 1.00000215, 0, 1, 0, -1.00000215, 0, 8.12113285e-06),C1 = CFrame.new(0.060005188, 1.20499849, -7.62939453e-06, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  390. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.350000024, 0.329999983),CFrame = CFrame.new(-25.0099907, 9.04499817, 5.47999001, 8.51605091e-06, 0, -1.00000644, 0, 1, 0, 1.00000644, 0, 7.92000174e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  391. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  392. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 8.31484795e-06, 0, 1.00000215, 0, 1, 0, -1.00000215, 0, 8.12113285e-06),C1 = CFrame.new(-0.00499725342, 1.1549983, -6.19888306e-06, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  393. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.610000014),CFrame = CFrame.new(-24.8700027, 8.96999836, 5.47999477, 8.51605091e-06, 0, -1.00000644, 0, 1, 0, 1.00000644, 0, 7.92000174e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  394. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  395. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 8.31484795e-06, 0, 1.00000215, 0, 1, 0, -1.00000215, 0, 8.12113285e-06),C1 = CFrame.new(-0.144985199, 1.07999849, -1.1920929e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  396. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.75999999, 0.459999979),CFrame = CFrame.new(-25.7549934, 9.05999756, 5.48000765, -1.12206235e-05, 0, 1.00000644, 0, 1, 0, -1.00000644, 0, -1.06245743e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  397. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  398. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -1.10194087e-05, 0, -1.00000215, 0, 1, 0, 1.00000215, 0, -1.08256936e-05),C1 = CFrame.new(0.740003586, 1.16999769, -1.95503235e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  399. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 1.89999998, 0.25),CFrame = CFrame.new(-25.6299744, 7.76999855, 5.48000383, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  400. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  401. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.614984512, -0.120001316, -1.66893005e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  402. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 1.01100004),CFrame = CFrame.new(-25.5049896, 8.09999371, 5.48000431, 1.36342328e-06, -1.00000644, -5.82637949e-06, -1, -1.36341475e-06, -1.53262684e-13, -6.95197762e-12, 5.22287974e-06, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  403. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  404. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.36341737e-06, -1, -7.22621962e-12, -1.00000215, -1.36341475e-06, 5.42402267e-06, -5.62518835e-06, -1.53262684e-13, -1.00000215),C1 = CFrame.new(0.489999771, 0.209993839, -1.76429749e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  405. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 0.200000003, 1.01100004),CFrame = CFrame.new(-25.5049896, 7.39499092, 5.48000431, 1.36342328e-06, -1.00000644, -5.82637949e-06, -1, -1.36341475e-06, -1.53262684e-13, -6.95197762e-12, 5.22287974e-06, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  406. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  407. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.36341737e-06, -1, -7.22621962e-12, -1.00000215, -1.36341475e-06, 5.42402267e-06, -5.62518835e-06, -1.53262684e-13, -1.00000215),C1 = CFrame.new(0.489999771, -0.495008945, -1.76429749e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  408. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.459999979),CFrame = CFrame.new(-25.734972, 7.23999882, 5.48000288, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  409. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  410. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.719982147, -0.650001049, -1.52587891e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  411. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.74000001),CFrame = CFrame.new(-25.8749714, 7.44999981, 5.47999811, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  412. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  413. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.859981537, -0.440000057, -9.53674316e-06, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  414. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.939999998, 0.480000019),CFrame = CFrame.new(-25.7449799, 8.21999931, 5.4800005, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  415. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  416. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.729990005, 0.329999447, -1.23977661e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  417. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.459999979),CFrame = CFrame.new(-25.734972, 7.68000174, 5.48000288, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  418. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  419. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.719982147, -0.209998131, -1.52587891e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  420. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.74000001),CFrame = CFrame.new(-25.8749714, 7.89000273, 5.47999811, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  421. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  422. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.859981537, 2.86102295e-06, -9.53674316e-06, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  423. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.459999979),CFrame = CFrame.new(-25.734972, 8.12000465, 5.48000288, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  424. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  425. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.719982147, 0.230004787, -1.52587891e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  426. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.74000001),CFrame = CFrame.new(-25.8749714, 8.33000565, 5.47999811, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  427. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  428. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.859981537, 0.440005779, -9.53674316e-06, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  429. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Lilac"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049839, 9.03000355, 5.06999636, -0.707100511, -0.707121789, -5.90088484e-06, -0.707117438, 0.707096159, 3.16077333e-08, 3.72462364e-06, 3.77677316e-06, -1.00000656),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  430. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  431. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.70709753, -0.707117438, 3.86685133e-06, -0.707118809, 0.707096159, 3.91900539e-06, -5.69969416e-06, 3.16077333e-08, -1.00000226),C1 = CFrame.new(0.489992142, 1.14000368, 0.409989357, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  432. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049839, 9.03000355, 5.06999636, -0.939696252, 0.342028707, -5.90088484e-06, 0.342026561, 0.939690351, -4.66146695e-08, 4.95933955e-06, -1.85531633e-06, -1.00000656),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  433. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 0.699999988, 1.00100005),MeshType = Enum.MeshType.Brick,})
  434. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.939692199, 0.342026561, 5.14835119e-06, 0.342027217, 0.939690351, -1.92411244e-06, -5.69969416e-06, -4.66146695e-08, -1.00000226),C1 = CFrame.new(0.489992142, 1.14000368, 0.409989357, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  435. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049839, 9.03000355, 5.06999636, -0.965928674, -0.258833885, -5.46874981e-06, -0.258832157, 0.965922356, 4.02601401e-08, 4.69329052e-06, 1.29835519e-06, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.929412, 0.917647, 0.917647),})
  436. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 1.00109994),MeshType = Enum.MeshType.Brick,})
  437. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.965924501, -0.258832157, 4.88758087e-06, -0.258832753, 0.965922356, 1.35041773e-06, -5.26756048e-06, 4.02601401e-08, -1.00000215),C1 = CFrame.new(0.489992142, 1.14000368, 0.409989357, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  438. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049839, 9.03000355, 5.06999636, 0.173647776, -0.984814227, -5.85618136e-06, -0.984808087, -0.173646703, -1.82278015e-08, -8.97326004e-07, 5.17378066e-06, -1.00000632),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  439. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.300000012, 0.300000012, 1.00119996),MeshType = Enum.MeshType.Brick,})
  440. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 0.173647031, -0.984808087, -9.32253897e-07, -0.984810054, -0.173646703, 5.37186861e-06, -5.65499067e-06, -1.82278015e-08, -1.00000203),C1 = CFrame.new(0.489992142, 1.14000368, 0.409989357, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  441. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Lilac"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049858, 9.03000355, 5.88999748, -0.707100511, -0.707121789, -5.90088484e-06, -0.707117438, 0.707096159, 3.16077333e-08, 3.72462364e-06, 3.77677316e-06, -1.00000656),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  442. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  443. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.70709753, -0.707117438, 3.86685133e-06, -0.707118809, 0.707096159, 3.91900539e-06, -5.69969416e-06, 3.16077333e-08, -1.00000226),C1 = CFrame.new(0.489999771, 1.14000368, -0.410009861, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  444. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049858, 9.03000355, 5.88999748, -0.939696252, 0.342028707, -5.90088484e-06, 0.342026561, 0.939690351, -4.66146695e-08, 4.95933955e-06, -1.85531633e-06, -1.00000656),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines})
  445. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 0.699999988, 1.00100005),MeshType = Enum.MeshType.Brick,})
  446. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.939692199, 0.342026561, 5.14835119e-06, 0.342027217, 0.939690351, -1.92411244e-06, -5.69969416e-06, -4.66146695e-08, -1.00000226),C1 = CFrame.new(0.489999771, 1.14000368, -0.410009861, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  447. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049858, 9.03000355, 5.88999748, -0.965928674, -0.258833885, -5.46874981e-06, -0.258832157, 0.965922356, 4.02601401e-08, 4.69329052e-06, 1.29835519e-06, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.929412, 0.917647, 0.917647),})
  448. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 1.00109994),MeshType = Enum.MeshType.Brick,})
  449. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.965924501, -0.258832157, 4.88758087e-06, -0.258832753, 0.965922356, 1.35041773e-06, -5.26756048e-06, 4.02601401e-08, -1.00000215),C1 = CFrame.new(0.489999771, 1.14000368, -0.410009861, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  450. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049858, 9.03000355, 5.88999748, 0.173647776, -0.984814227, -5.85618136e-06, -0.984808087, -0.173646703, -1.82278015e-08, -8.97326004e-07, 5.17378066e-06, -1.00000632),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  451. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.300000012, 0.300000012, 1.00119996),MeshType = Enum.MeshType.Brick,})
  452. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 0.173647031, -0.984808087, -9.32253897e-07, -0.984810054, -0.173646703, 5.37186861e-06, -5.65499067e-06, -1.82278015e-08, -1.00000203),C1 = CFrame.new(0.489999771, 1.14000368, -0.410009861, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  453.  
  454. DeathClaw = New("Model",Character,"DeathClaw",{})
  455. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 1.301, 1.00999999),CFrame = CFrame.new(-8.18999767, 2.64003253, -8.10000992, 1, 6.97362293e-06, -1.91137744e-07, -6.97362293e-06, 1, 9.7819111e-08, 1.91138426e-07, -9.78177397e-08, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  456. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177468e-08, -1.91137744e-07, 9.78191039e-08, 1),C1 = CFrame.new(2.86102295e-06, -0.359999895, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  457. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.550000012, 0.25999999),CFrame = CFrame.new(-7.58999872, 2.16453266, -8.08500957, -9.61124897e-07, 6.97365886e-06, -1, 9.77374555e-08, 1, 6.97365886e-06, 1, -9.77312951e-08, -9.61124897e-07),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  458. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  459. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -9.61124897e-07, 9.77374413e-08, 1, 6.97365886e-06, 1, -9.77313022e-08, -1, 6.97365886e-06, -9.61124897e-07),C1 = CFrame.new(0.600004673, -0.835495472, 0.0150003433, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  460. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.25000003, 0.25999999),CFrame = CFrame.new(-7.58999777, 1.77453327, -8.08500767, 9.61683781e-07, -6.97418636e-06, -1, 1.04010105e-05, -1, 6.97419773e-06, -1.00000036, -1.0356307e-05, -9.61610908e-07),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  461. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  462. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 9.61683781e-07, 1.04010105e-05, -1.00000036, -6.97418636e-06, -1, -1.0356307e-05, -1, 6.97419773e-06, -9.61610908e-07),C1 = CFrame.new(0.600008488, -1.22549498, 0.0150022507, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  463. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.550000012, 0.25999999),CFrame = CFrame.new(-8.18999958, 2.16453195, -7.51500511, -1, -1.86969225e-14, 0, 1.86969208e-14, 1, -1.42108547e-14, 0, 1.42108547e-14, -1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  464. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  465. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -1, 1.86969208e-14, 0, -1.86969208e-14, 1, 7.10542736e-15, 0, -7.10542736e-15, -1),C1 = CFrame.new(3.81469727e-06, -0.835500479, 0.585004807, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  466. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.25000003, 0.25999999),CFrame = CFrame.new(-8.18999767, 1.77453327, -7.51500511, 1, 1.86969225e-14, 0, -1.86969208e-14, -1, -1.42108547e-14, 0, -1.42108547e-14, -1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  467. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  468. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -1.86969208e-14, 0, 1.86969208e-14, -1, -7.10542736e-15, 0, -7.10542736e-15, -1),C1 = CFrame.new(8.58306885e-06, -1.22549915, 0.585004807, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  469. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.550000012, 0.25999999),CFrame = CFrame.new(-8.77497768, 2.16453099, -8.06999302, 0, -1.86969225e-14, 1, -1.42108547e-14, 1, -1.86969208e-14, -1, 1.42108547e-14, 0),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  470. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  471. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0, -7.10542736e-15, -1, -1.86969208e-14, 1, 7.10542736e-15, 1, -1.86969208e-14, 0),C1 = CFrame.new(-0.584974289, -0.835505486, 0.0300168991, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  472. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.25000003, 0.25999999),CFrame = CFrame.new(-8.77498817, 1.77453351, -8.06999683, 0, 1.86969225e-14, 1, 1.42108547e-14, -1, -1.86969208e-14, 1, -1.42108547e-14, 0),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  473. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  474. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0, 7.10542736e-15, 1, 1.86969208e-14, -1, -7.10542736e-15, 1, -1.86969208e-14, 0),C1 = CFrame.new(-0.584981918, -1.22550297, 0.0300130844, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  475. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.25000003, 0.25999999),CFrame = CFrame.new(-8.17498684, 1.77453244, -8.6399889, -1, 1.86969225e-14, 0, 1.86969208e-14, -1, 1.42108547e-14, 0, -1.42108547e-14, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  476. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  477. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -1, 1.86969208e-14, 0, 1.86969208e-14, -1, -7.10542736e-15, 0, 7.10542736e-15, 1),C1 = CFrame.new(0.0150194168, -1.22549987, -0.539978981, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  478. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.550000012, 0.25999999),CFrame = CFrame.new(-8.17498493, 2.16453147, -8.63999176, 1, -1.86969225e-14, 0, -1.86969208e-14, 1, 1.42108547e-14, 0, 1.42108547e-14, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  479. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  480. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -1.86969208e-14, 0, -1.86969208e-14, 1, 7.10542736e-15, 0, 7.10542736e-15, 1),C1 = CFrame.new(0.0150184631, -0.835500717, -0.539981842, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  481. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.550999999, 1.00999999),CFrame = CFrame.new(-8.19000053, 1.96503329, -8.10000992, 1, 6.97362293e-06, -1.91137744e-07, -6.97362293e-06, 1, 9.7819111e-08, 1.91138426e-07, -9.78177397e-08, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  482. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177468e-08, -1.91137744e-07, 9.78191039e-08, 1),C1 = CFrame.new(4.76837158e-06, -1.03499913, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  483. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.5, 0.5),CFrame = CFrame.new(-8.19000053, 1.78503358, -8.10000992, -4.37112426e-08, -1, 0, 1, -4.37112071e-08, 1.42108547e-14, 1.42108547e-14, 0, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  484. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Cylinder,})
  485. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -4.37112426e-08, 1, 7.10542736e-15, -1, -4.37112071e-08, 0, 0, 7.10542736e-15, 1),C1 = CFrame.new(5.7220459e-06, -1.21499884, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  486. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.879999995, 0.25999999),CFrame = CFrame.new(-8.80498791, 3.55953217, -8.09999657, 0, 1.86969225e-14, 1, 1.42108547e-14, -1, -1.86969208e-14, 1, -1.42108547e-14, 0),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  487. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  488. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0, 7.10542736e-15, 1, 1.86969208e-14, -1, -7.10542736e-15, 1, -1.86969208e-14, 0),C1 = CFrame.new(-0.614994049, 0.559495449, 1.33514404e-05, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  489. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.610000014, 0.559999943),CFrame = CFrame.new(-8.65498829, 4.29453278, -8.09999752, -3.88175249e-06, 6.16863917e-06, 1.00000167, -7.53802908e-07, 1, -6.168651e-06, -1.00000167, -7.53825816e-07, -3.88175249e-06),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  490. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  491. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -3.88175249e-06, -7.53802908e-07, -1.00000167, 6.16863917e-06, 1, -7.53825816e-07, 1.00000167, -6.168651e-06, -3.88175249e-06),C1 = CFrame.new(-0.464999199, 1.29449725, 1.23977661e-05, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  492. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.610000014, 0.559999943),CFrame = CFrame.new(-8.11498737, 4.29453278, -8.09999752, -1.78813934e-07, 6.16862235e-06, -1.00000012, 7.53896074e-07, 1, 6.16862371e-06, 1.00000012, -7.53894938e-07, -1.78813934e-07),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  493. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  494. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -1.78813934e-07, 7.53896074e-07, 1.00000012, 6.16862235e-06, 1, -7.53894938e-07, -1.00000012, 6.16862371e-06, -1.78813934e-07),C1 = CFrame.new(0.0750017166, 1.29450107, 1.23977661e-05, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  495. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.370000005, 0.73999989),CFrame = CFrame.new(-8.02498817, 4.17453337, -8.09999752, -1.78813934e-07, 6.16862235e-06, -1.00000012, 7.53896074e-07, 1, 6.16862371e-06, 1.00000012, -7.53894938e-07, -1.78813934e-07),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  496. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  497. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -1.78813934e-07, 7.53896074e-07, 1.00000012, 6.16862235e-06, 1, -7.53894938e-07, -1.00000012, 6.16862371e-06, -1.78813934e-07),C1 = CFrame.new(0.165000916, 1.17450213, 1.23977661e-05, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  498. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.789999962, 0.200000003),CFrame = CFrame.new(-7.90498638, 4.38453436, -7.69499397, -1.78996103e-07, 0.342027485, -0.939698875, 7.53943937e-07, 0.939689457, 0.342029005, 1.00000966, -6.47293803e-07, -4.25697635e-07),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  499. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  500. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -1.78996103e-07, 7.53943937e-07, 1.00000966, 0.342027485, 0.939689457, -6.47293803e-07, -0.939698875, 0.342029005, -4.25697635e-07),C1 = CFrame.new(0.285001755, 1.38450408, 0.405015945, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  501. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.789999962, 0.200000003),CFrame = CFrame.new(-7.90498638, 4.38453436, -8.5049963, -1.78996103e-07, 0.342027485, -0.939698875, 7.53943937e-07, 0.939689457, 0.342029005, 1.00000966, -6.47293803e-07, -4.25697635e-07),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  502. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  503. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -1.78996103e-07, 7.53943937e-07, 1.00000966, 0.342027485, 0.939689457, -6.47293803e-07, -0.939698875, 0.342029005, -4.25697635e-07),C1 = CFrame.new(0.285001755, 1.38450408, -0.404986382, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  504. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.789999962, 0.439999998),CFrame = CFrame.new(-8.22774792, 4.42557859, -8.5049963, -3.11434269e-06, 0.34202829, 0.939689755, 8.30739737e-07, 0.939689636, -0.342028916, -1.00000107, -3.18491402e-07, -3.46451998e-06),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  505. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  506. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -3.11434269e-06, 8.30739737e-07, -1.00000107, 0.34202829, 0.939689636, -3.18491402e-07, 0.939689755, -0.342028916, -3.46451998e-06),C1 = CFrame.new(-0.0377607346, 1.42554593, -0.404986382, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  507. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.789999962, 0.439999998),CFrame = CFrame.new(-8.22774982, 4.42557859, -7.69499588, -3.11434269e-06, 0.34202829, 0.939689755, 8.30739737e-07, 0.939689636, -0.342028916, -1.00000107, -3.18491402e-07, -3.46451998e-06),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  508. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  509. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -3.11434269e-06, 8.30739737e-07, -1.00000107, 0.34202829, 0.939689636, -3.18491402e-07, 0.939689755, -0.342028916, -3.46451998e-06),C1 = CFrame.new(-0.0377616882, 1.42554593, 0.405014038, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  510. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.201000005, 0.550999999, 0.200000003),CFrame = CFrame.new(-8.59500027, 2.89503574, -8.1300106, 1, 6.97362293e-06, -1.91137744e-07, -6.97362293e-06, 1, 9.7819111e-08, 1.91138426e-07, -9.78177397e-08, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  511. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.400999993),MeshType = Enum.MeshType.Brick,})
  512. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177468e-08, -1.91137744e-07, 9.78191039e-08, 1),C1 = CFrame.new(-0.40500164, -0.104999542, -0.0300006866, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  513. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.201000005, 0.281000018, 0.200000003),CFrame = CFrame.new(-8.59499931, 3.06003571, -8.04001141, 1, 6.13489965e-06, 3.32129116e-06, -6.97362293e-06, 0.866024673, 0.500001252, 1.91137516e-07, -0.500001252, 0.866024673),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  514. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.400999993),MeshType = Enum.MeshType.Brick,})
  515. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -6.97362293e-06, 1.91137516e-07, 6.13489919e-06, 0.866024673, -0.500001252, 3.32129093e-06, 0.500001252, 0.866024673),C1 = CFrame.new(-0.40500164, 0.0600004196, 0.0599985123, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  516. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.201000005, 0.281000018, 0.200000003),CFrame = CFrame.new(-8.59499931, 2.73003602, -8.04001141, 1, 5.94368294e-06, -3.65236247e-06, -6.97355335e-06, 0.866026044, -0.500001729, 1.91185379e-07, 0.500001729, 0.866026044),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  517. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.400999993),MeshType = Enum.MeshType.Brick,})
  518. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -6.97355335e-06, 1.91185379e-07, 5.94368294e-06, 0.866026044, 0.500001729, -3.65236247e-06, -0.500001729, 0.866026044),C1 = CFrame.new(-0.404999733, -0.269999266, 0.0599985123, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  519. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.201000005, 0.200000003, 0.200000003),CFrame = CFrame.new(-8.59499931, 2.89053583, -7.98001146, 1, 6.97355881e-06, -1.91176355e-07, -6.97355881e-06, 1, 1.86264515e-07, 1.91177477e-07, -1.86264515e-07, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  520. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.400999993),MeshType = Enum.MeshType.Brick,})
  521. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -6.97355881e-06, 1.91177477e-07, 6.97355881e-06, 1, -1.86264515e-07, -1.91176355e-07, 1.86264515e-07, 1),C1 = CFrame.new(-0.405000687, -0.109499454, 0.119998455, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  522. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.300000012, 1.73000002, 0.300000012),CFrame = CFrame.new(-7.64528942, 2.08194613, -7.50872564, 0.57357645, -0.409576029, 0.709406495, 2.84217094e-14, 0.866025388, 0.5, -0.819152057, -0.286788225, 0.496731758),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  523. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.57357645, 2.84217094e-14, -0.819152057, -0.409576029, 0.866025388, -0.286788225, 0.709406495, 0.5, 0.496731758),C1 = CFrame.new(0.544714928, -0.918082476, 0.591284275, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  524. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(-7.46966791, 1.04344952, -7.39113998, 0.573576868, 0.469845414, 0.671012759, -2.96045641e-07, 0.81915319, -0.573575616, -0.819153547, 0.328988761, 0.469848096),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  525. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.573576868, -2.96045414e-07, -0.819153547, 0.469845414, 0.81915319, 0.328988761, 0.671012759, -0.573575616, 0.469848096),C1 = CFrame.new(0.72034359, -1.95657802, 0.708869457, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  526. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(-7.72338438, 0.601107359, -7.56879187, 0.573576868, 0.469845414, 0.671012759, -2.96045641e-07, 0.81915319, -0.573575616, -0.819153547, 0.328988761, 0.469848096),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  527. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.25, 0.899999976, 0.25),MeshId = "rbxassetid://9756362",MeshType = Enum.MeshType.FileMesh,})
  528. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.573576868, -2.96045414e-07, -0.819153547, 0.469845414, 0.81915319, 0.328988761, 0.671012759, -0.573575616, 0.469848096),C1 = CFrame.new(0.466629982, -2.39892173, 0.531217575, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  529. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.300000012, 1.73000002, 0.300000012),CFrame = CFrame.new(-7.68504524, 2.08194637, -8.59320354, -0.707107365, -0.353553772, 0.612371683, -5.68434189e-14, 0.866024971, 0.500000894, -0.707106352, 0.353554249, -0.612372518),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  530. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.707107365, -5.68434189e-14, -0.707106352, -0.353553772, 0.866024971, 0.353554249, 0.612371683, 0.500000894, -0.612372518),C1 = CFrame.new(0.50495863, -0.918082476, -0.493193626, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  531. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(-7.53874874, 1.0434494, -8.74573803, -0.707107365, 0.405578643, 0.579228163, -5.68434189e-14, 0.819152892, -0.573575258, -0.707106352, -0.405579239, -0.579228997),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  532. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.707107365, -5.68434189e-14, -0.707106352, 0.405578643, 0.819152892, -0.405579239, 0.579228163, -0.573575258, -0.579228997),C1 = CFrame.new(0.651262283, -1.95657837, -0.645728111, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  533. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(-7.75776386, 0.601107359, -8.52672577, -0.707107365, 0.405578643, 0.579228163, -5.68434189e-14, 0.819152892, -0.573575258, -0.707106352, -0.405579239, -0.579228997),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  534. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.25, 0.899999976, 0.25),MeshId = "rbxassetid://9756362",MeshType = Enum.MeshType.FileMesh,})
  535. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.707107365, -5.68434189e-14, -0.707106352, 0.405578643, 0.819152892, -0.405579239, 0.579228163, -0.573575258, -0.579228997),C1 = CFrame.new(0.4322505, -2.39892197, -0.426715851, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  536. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,Reflectance = 0.097999997437,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.01100004, 0.200000003, 1.01100004),CFrame = CFrame.new(-8.1899929, 3.28953266, -8.10000992, 1, 6.97362293e-06, -1.91137744e-07, -6.97362293e-06, 1, 9.7819111e-08, 1.91138426e-07, -9.78177397e-08, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  537. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177468e-08, -1.91137744e-07, 9.78191039e-08, 1),C1 = CFrame.new(2.86102295e-06, 0.289500237, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  538. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,Reflectance = 0.097999997437,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.01100004, 0.200000003, 1.01100004),CFrame = CFrame.new(-8.18999863, 2.47953296, -8.10000992, 1, 6.97362293e-06, -1.91137744e-07, -6.97362293e-06, 1, 9.7819111e-08, 1.91138426e-07, -9.78177397e-08, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  539. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177468e-08, -1.91137744e-07, 9.78191039e-08, 1),C1 = CFrame.new(2.86102295e-06, -0.520499468, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  540. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.097999997437,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.00999999, 0.731000006, 1.00999999),CFrame = CFrame.new(-8.189991, 3.64503241, -8.10000992, 1, 6.97362293e-06, -1.91137744e-07, -6.97362293e-06, 1, 9.7819111e-08, 1.91138426e-07, -9.78177397e-08, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  541. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177468e-08, -1.91137744e-07, 9.78191039e-08, 1),C1 = CFrame.new(1.90734863e-06, 0.644999981, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  542. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Metal,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.699999988, 0.699999988),CFrame = CFrame.new(-8.19000053, 1.78503358, -8.10000992, -4.37112426e-08, -1, 0, 1, -4.37112071e-08, 1.42108547e-14, 1.42108547e-14, 0, 1),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  543. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.980000019, 1, 1),MeshType = Enum.MeshType.Cylinder,})
  544. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -4.37112426e-08, 1, 7.10542736e-15, -1, -4.37112071e-08, 0, 0, 7.10542736e-15, 1),C1 = CFrame.new(5.7220459e-06, -1.21499884, 0, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  545. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.300000012, 1.73000002, 0.300000012),CFrame = CFrame.new(-8.76894283, 2.02194643, -8.5701561, -0.573575079, 0.409577131, -0.709406972, -3.83693077e-13, 0.86602509, 0.500000715, 0.81915313, 0.286787927, -0.496730298),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  546. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.573575079, 0, 0.81915313, 0.409577131, 0.86602509, 0.286787927, -0.709406972, 0.500000715, -0.496730298),C1 = CFrame.new(-0.578938484, -0.978090048, -0.470146179, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  547. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(-8.94456291, 0.983449459, -8.68774033, -0.573575079, -0.4698461, -0.671011448, -3.83693077e-13, 0.819152832, -0.573575437, 0.81915313, -0.328988582, -0.469845563),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  548. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.573575079, 0, 0.81915313, -0.4698461, 0.819152832, -0.328988582, -0.671011448, -0.573575437, -0.469845563),C1 = CFrame.new(-0.754550934, -2.01658821, -0.587730408, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  549. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(-8.69085026, 0.541107416, -8.51008987, -0.573575079, -0.4698461, -0.671011448, -3.83693077e-13, 0.819152832, -0.573575437, 0.81915313, -0.328988582, -0.469845563),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  550. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.25, 0.899999976, 0.25),MeshId = "rbxassetid://9756362",MeshType = Enum.MeshType.FileMesh,})
  551. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, -0.573575079, 0, 0.81915313, -0.4698461, 0.819152832, -0.328988582, -0.671011448, -0.573575437, -0.469845563),C1 = CFrame.new(-0.500835419, -2.45892859, -0.410079956, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  552. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(-8.8754797, 0.983449221, -7.33314657, 0.707107365, -0.405578345, -0.579228342, 5.68434189e-14, 0.819153309, -0.573574781, 0.707106352, 0.405578941, 0.579229236),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  553. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.707107365, 0, 0.707106352, -0.405578345, 0.819153309, 0.405578941, -0.579228342, -0.573574781, 0.579229236),C1 = CFrame.new(-0.68546772, -2.01658797, 0.766863346, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  554. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(-8.65646744, 0.541107178, -7.55215645, 0.707107365, -0.405578345, -0.579228342, 5.68434189e-14, 0.819153309, -0.573574781, 0.707106352, 0.405578941, 0.579229236),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  555. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.25, 0.899999976, 0.25),MeshId = "rbxassetid://9756362",MeshType = Enum.MeshType.FileMesh,})
  556. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.707107365, 0, 0.707106352, -0.405578345, 0.819153309, 0.405578941, -0.579228342, -0.573574781, 0.579229236),C1 = CFrame.new(-0.466452599, -2.45892859, 0.54785347, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  557. Part = New("Part",DeathClaw,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.300000012, 1.73000002, 0.300000012),CFrame = CFrame.new(-8.72918701, 2.02194619, -7.48567963, 0.707107365, 0.353553772, -0.612371683, 5.68434189e-14, 0.866024971, 0.500000834, 0.707106352, -0.353554249, 0.612372518),CanCollide = false,Locked = true,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  558. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.707107365, 0, 0.707106352, 0.353553772, 0.866024971, -0.353554249, -0.612371683, 0.500000834, 0.612372518),C1 = CFrame.new(-0.539182663, -0.978090048, 0.614330292, 1, -6.97362293e-06, 1.91138426e-07, 6.97362293e-06, 1, -9.78177539e-08, -1.91137744e-07, 9.78190968e-08, 1),})
  559.  
  560. Cope = New("Model",Character,"Cope",{})
  561. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Marble,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.12, 1.50999999, 0.200000003),CFrame = CFrame.new(-12.5108576, 4.75794458, -60.8341942, -0.707105577, 0.183013588, 0.683015823, 7.1967059e-09, 0.965925276, -0.258820236, -0.707108021, -0.183012977, -0.683013499),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  562. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.707105577, 7.1967059e-09, -0.707108021, 0.183013588, 0.965925276, -0.183012977, 0.683015823, -0.258820236, -0.683013499),C1 = CFrame.new(-0.899094582, 1.68631172, 0.394245148, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  563. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1.50999999, 0.200000003),CFrame = CFrame.new(-12.0904417, 4.75794458, -60.413784, -0.688464046, 0.243945822, 0.683019996, 0.0841861665, 0.962248921, -0.258821309, -0.720367908, -0.120688133, -0.683017612),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  564. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.901109993),})
  565. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.688464046, 0.0841861665, -0.720367908, 0.243945822, 0.962248921, -0.120688133, 0.683019996, -0.258821309, -0.683017612),C1 = CFrame.new(-1.31951046, 1.68631172, -0.0261650085, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  566. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1.34000003, 0.200000003),CFrame = CFrame.new(-12.2932825, 5.53767824, -60.917778, -0.183022022, -0.707111359, 0.683010638, -0.965934098, 7.79357015e-06, -0.25882265, 0.183008313, -0.707111478, -0.683013439),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  567. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.901109993),})
  568. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.183022022, -0.965934098, 0.183008313, -0.707111359, 7.79357015e-06, -0.707111478, 0.683010638, -0.25882265, -0.683013439),C1 = CFrame.new(-1.11666965, 2.46604538, 0.477828979, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  569. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1.34000003, 0.200000003),CFrame = CFrame.new(-13.4190331, 5.53767776, -61.394001, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  570. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.901109993),})
  571. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, 0, -0.965925634, 0.258819908, -1, 0, 0, 0, -0.258819908, -0.965925634),C1 = CFrame.new(0.00908088684, 2.4660449, 0.954051971, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  572. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Marble,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.12, 1.50999999, 0.200000003),CFrame = CFrame.new(-13.5137796, 4.75794411, -61.1810532, -1, 0, 0, 0, 0.965925336, -0.2588211, 0, -0.2588211, -0.965925336),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  573. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0.965925336, -0.2588211, 0, -0.2588211, -0.965925336),C1 = CFrame.new(0.103827477, 1.68631124, 0.741104126, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  574. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Marble,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.12, 1.50999999, 0.200000003),CFrame = CFrame.new(-13.1237831, 4.75794411, -61.1810532, -0.984807611, 1.83434778e-09, 0.173648655, -0.0449439324, 0.965925813, -0.254889071, -0.167731613, -0.258821219, -0.95125097),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  575. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.984807611, -0.0449439324, -0.167731613, 1.83434778e-09, 0.965925813, -0.258821219, 0.173648655, -0.254889071, -0.95125097),C1 = CFrame.new(-0.286169052, 1.68631124, 0.741104126, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  576. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1.63999999, 0.200000003),CFrame = CFrame.new(-14.5331249, 5.53767729, -60.7941742, 0.198266998, -0.642790914, -0.739939213, -0.965925992, -1.77039135e-06, -0.258818686, 0.166364998, 0.766041636, -0.62088877),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  577. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.901109993),})
  578. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, 0.198266998, -0.965925992, 0.166364998, -0.642790914, -1.77039135e-06, 0.766041636, -0.739939213, -0.258818686, -0.62088877),C1 = CFrame.new(1.12317276, 2.46604443, 0.354225159, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  579. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1.63, 0.200000003),CFrame = CFrame.new(-14.7642698, 4.81450081, -60.2110023, -0.598598123, -0.306875378, -0.739939809, -0.167731732, 0.951251864, -0.258820742, 0.783295155, -0.0308170337, -0.620888591),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  580. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.901109993),})
  581. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.598598123, -0.167731732, 0.783295155, -0.306875378, 0.951251864, -0.0308170337, -0.739939809, -0.258820742, -0.620888591),C1 = CFrame.new(1.35431767, 1.74286795, -0.228946686, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  582. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Marble,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.12, 1.50999999, 0.200000003),CFrame = CFrame.new(-14.3344688, 4.75794411, -60.6996193, -0.642785966, -0.198266983, -0.739943564, 0, 0.965925992, -0.258818686, 0.766045868, -0.166365013, -0.620883644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  583. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.642785966, 0, 0.766045868, -0.198266983, 0.965925992, -0.166365013, -0.739943564, -0.258818686, -0.620883644),C1 = CFrame.new(0.924516678, 1.68631124, 0.259670258, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  584. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Marble,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.21000004, 1, 0.200000003),CFrame = CFrame.new(-14.4139519, 5.00425529, -60.7075691, -0.642785966, -0.198266983, -0.739943564, 0, 0.965925992, -0.258818686, 0.766045868, -0.166365013, -0.620883644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  585. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.642785966, 0, 0.766045868, -0.198266983, 0.965925992, -0.166365013, -0.739943564, -0.258818686, -0.620883644),C1 = CFrame.new(1.00399971, 1.93262243, 0.267620087, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  586. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Marble,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.400000036, 1, 0.200000003),CFrame = CFrame.new(-13.9671764, 5.00734234, -61.2220955, -0.812395632, -0.198267475, -0.548365176, -0.0669871718, 0.965927482, -0.249999762, 0.579246223, -0.166365072, -0.797995448),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  587. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.812395632, -0.0669871718, 0.579246223, -0.198267475, 0.965927482, -0.166365072, -0.548365176, -0.249999762, -0.797995448),C1 = CFrame.new(0.557224274, 1.93570948, 0.782146454, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  588. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Marble,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.75, 3.67000008, 0.200000003),CFrame = CFrame.new(-13.3958569, 2.37965941, -61.6678925, -1, -2.99003489e-08, 8.21505353e-08, 0, 0.939692616, 0.342020124, -8.74227766e-08, 0.342020124, -0.939692616),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  589. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 0, -8.74227766e-08, -2.99003489e-08, 0.939692616, 0.342020124, 8.21505353e-08, 0.342020124, -0.939692616),C1 = CFrame.new(-0.0140953064, -0.691973448, 1.22794342, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  590. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Marble,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 3.67000008, 0.979999959),CFrame = CFrame.new(-12.1235914, 2.38609958, -61.6355209, -4.10752676e-08, -1.49501744e-08, -1, -0.342020124, 0.939692616, 0, 0.939692616, 0.342020124, -4.37113812e-08),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  591. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  592. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -4.10752676e-08, -0.342020124, 0.939692616, -1.49501744e-08, 0.939692616, 0.342020124, -1, 0, -4.37113812e-08),C1 = CFrame.new(-1.28636074, -0.685533285, 1.1955719, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  593. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Marble,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 3.70000005, 0.980000019),CFrame = CFrame.new(-14.6920738, 2.36851025, -61.6310654, -0.0871554241, -2.81773873e-06, 0.996194839, 0.340713918, 0.939694345, 0.0298111532, -0.936118603, 0.342015594, -0.0818984881),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  594. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  595. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.0871554241, 0.340713918, -0.936118603, -2.81773873e-06, 0.939694345, 0.342015594, 0.996194839, 0.0298111532, -0.0818984881),C1 = CFrame.new(1.28212166, -0.703122616, 1.19111633, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  596. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.870000005, 3.63999987, 0.201000005),CFrame = CFrame.new(-13.3358564, 2.39375472, -61.6627617, -1, -2.99003489e-08, 8.21505353e-08, 0, 0.939692616, 0.342020124, -8.74227766e-08, 0.342020124, -0.939692616),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  597. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 0, -8.74227766e-08, -2.99003489e-08, 0.939692616, 0.342020124, 8.21505353e-08, 0.342020124, -0.939692616),C1 = CFrame.new(-0.074095726, -0.677878141, 1.22281265, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  598. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Marble,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1.24000001, 1.56999993, 0.200000003),CFrame = CFrame.new(-13.3808556, 4.66274691, -61.2750282, -1, -2.4096984e-08, -8.40361665e-08, 0, 0.96126169, -0.275637358, 8.74227766e-08, -0.275637358, -0.96126169),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  599. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 0, 8.74227766e-08, -2.4096984e-08, 0.96126169, -0.275637358, -8.40361665e-08, -0.275637358, -0.96126169),C1 = CFrame.new(-0.0290966034, 1.59111404, 0.835079193, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  600. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1, 0.201000005),CFrame = CFrame.new(-13.2908545, 4.75274706, -61.3350258, -1, -2.4096984e-08, -8.40361665e-08, 0, 0.96126169, -0.275637358, 8.74227766e-08, -0.275637358, -0.96126169),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  601. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 0, 8.74227766e-08, -2.4096984e-08, 0.96126169, -0.275637358, -8.40361665e-08, -0.275637358, -0.96126169),C1 = CFrame.new(-0.11909771, 1.6811142, 0.895076752, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  602. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.460000038, 0.201000005),CFrame = CFrame.new(-13.5057449, 4.41605902, -61.2384834, -0.500001013, -0.866025865, -1.44586159e-06, -0.832477212, 0.480631381, -0.275635749, 0.238707557, -0.137816548, -0.961265504),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  603. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.500001013, -0.832477212, 0.238707557, -0.866025865, 0.480631381, -0.137816548, -1.44586159e-06, -0.275635749, -0.961265504),C1 = CFrame.new(0.0957927704, 1.34442616, 0.798534393, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  604. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.460000038, 0.201000005),CFrame = CFrame.new(-13.4393587, 5.05592775, -61.4219513, -0.70710361, 0.707110703, -1.38169844e-06, 0.679718614, 0.679716527, -0.275636435, -0.194904223, -0.194906846, -0.961266994),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  605. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.70710361, 0.679718614, -0.194904223, 0.707110703, 0.679716527, -0.194906846, -1.38169844e-06, -0.275636435, -0.961266994),C1 = CFrame.new(0.0294065475, 1.98429489, 0.982002258, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  606. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.460000038, 0.201000005),CFrame = CFrame.new(-13.6257429, 4.76211357, -61.3377113, -1, 3.58333796e-06, -2.31007533e-07, 3.50820073e-06, 0.961262047, -0.275636137, -7.65638788e-07, -0.275636166, -0.961261988),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  607. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 3.50820073e-06, -7.65638788e-07, 3.58333796e-06, 0.961262047, -0.275636166, -2.31007533e-07, -0.275636137, -0.961261988),C1 = CFrame.new(0.215790749, 1.69048071, 0.897762299, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  608. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1.00999999, 0.200000003),CFrame = CFrame.new(-14.0363855, 5.09921694, -61.3817978, 0.254890978, 0.0449410602, -0.965926588, 0.0784736574, 0.994665086, 0.0669859275, 0.963782966, -0.0928734913, 0.250003755),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  609. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.901109993),})
  610. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, 0.254890978, 0.0784736574, 0.963782966, 0.0449410602, 0.994665086, -0.0928734913, -0.965926588, 0.0669859275, 0.250003755),C1 = CFrame.new(0.626433372, 2.02758408, 0.941848755, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  611. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1.00999999, 0.200000003),CFrame = CFrame.new(-14.0210648, 4.36388063, -61.125576, 0.243211791, -0.0885253623, -0.965925157, 0.565291286, 0.822167099, 0.0669853985, 0.788221896, -0.56232065, 0.250003368),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  612. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.901109993),})
  613. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, 0.243211791, 0.565291286, 0.788221896, -0.0885253623, 0.822167099, -0.56232065, -0.965925157, 0.0669853985, 0.250003368),C1 = CFrame.new(0.611112595, 1.29224777, 0.685626984, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  614. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1.00999999, 0.200000003),CFrame = CFrame.new(-12.7239122, 5.12921667, -61.4298668, -0.26114887, 0.0853560343, -0.961517394, 0.0784739628, 0.994663239, 0.0669848695, 0.962103546, -0.0579610579, -0.266453356),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  615. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.901109993),})
  616. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.26114887, 0.0784739628, 0.962103546, 0.0853560343, 0.994663239, -0.0579610579, -0.961517394, 0.0669848695, -0.266453356),C1 = CFrame.new(-0.686039925, 2.05758381, 0.989917755, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  617. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1.00999999, 0.200000003),CFrame = CFrame.new(-12.8387537, 4.39387989, -61.2003136, -0.183483064, 0.204494253, -0.961517632, 0.565291166, 0.822167277, 0.0669848621, 0.804226279, -0.531246781, -0.266452581),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  618. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.901109993),})
  619. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.183483064, 0.565291166, 0.804226279, 0.204494253, 0.822167277, -0.531246781, -0.961517632, 0.0669848621, -0.266452581),C1 = CFrame.new(-0.571198463, 1.32224703, 0.760364532, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  620. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Royal purple"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 1.34000003, 0.200000003),CFrame = CFrame.new(-13.4190331, 5.47764301, -61.50214, 0, -1, 0, -0.965925634, 0, -0.258819908, 0.258819908, 0, -0.965925634),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines})
  621. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.901109993),})
  622. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, 0, -0.965925634, 0.258819908, -1, 0, 0, 0, -0.258819908, -0.965925634),C1 = CFrame.new(0.00908088684, 2.40601015, 1.06219101, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  623. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Mulberry"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.270000011, 3.6400001, 0.201100007),CFrame = CFrame.new(-13.3358564, 2.39375472, -61.6627617, -1, -2.99003489e-08, 8.21505353e-08, 0, 0.939692616, 0.342020124, -8.74227766e-08, 0.342020124, -0.939692616),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  624. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 0, -8.74227766e-08, -2.99003489e-08, 0.939692616, 0.342020124, 8.21505353e-08, 0.342020124, -0.939692616),C1 = CFrame.new(-0.074095726, -0.677878141, 1.22281265, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  625. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Mulberry"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.270000011, 1.93000019, 0.201100007),CFrame = CFrame.new(-13.6704454, 3.05360031, -61.4225998, -0.906307578, 0.42261827, 9.00617749e-08, 0.397131681, 0.851650298, 0.342019916, 0.14454405, 0.309975445, -0.93969208),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  626. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.906307578, 0.397131681, 0.14454405, 0.42261827, 0.851650298, 0.309975445, 9.00617749e-08, 0.342019916, -0.93969208),C1 = CFrame.new(0.260493279, -0.0180325508, 0.982650757, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  627. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Mulberry"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.270000011, 1.96000016, 0.201100007),CFrame = CFrame.new(-13.0408983, 3.05865288, -61.4207687, -0.939690292, -0.342029512, -4.38403504e-07, -0.321403384, 0.883021832, 0.342015594, -0.116978958, 0.321387708, -0.93969357),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  628. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -0.939690292, -0.321403384, -0.116978958, -0.342029512, 0.883021832, 0.321387708, -4.38403504e-07, 0.342015594, -0.93969357),C1 = CFrame.new(-0.369053841, -0.0129799843, 0.980819702, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  629. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.270000011, 0.200000003, 0.201199993),CFrame = CFrame.new(-13.3358564, 1.0030086, -62.1689529, -1, -2.99003489e-08, 8.21505353e-08, 0, 0.939692616, 0.342020124, -8.74227766e-08, 0.342020124, -0.939692616),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  630. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 0, -8.74227766e-08, -2.99003489e-08, 0.939692616, 0.342020124, 8.21505353e-08, 0.342020124, -0.939692616),C1 = CFrame.new(-0.074095726, -2.06862426, 1.72900391, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  631. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.270000011, 0.200000003, 0.201199993),CFrame = CFrame.new(-13.3358564, 1.51044154, -61.9842644, -1, -2.99003489e-08, 8.21505353e-08, 0, 0.939692616, 0.342020124, -8.74227766e-08, 0.342020124, -0.939692616),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  632. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 0, -8.74227766e-08, -2.99003489e-08, 0.939692616, 0.342020124, 8.21505353e-08, 0.342020124, -0.939692616),C1 = CFrame.new(-0.074095726, -1.56119132, 1.54431534, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  633. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.270000011, 0.200000003, 0.201199993),CFrame = CFrame.new(-13.3358564, 2.01787543, -61.799572, -1, -2.99003489e-08, 8.21505353e-08, 0, 0.939692616, 0.342020124, -8.74227766e-08, 0.342020124, -0.939692616),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  634. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 0, -8.74227766e-08, -2.99003489e-08, 0.939692616, 0.342020124, 8.21505353e-08, 0.342020124, -0.939692616),C1 = CFrame.new(-0.074095726, -1.05375743, 1.35962296, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  635. Part = New("Part",Cope,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.270000011, 0.200000003, 0.201199993),CFrame = CFrame.new(-13.3358564, 2.49711919, -61.6251411, -1, -2.99003489e-08, 8.21505353e-08, 0, 0.939692616, 0.342020124, -8.74227766e-08, 0.342020124, -0.939692616),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  636. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -1, 0, -8.74227766e-08, -2.99003489e-08, 0.939692616, 0.342020124, 8.21505353e-08, 0.342020124, -0.939692616),C1 = CFrame.new(-0.074095726, -0.574513674, 1.18519211, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1),})
  637.  
  638. for i,v in pairs(DeathClaw:children'') do
  639. if v:IsA("Part") then
  640. v.CanCollide=false
  641. end
  642. end
  643.  
  644. for i,v in pairs(RightPad:children'') do
  645. if v:IsA("Part") then
  646. v.CanCollide=false
  647. end
  648. end
  649.  
  650. for i,v in pairs(Cope:children'') do
  651. if v:IsA("Part") then
  652. v.CanCollide=false
  653. end
  654. end
  655.  
  656.  
  657.  
  658.  
  659.  
  660. Player.Character.Head.BrickColor = BrickColor.new("Really black")
  661. Player.Character.Torso.BrickColor = BrickColor.new("Really black")
  662. Player.Character["Right Arm"].BrickColor = BrickColor.new("Really black")
  663. Player.Character["Right Leg"].BrickColor = BrickColor.new("Really black")
  664. Player.Character["Left Leg"].BrickColor = BrickColor.new("Really black")
  665. Player.Character["Left Arm"].BrickColor = BrickColor.new("Really black")
  666.  
  667.  
  668.  
  669. local selectionBoxOfTorso = Instance.new("SelectionBox",Torso)
  670. selectionBoxOfTorso.Adornee = Torso
  671. selectionBoxOfTorso.Color = BrickColor.new("Royal purple")
  672. selectionBoxOfTorso.LineThickness = 0.01
  673. selectionBoxOfTorso.Transparency = 0
  674.  
  675. local selectionBoxOfRightArm = Instance.new("SelectionBox",Character["Right Arm"])
  676. selectionBoxOfRightArm.Adornee = Character["Right Arm"]
  677. selectionBoxOfRightArm.Color = BrickColor.new("Royal purple")
  678. selectionBoxOfRightArm.LineThickness = 0.01
  679. selectionBoxOfRightArm.Transparency = 0
  680.  
  681. local selectionBoxOfRightLeg = Instance.new("SelectionBox",Character["Right Leg"])
  682. selectionBoxOfRightLeg.Adornee = Character["Right Leg"]
  683. selectionBoxOfRightLeg.Color = BrickColor.new("Royal purple")
  684. selectionBoxOfRightLeg.LineThickness = 0.01
  685. selectionBoxOfRightLeg.Transparency = 0
  686.  
  687. local selectionBoxOfLeftArm = Instance.new("SelectionBox",Character["Left Arm"])
  688. selectionBoxOfLeftArm.Adornee = Character["Left Arm"]
  689. selectionBoxOfLeftArm.Color = BrickColor.new("Royal purple")
  690. selectionBoxOfLeftArm.LineThickness = 0.01
  691. selectionBoxOfLeftArm.Transparency = 0
  692.  
  693. local selectionBoxOfLeftLeg = Instance.new("SelectionBox",Character["Left Leg"])
  694. selectionBoxOfLeftLeg.Adornee = Character["Left Leg"]
  695. selectionBoxOfLeftLeg.Color = BrickColor.new("Royal purple")
  696. selectionBoxOfLeftLeg.LineThickness = 0.01
  697. selectionBoxOfLeftLeg.Transparency = 0
  698.  
  699.  
  700. LightOnBody = Instance.new("PointLight", Head)
  701. LightOnBody.Brightness = 3000
  702. LightOnBody.Range = 20
  703. LightOnBody.Color = Color3.fromRGB(42,0,168)
  704.  
  705. local eye1 = Instance.new("Part")
  706. eye1.Parent = Character
  707. eye1.Size = Vector3.new(0.2, 0.2, 0.2)
  708. eye1.Archivable = true
  709. eye1.Transparency = 0
  710. eye1.Shape = "Ball"
  711. eye1.BrickColor = BrickColor.new("Royal purple")
  712. eye1.Material = "Neon"
  713. eye1.CanCollide = false
  714. local mesh = Instance.new("SpecialMesh",eye1)
  715. mesh.MeshType = "Sphere"
  716. mesh.Scale = Vector3.new(0.75, 1, 1)
  717. local weld1en = Instance.new("Weld")
  718. weld1en.Parent = Character.Head
  719. weld1en.Part0 = Character.Head
  720. weld1en.Part1 = eye1
  721. weld1en.C1 = CFrame.new(-0.116, -0.23, 0.5475)
  722.  
  723.  
  724.  
  725.  
  726. local eye2 = Instance.new("Part")
  727. eye2.Parent = Character
  728. eye2.Size = Vector3.new(0.2, 0.2, 0.2)
  729. eye2.Archivable = true
  730. eye2.Transparency = 0
  731. eye2.Shape = "Ball"
  732. eye2.BrickColor = BrickColor.new("Royal purple")
  733. eye2.Material = "Neon"
  734. eye2.CanCollide = false
  735. local mesh = Instance.new("SpecialMesh",eye2)
  736. mesh.MeshType = "Sphere"
  737. mesh.Scale = Vector3.new(0.75, 1, 1)
  738. local weld1en = Instance.new("Weld")
  739. weld1en.Parent = Character.Head
  740. weld1en.Part0 = Character.Head
  741. weld1en.Part1 = eye2
  742. weld1en.C1 = CFrame.new(0.247, -0.23, 0.5475)
  743.  
  744. function BurningEff(part)
  745. local eff1 = Instance.new("ParticleEmitter",part)
  746. eff1.Size = NumberSequence.new(.1)
  747. eff1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  748. eff1.LightEmission = 1
  749. eff1.Lifetime = NumberRange.new(1)
  750. eff1.Speed = NumberRange.new(0)
  751. eff1.Rate = 100
  752. eff1.Texture = "rbxassetid://284205403"
  753. eff1.Acceleration = Vector3.new(0,10,0)
  754. eff1.Color = ColorSequence.new(Color3.fromRGB(42,0,168))
  755. local eff2 = Instance.new("ParticleEmitter",part)
  756. eff2.Size = NumberSequence.new(.1)
  757. eff2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  758. eff2.LightEmission = 1
  759. eff2.Lifetime = NumberRange.new(0.2)
  760. eff2.Speed = NumberRange.new(0)
  761. eff2.Rate = 100
  762. eff2.Texture = "rbxassetid://347504259"
  763. eff2.Acceleration = Vector3.new(0,10,0)
  764. eff2.Color = ColorSequence.new(Color3.fromRGB(42,0,168))
  765. local eff3 = Instance.new("ParticleEmitter",part)
  766. eff3.Size = NumberSequence.new(0.2)
  767. eff3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(1,1)})
  768. eff3.LightEmission = 1
  769. eff3.Lifetime = NumberRange.new(1)
  770. eff3.Speed = NumberRange.new(0)
  771. eff3.Rate = 100
  772. eff3.Texture = "rbxassetid://284205403"
  773. eff3.Acceleration = Vector3.new(0,10,0)
  774. eff3.Color = ColorSequence.new(Color3.fromRGB(42,0,168))
  775. end
  776.  
  777. BurningEff(eye2)
  778.  
  779. function BurningEff1(part)
  780. local eff4 = Instance.new("ParticleEmitter",part)
  781. eff4.Size = NumberSequence.new(.1)
  782. eff4.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  783. eff4.LightEmission = 1
  784. eff4.Lifetime = NumberRange.new(1)
  785. eff4.Speed = NumberRange.new(0)
  786. eff4.Rate = 100
  787. eff4.Texture = "rbxassetid://284205403"
  788. eff4.Acceleration = Vector3.new(0,10,0)
  789. eff4.Color = ColorSequence.new(Color3.fromRGB(42,0,168))
  790. local eff5 = Instance.new("ParticleEmitter",part)
  791. eff5.Size = NumberSequence.new(.1)
  792. eff5.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  793. eff5.LightEmission = 1
  794. eff5.Lifetime = NumberRange.new(0.2)
  795. eff5.Speed = NumberRange.new(0)
  796. eff5.Rate = 100
  797. eff5.Texture = "rbxassetid://347504259"
  798. eff5.Acceleration = Vector3.new(0,10,0)
  799. eff5.Color = ColorSequence.new(Color3.fromRGB(42,0,168))
  800. local eff6 = Instance.new("ParticleEmitter",part)
  801. eff6.Size = NumberSequence.new(0.2)
  802. eff6.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(1,1)})
  803. eff6.LightEmission = 1
  804. eff6.Lifetime = NumberRange.new(1)
  805. eff6.Speed = NumberRange.new(0)
  806. eff6.Rate = 100
  807. eff6.Texture = "rbxassetid://284205403"
  808. eff6.Acceleration = Vector3.new(0,10,0)
  809. eff6.Color = ColorSequence.new(Color3.fromRGB(42,0,168))
  810. end
  811.  
  812. BurningEff1(eye1)
  813.  
  814.  
  815. kolor.Brightness = 1
  816. wait(1.25)
  817. kolor.Brightness = 0.9
  818. wait(0)
  819. kolor.Brightness = 0.8
  820. wait(0)
  821. kolor.Brightness = 0.7
  822. wait(0)
  823. kolor.Brightness = 0.6
  824. wait(0)
  825. kolor.Brightness = 0.5
  826. wait(0)
  827. kolor.Brightness = 0.4
  828. wait(0)
  829. kolor.Brightness = 0.3
  830. wait(0)
  831. kolor.Brightness = 0.2
  832. wait(0)
  833. kolor.Brightness = 0.1
  834. wait(0)
  835. kolor.Brightness = 0
  836.  
  837. wait(0.5)
  838.  
  839. local T = Instance.new("Sound",Character)
  840. T.Volume = 209
  841. T.Looped = false
  842. T.SoundId = "rbxassetid://670991496"
  843. T:Play()
  844.  
  845. chatfunc("")
  846. wait(3)
  847. chatfunc("")
  848. wait(6)
  849.  
  850.  
  851. Humanoid.JumpPower = 16
  852. Humanoid.WalkSpeed = 16
  853.  
  854. --[[Nocturna_A._Alteriano_Night.Owl.Inc]]
  855. wait(1 / 60)
  856. Effects = { }
  857. local Player = game.Players.LocalPlayer
  858. local Character = Player.Character
  859. local Humanoid = Character.Humanoid
  860. local mouse = Player:GetMouse()
  861. local m = Instance.new('Model', Character)
  862. m.Name = "SinisterSword"
  863. local LeftArm = Character["Left Arm"]
  864. local RightArm = Character["Right Arm"]
  865. local LeftLeg = Character["Left Leg"]
  866. local RightLeg = Character["Right Leg"]
  867. local Head = Character.Head
  868. local Torso = Character.Torso
  869. local cam = game.Workspace.CurrentCamera
  870. local RootPart = Character.HumanoidRootPart
  871. local RootJoint = RootPart.RootJoint
  872. local equipped = false
  873. local attack = false
  874. local Anim = 'Idle'
  875. local idle = 0
  876. local attacktype = 1
  877. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  878. local velocity = RootPart.Velocity.y
  879. local sine = 0
  880. local change = 1
  881. local grabbed = false
  882. local cn = CFrame.new
  883. local mr = math.rad
  884. local angles = CFrame.Angles
  885. local ud = UDim2.new
  886. local c3 = Color3.new
  887.  
  888. Humanoid.Animator.Parent = nil
  889. Character.Animate.Parent = nil
  890.  
  891. local newMotor = function(part0, part1, c0, c1)
  892. local w = Instance.new('Motor', part0)
  893. w.Part0 = part0
  894. w.Part1 = part1
  895. w.C0 = c0
  896. w.C1 = c1
  897. return w
  898. end
  899.  
  900. function clerp(a, b, t)
  901. return a:lerp(b, t)
  902. end
  903.  
  904. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  905. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  906.  
  907. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  908. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  909. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  910. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  911. RootJoint.C1 = CFrame.new(0, 0, 0)
  912. RootJoint.C0 = CFrame.new(0, 0, 0)
  913. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  914. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  915.  
  916. local rarmc1 = RW.C1
  917. local larmc1 = LW.C1
  918. local rlegc1 = RH.C1
  919. local llegc1 = LH.C1
  920.  
  921. local resetc1 = false
  922.  
  923. function PlayAnimationFromTable(table, speed, bool)
  924. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  925. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  926. RW.C0 = clerp(RW.C0, table[3], speed)
  927. LW.C0 = clerp(LW.C0, table[4], speed)
  928. RH.C0 = clerp(RH.C0, table[5], speed)
  929. LH.C0 = clerp(LH.C0, table[6], speed)
  930. if bool == true then
  931. if resetc1 == false then
  932. resetc1 = true
  933. RootJoint.C1 = RootJoint.C1
  934. Torso.Neck.C1 = Torso.Neck.C1
  935. RW.C1 = rarmc1
  936. LW.C1 = larmc1
  937. RH.C1 = rlegc1
  938. LH.C1 = llegc1
  939. end
  940. end
  941. end
  942.  
  943. --[[Credits to SazErenos for his Artificial Heartbeat]]--
  944.  
  945. ArtificialHB = Instance.new("BindableEvent", Player.PlayerGui)
  946. ArtificialHB.Name = "Heartbeat"
  947.  
  948. Player.PlayerGui:WaitForChild("Heartbeat")
  949.  
  950. frame = 1 / 30
  951. tf = 0
  952. allowframeloss = false
  953. tossremainder = false
  954. lastframe = tick()
  955. Player.PlayerGui.Heartbeat:Fire()
  956. local gg=false
  957. game:GetService("RunService").Heartbeat:connect(function(s, p)
  958. if Player.PlayerGui:FindFirstChild("Heartbeat") == nil then gg=true end
  959. if gg==true then return end
  960. tf = tf + s
  961. if tf >= frame then
  962. if allowframeloss then
  963. Player.PlayerGui.Heartbeat:Fire()
  964. lastframe = tick()
  965. else
  966. for i = 1, math.floor(tf / frame) do
  967. Player.PlayerGui.Heartbeat:Fire()
  968. end
  969. lastframe = tick()
  970. end
  971. if tossremainder then
  972. tf = 0
  973. else
  974. tf = tf - frame * math.floor(tf / frame)
  975. end
  976. end
  977. end)
  978.  
  979. function swait(num)
  980. if num == 0 or num == nil then
  981. ArtificialHB.Event:wait()
  982. else
  983. for i = 0, num do
  984. ArtificialHB.Event:wait()
  985. end
  986. end
  987. end
  988.  
  989. local RbxUtility = LoadLibrary("RbxUtility")
  990. local Create = RbxUtility.Create
  991.  
  992. function RemoveOutlines(part)
  993. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  994. end
  995.  
  996. CFuncs = {
  997. ["Part"] = {
  998. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  999. local Part = Create("Part"){
  1000. Parent = Parent,
  1001. Reflectance = Reflectance,
  1002. Transparency = Transparency,
  1003. CanCollide = false,
  1004. Locked = true,
  1005. BrickColor = BrickColor.new(tostring(BColor)),
  1006. Name = Name,
  1007. Size = Size,
  1008. Material = Material,
  1009. }
  1010. RemoveOutlines(Part)
  1011. return Part
  1012. end;
  1013. };
  1014.  
  1015. ["Mesh"] = {
  1016. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  1017. local Msh = Create(Mesh){
  1018. Parent = Part,
  1019. Offset = OffSet,
  1020. Scale = Scale,
  1021. }
  1022. if Mesh == "SpecialMesh" then
  1023. Msh.MeshType = MeshType
  1024. Msh.MeshId = MeshId
  1025. end
  1026. return Msh
  1027. end;
  1028. };
  1029.  
  1030. ["Mesh"] = {
  1031. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  1032. local Msh = Create(Mesh){
  1033. Parent = Part,
  1034. Offset = OffSet,
  1035. Scale = Scale,
  1036. }
  1037. if Mesh == "SpecialMesh" then
  1038. Msh.MeshType = MeshType
  1039. Msh.MeshId = MeshId
  1040. end
  1041. return Msh
  1042. end;
  1043. };
  1044.  
  1045. ["Weld"] = {
  1046. Create = function(Parent, Part0, Part1, C0, C1)
  1047. local Weld = Create("Weld"){
  1048. Parent = Parent,
  1049. Part0 = Part0,
  1050. Part1 = Part1,
  1051. C0 = C0,
  1052. C1 = C1,
  1053. }
  1054. return Weld
  1055. end;
  1056. };
  1057.  
  1058. ["Sound"] = {
  1059. Create = function(id, par, vol, pit)
  1060. coroutine.resume(coroutine.create(function()
  1061. local S = Create("Sound"){
  1062. Volume = vol,
  1063. Pitch = pit or 1,
  1064. SoundId = id,
  1065. Parent = par or workspace,
  1066. }
  1067. wait()
  1068. S:play()
  1069. game:GetService("Debris"):AddItem(S, 6)
  1070. end))
  1071. end;
  1072. };
  1073.  
  1074. ["ParticleEmitter"] = {
  1075. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  1076. local fp = Create("ParticleEmitter"){
  1077. Parent = Parent,
  1078. Color = ColorSequence.new(Color1, Color2),
  1079. LightEmission = LightEmission,
  1080. Size = Size,
  1081. Texture = Texture,
  1082. Transparency = Transparency,
  1083. ZOffset = ZOffset,
  1084. Acceleration = Accel,
  1085. Drag = Drag,
  1086. LockedToPart = LockedToPart,
  1087. VelocityInheritance = VelocityInheritance,
  1088. EmissionDirection = EmissionDirection,
  1089. Enabled = Enabled,
  1090. Lifetime = LifeTime,
  1091. Rate = Rate,
  1092. Rotation = Rotation,
  1093. RotSpeed = RotSpeed,
  1094. Speed = Speed,
  1095. VelocitySpread = VelocitySpread,
  1096. }
  1097. return fp
  1098. end;
  1099. };
  1100. }
  1101.  
  1102. function rayCast(Position, Direction, Range, Ignore)
  1103. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  1104. end
  1105.  
  1106. local function GetNearest(obj, distance)
  1107. local last, lastx = distance + 1
  1108. for i, v in pairs(workspace:GetChildren()) do
  1109. if v:IsA'Model' and v ~= Character and v:findFirstChild('Humanoid') and v:findFirstChild('Torso') and v:findFirstChild('Humanoid').Health > 0 then
  1110. local t = v.Torso
  1111. local dist = (t.Position - obj.Position).magnitude
  1112. if dist <= distance then
  1113. if dist < last then
  1114. last = dist
  1115. lastx = v
  1116. end
  1117. end
  1118. end
  1119. end
  1120. return lastx
  1121. end
  1122.  
  1123. function CreatePart(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  1124. local Part = Create("Part"){
  1125. Parent = Parent,
  1126. Reflectance = Reflectance,
  1127. Transparency = Transparency,
  1128. CanCollide = false,
  1129. Locked = true,
  1130. BrickColor = BrickColor.new(tostring(BColor)),
  1131. Name = Name,
  1132. Size = Size,
  1133. Material = Material,
  1134. }
  1135. RemoveOutlines(Part)
  1136. return Part
  1137. end
  1138.  
  1139. function CreateMesh(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  1140. local Msh = Create(Mesh){
  1141. Parent = Part,
  1142. Offset = OffSet,
  1143. Scale = Scale,
  1144. }
  1145. if Mesh == "SpecialMesh" then
  1146. Msh.MeshType = MeshType
  1147. Msh.MeshId = MeshId
  1148. end
  1149. return Msh
  1150. end
  1151.  
  1152. function CreateWeld(Parent, Part0, Part1, C0, C1)
  1153. local Weld = Create("Weld"){
  1154. Parent = Parent,
  1155. Part0 = Part0,
  1156. Part1 = Part1,
  1157. C0 = C0,
  1158. C1 = C1,
  1159. }
  1160. return Weld
  1161. end
  1162.  
  1163. Damagefunc = function(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  1164. if hit.Parent == nil then
  1165. return
  1166. end
  1167. local h = hit.Parent:FindFirstChild("Humanoid")
  1168. for _, v in pairs(hit.Parent:children()) do
  1169. if v:IsA("Humanoid") then
  1170. h = v
  1171. end
  1172. end
  1173. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  1174. if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  1175. if hit.Parent.DebounceHit.Value == true then
  1176. return
  1177. end
  1178. end
  1179. local c = Create("ObjectValue"){
  1180. Name = "creator",
  1181. Value = game:service("Players").LocalPlayer,
  1182. Parent = h,
  1183. }
  1184. game:GetService("Debris"):AddItem(c, .5)
  1185. if HitSound ~= nil and HitPitch ~= nil then
  1186. CFuncs["Sound"].Create(HitSound, hit, 1, HitPitch)
  1187. end
  1188. local Damage = math.random(minim, maxim)
  1189. local blocked = false
  1190. local block = hit.Parent:findFirstChild("Block")
  1191. if block ~= nil then
  1192. if block.className == "IntValue" then
  1193. if block.Value > 0 then
  1194. blocked = true
  1195. block.Value = block.Value - 1
  1196. print(block.Value)
  1197. end
  1198. end
  1199. end
  1200. if blocked == false then
  1201. HitHealth=h.Health
  1202. h.Health = h.Health - Damage
  1203. if HitHealth~=h.Health and HitHealth~=0 and h.Health<=0 and h.Parent.Name~="Lost Soul" then
  1204. print("gained spree")
  1205. game.Players.LocalPlayer:FindFirstChild("leaderstats").Spree.Value=game.Players.LocalPlayer.leaderstats.Spree.Value+1
  1206. end
  1207. if HitHealth~=h.Health and HitHealth~=0 and h.Health<=0 then
  1208. print("gained kill")
  1209. Player.PlayerGui.Kills.Value=Player.PlayerGui.Kills.Value+1
  1210. end
  1211. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, Part.BrickColor.Color)
  1212. else
  1213. h.Health = h.Health - (Damage / 2)
  1214. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, Part.BrickColor.Color)
  1215. end
  1216. if Type == "Knockdown" then
  1217. local hum = hit.Parent.Humanoid
  1218. hum.PlatformStand = true
  1219. coroutine.resume(coroutine.create(function(HHumanoid)
  1220. swait(1)
  1221. HHumanoid.PlatformStand = false
  1222. end), hum)
  1223. local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  1224. local bodvol = Create("BodyVelocity"){
  1225. velocity = angle * knockback,
  1226. P = 5000,
  1227. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  1228. Parent = hit,
  1229. }
  1230. local rl = Create("BodyAngularVelocity"){
  1231. P = 3000,
  1232. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  1233. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  1234. Parent = hit,
  1235. }
  1236. game:GetService("Debris"):AddItem(bodvol, .5)
  1237. game:GetService("Debris"):AddItem(rl, .5)
  1238. elseif Type == "Normal" then
  1239. local vp = Create("BodyVelocity"){
  1240. P = 500,
  1241. maxForce = Vector3.new(math.huge, 0, math.huge),
  1242. velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  1243. }
  1244. if knockback > 0 then
  1245. vp.Parent = hit.Parent.Torso
  1246. end
  1247. game:GetService("Debris"):AddItem(vp, .5)
  1248. elseif Type == "Up" then
  1249. local bodyVelocity = Create("BodyVelocity"){
  1250. velocity = Vector3.new(0, 20, 0),
  1251. P = 5000,
  1252. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  1253. Parent = hit,
  1254. }
  1255. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  1256. elseif Type == "DarkUp" then
  1257. coroutine.resume(coroutine.create(function()
  1258. for i = 0,1,0.1 do
  1259. swait()
  1260. Effects["Block"].Create(BrickColor.new("Black"), hit.Parent.Torso.CFrame,5, 5, 5, 1, 1, 1, .08,1)
  1261. end
  1262. end))
  1263. local bodyVelocity = Create("BodyVelocity"){
  1264. velocity = Vector3.new(0, 20, 0),
  1265. P = 5000,
  1266. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  1267. Parent = hit,
  1268. }
  1269. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  1270. elseif Type == "Snare" then
  1271. local bp = Create("BodyPosition"){
  1272. P = 2000,
  1273. D = 100,
  1274. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  1275. position = hit.Parent.Torso.Position,
  1276. Parent = hit.Parent.Torso,
  1277. }
  1278. game:GetService("Debris"):AddItem(bp, .5)
  1279. elseif Type == "Freeze" then
  1280. local BodPos = Create("BodyPosition"){
  1281. P = 50000,
  1282. D = 1000,
  1283. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  1284. position = hit.Parent.Torso.Position,
  1285. Parent = hit.Parent.Torso,
  1286. }
  1287. local BodGy = Create("BodyGyro") {
  1288. maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  1289. P = 20e+003,
  1290. Parent = hit.Parent.Torso,
  1291. cframe = hit.Parent.Torso.CFrame,
  1292. }
  1293. hit.Parent.Torso.Anchored = true
  1294. coroutine.resume(coroutine.create(function(Part)
  1295. swait(1.5)
  1296. Part.Anchored = false
  1297. end), hit.Parent.Torso)
  1298. game:GetService("Debris"):AddItem(BodPos, 3)
  1299. game:GetService("Debris"):AddItem(BodGy, 3)
  1300. end
  1301. local debounce = Create("BoolValue"){
  1302. Name = "DebounceHit",
  1303. Parent = hit.Parent,
  1304. Value = true,
  1305. }
  1306. game:GetService("Debris"):AddItem(debounce, Delay)
  1307. c = Instance.new("ObjectValue")
  1308. c.Name = "creator"
  1309. c.Value = Player
  1310. c.Parent = h
  1311. game:GetService("Debris"):AddItem(c, .5)
  1312. end
  1313. end
  1314.  
  1315. function ShowDamage(Pos, Text, Time, Color)
  1316. local Rate = (1 / 30)
  1317. local Pos = (Pos or Vector3.new(0, 0, 0))
  1318. local Text = (Text or "")
  1319. local Time = (Time or 2)
  1320. local Color = (Color or Color3.new(1, 0, 1))
  1321. local EffectPart = CreatePart(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  1322. EffectPart.Anchored = true
  1323. local BillboardGui = Create("BillboardGui"){
  1324. Size = UDim2.new(3, 0, 3, 0),
  1325. Adornee = EffectPart,
  1326. Parent = EffectPart,
  1327. }
  1328. local TextLabel = Create("TextLabel"){
  1329. BackgroundTransparency = 1,
  1330. Size = UDim2.new(1, 0, 1, 0),
  1331. Text = Text,
  1332. TextColor3 = Color,
  1333. TextScaled = true,
  1334. Font = Enum.Font.ArialBold,
  1335. Parent = BillboardGui,
  1336. }
  1337. game.Debris:AddItem(EffectPart, (Time + 0.1))
  1338. EffectPart.Parent = game:GetService("Workspace")
  1339. delay(0, function()
  1340. local Frames = (Time / Rate)
  1341. for Frame = 1, Frames do
  1342. wait(Rate)
  1343. local Percent = (Frame / Frames)
  1344. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  1345. TextLabel.TextTransparency = Percent
  1346. end
  1347. if EffectPart and EffectPart.Parent then
  1348. EffectPart:Destroy()
  1349. end
  1350. end)
  1351. end
  1352. function MagniDamage(Part,magni,mindam,maxdam,knock,Type)
  1353. for _,c in pairs(workspace:children()) do
  1354. local hum=c:findFirstChild("Humanoid")
  1355. if hum~=nil then
  1356. local head=c:findFirstChild("Torso")
  1357. if head~=nil then
  1358. local targ=head.Position-Part.Position
  1359. local mag=targ.magnitude
  1360. if mag<=magni and c.Name~=Player.Name then
  1361. --Damagefunc(head,mindam,maxdam,knock,Type,RootPart,.2,1,nil,1)
  1362. Damagefunc(head, head, mindam,maxdam, knock, Type, RootPart, .1, "http://www.roblox.com/asset/?id=231917784", 1)
  1363. end
  1364. end
  1365. end
  1366. end
  1367. end
  1368.  
  1369. Handle = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "Handle", Vector3.new(1.36714935, 0.263538003, 0.263538003))
  1370. HandleWeld = CFuncs["Weld"].Create(m, Character["Right Arm"], Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0294647217, 0.97978127, -0.094669342, 4.5999881e-005, -4.80242517e-037, 1.00000143, -1.41081474e-037, 1, -4.8023606e-037, -1.00000143, 1.41059412e-037, 4.5999881e-005))
  1371. FakeHandle = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "FakeHandle", Vector3.new(1.36714935, 0.263538003, 0.263538003))
  1372. FakeHandleWeld = CFuncs["Weld"].Create(m, Handle, FakeHandle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1373. Hitbox = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "Hitbox", Vector3.new(7.66714954, 1.86353815, 0.263538003))
  1374. HitboxWeld = CFuncs["Weld"].Create(m, FakeHandle, Hitbox, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(5.35001373, 0.400000095, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1375. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(5.6660676, 1.44945908, 0.263538003))
  1376. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(6.12738991, 0.39531827, -1.14440918e-005, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1377. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.329422474, 1.12003672, 0.263538003))
  1378. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.12957764, 0.230602384, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1379. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 1.31769013, 0.263538003))
  1380. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(9.02638245, 0.461198688, -1.14440918e-005, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1381. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.5, 1, 1))
  1382. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.461191565, 0.276714861, 0.790614069))
  1383. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329421759, 7.62939453e-006, 2.76721382, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  1384. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1385. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1386. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.19765377, 7.62939453e-006, 8.96049309, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  1387. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1388. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.263538003, 0.276714861, 0.263538003))
  1389. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.125192642, 0, 8.22916794, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  1390. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.5, 1, 1))
  1391. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.592960596, 0.289891779, 0.790614069))
  1392. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329464674, 1.14440918e-005, 1.97657776, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  1393. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1394. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.527076125, 0.263538003, 0.276714891))
  1395. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.78632832, -1.66320992, 0, 0.707108378, 0.707107365, 0, -0.707109392, 0.707106352, 0, 0, 2.82119003e-037, 1.00000286))
  1396. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1397. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.527076125, 0.263538003, 0.276714891))
  1398. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.36703014, -1.98932648, 0, 0.707108378, 0.707107365, 0, -0.707109392, 0.707106352, 0, 0, 2.82119003e-037, 1.00000286))
  1399. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1400. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.527076125, 0.263538003, 0.276714891))
  1401. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-5.09098244, -4.62908363, -3.81469727e-006, -0.76604712, 0.64278698, 3.63797881e-012, -0.642788768, -0.766044974, 0, 0, 2.82119003e-037, 1.00000286))
  1402. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1403. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 0.658845067, 0.263538003))
  1404. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.48243904, -2.38418579e-007, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1405. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.75, 1, 1))
  1406. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.329422474, 0.395307034, 0.263538003))
  1407. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.80016327, 0.592968822, -1.90734863e-005, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1408. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.461191565, 0.263538003, 0.276714891))
  1409. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.20717812, 0.329430103, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1410. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1411. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(2.76714945, 0.263538003, 0.263538003))
  1412. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1413. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.99999994, 1))
  1414. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1415. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.97657776, 0.527086377, -1.14440918e-005, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1416. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 0.5, 1))
  1417. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1418. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.71302414, 1.66893005e-006, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1419. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.5, 0.99999994, 1))
  1420. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.329422534, 0.28989175, 0.790614069))
  1421. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329421759, 7.62939453e-006, 2.76721382, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  1422. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1423. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.461191565, 0.263538003, 0.276714891))
  1424. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.14772892, -1.46753502, -3.81469727e-006, 0.707108378, 0.707107365, 0, -0.707109392, 0.707106352, 0, 0, 2.82119003e-037, 1.00000286))
  1425. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1426. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(3.49187875, 0.263538003, 0.276714891))
  1427. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(4.96780777, 0.434847832, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1428. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1429. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.724729538, 0.276714921, 0.790614069))
  1430. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329464674, 1.14440918e-005, 1.97657776, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  1431. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1432. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.329422474, 0.263538003, 0.263538003))
  1433. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.59078979, -0.39531374, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1434. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1435. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.263538003, 0.276714861, 0.263538003))
  1436. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.961934566, 0, 8.88802528, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  1437. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.5, 1, 1))
  1438. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.263538003, 0.527076006, 0.263538003))
  1439. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.51537514, 1.66893005e-006, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1440. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.658845067, 0.263538003, 0.276714891))
  1441. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.30600929, 0, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1442. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1443. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(1.18592119, 0.263538003, 0.276714891))
  1444. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(7.63618279, 0.125184894, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1445. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1446. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(5.60018301, 0.263538003, 0.276714891))
  1447. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(6.08786964, 0.961935163, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1448. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1449. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.38357449, 0.92238313, 0.263538003))
  1450. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.27306747, 0, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1451. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.329422534, 0.263538003, 0.276714891))
  1452. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.83968925, 0.625917673, 0, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1453. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 1))
  1454. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.461191565, 0.303068697, 0.790614069))
  1455. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329464674, 1.14440918e-005, 1.97657776, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  1456. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1457. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.263538003, 0.303068638, 0.790614069))
  1458. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0329421759, 7.62939453e-006, 2.76721382, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286, 1.00000286, -9.60485751e-037, 0))
  1459. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.750000179, 1, 1))
  1460. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.263538003, 0.270126462, 0.276714891))
  1461. PartWeld = CFuncs["Weld"].Create(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.97657776, -0.332717896, -3.81469727e-006, 1.00000286, -9.60485751e-037, 0, -9.60485751e-037, 1, 2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1462. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.5, 1, 1))
  1463. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.329422534))
  1464. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.81469727e-006, -0.23060596, -1.21888924, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  1465. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.75, 1))
  1466. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1467. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.81469727e-006, -0.197662115, -1.28477287, 0, 2.82119003e-037, 1.00000286, 9.60485751e-037, -1, -2.82119003e-037, 1.00000286, -9.60485751e-037, 0))
  1468. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.75))
  1469. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1470. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.81469727e-006, -0.329232514, 3.09705734, 0, -2.82119003e-037, -1.00000286, -9.60485751e-037, 1, 2.82119003e-037, 1.00000286, -9.60485751e-037, 0))
  1471. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1472. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.329422534, 0.329422534))
  1473. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.14440918e-005, -0.625917435, -2.47072029, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  1474. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1475. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1476. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.395317435, -1.51536751, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  1477. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  1478. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1479. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.81469727e-006, -0.395313978, -3.36016655, 0, 2.82119003e-037, 1.00000286, -9.60485751e-037, 1, 2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  1480. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  1481. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1482. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.527090073, 2.17423058, 0, 2.82119003e-037, 1.00000286, 9.60485751e-037, -1, -2.82119003e-037, 1.00000286, -9.60485751e-037, 0))
  1483. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  1484. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1485. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.39531517, -1.51536751, 0, 2.82119003e-037, 1.00000286, -9.60485751e-037, 1, 2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  1486. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  1487. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1488. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.39531374, 3.82136917, 0, -2.82119003e-037, -1.00000286, -9.60485751e-037, 1, 2.82119003e-037, 1.00000286, -9.60485751e-037, 0))
  1489. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  1490. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.395307034))
  1491. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.230600834, -1.18594742, 0, 2.82119003e-037, 1.00000286, -9.60485751e-037, 1, 2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  1492. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.75, 1))
  1493. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.329422534, 0.329422534))
  1494. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.14440918e-005, -0.955346584, -3.1295681, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  1495. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1496. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1497. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.197657108, 1.71302414, 0, 2.82119003e-037, 1.00000286, -9.60485751e-037, 1, 2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  1498. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  1499. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(5.7978363, 0.263538003, 0.263538003))
  1500. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(6.19326591, -1.18594694, 0.0658912659, 1.00000286, -9.60485751e-037, 0, 9.60485751e-037, -1, -2.82119003e-037, 0, -2.82119003e-037, -1.00000286))
  1501. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  1502. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1503. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.527089953, -1.77890587, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  1504. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  1505. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1506. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.81469727e-006, -0.197656155, -1.28477287, 0, -2.82119003e-037, -1.00000286, -9.60485751e-037, 1, 2.82119003e-037, 1.00000286, -9.60485751e-037, 0))
  1507. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.75))
  1508. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(5.7978363, 0.263538003, 0.263538003))
  1509. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-6.19326591, -1.18594694, 0.0658683777, -1.00000286, 9.60485751e-037, 0, 9.60485751e-037, -1, -2.82119003e-037, 0, 2.82119003e-037, 1.00000286))
  1510. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  1511. Wedge = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Wedge", Vector3.new(0.263538003, 0.263538003, 0.263538003))
  1512. WedgeWeld = CFuncs["Weld"].Create(m, FakeHandle, Wedge, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.197661161, 1.71302414, 0, -2.82119003e-037, -1.00000286, 9.60485751e-037, -1, -2.82119003e-037, -1.00000286, 9.60485751e-037, 0))
  1513. CFuncs["Mesh"].Create("SpecialMesh", Wedge, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.5, 0.5))
  1514. Handle2 = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "Handle2", Vector3.new(0.720000029, 1.70000005, 0.819999933))
  1515. Handle2Weld = CFuncs["Weld"].Create(m, Character["Left Arm"], Handle2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0583267212, 0.139075637, 0.00297355652, -1.00000143, -1.42115052e-014, 4.5999881e-005, -1.42115256e-014, 1, 6.53727559e-019, -4.5999881e-005, -6.60756211e-027, -1.00000143))
  1516. Hitbox2 = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "Hitbox2", Vector3.new(2.01999998, 1.60000002, 1.01999998))
  1517. Hitbox2Weld = CFuncs["Weld"].Create(m, Handle2, Hitbox2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0500106812, 1.54999971, 0, 1.00000286, 4.0687654e-020, 0, 4.0687654e-020, 1, 0, 0, 0, 1.00000286))
  1518. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.410000026, 1.03999996, 0.619999945))
  1519. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0349884033, -5.7220459e-006, -0.549886703, -1.00000286, -1.42119796e-014, 0, 0, 0, -1.00000286, 1.42119389e-014, -1, 2.75312456e-027))
  1520. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1521. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1522. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.459991455, 0.640050173, 0.409990311, 1.00000274, 2.47339904e-006, 1.1920929e-007, 2.47340586e-006, -1, 2.47366074e-006, 1.19212928e-007, -2.47365347e-006, -1.00000274))
  1523. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1524. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.420000017, 0.400000006, 1.01999998))
  1525. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0500106812, 0.459950924, 5.7220459e-006, 1.00000286, -5.95446262e-012, 0, 5.95447953e-012, 1, 9.57245949e-011, 0, -9.57243174e-011, 1.00000286))
  1526. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.51000005, 0.210000008, 0.620000005))
  1527. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0143013, -0.775032043, 0.0502700806, 0, 1.9304025e-010, -1.00000286, 1.00000286, 6.11083927e-012, 0, 6.11085661e-012, -1, -1.93040806e-010))
  1528. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1529. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.410000026, 1.03999996, 0.619999945))
  1530. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0349960327, 1.90734863e-006, 0.649905205, -1.00000286, 1.76152777e-019, 0, 0, 0, -1.00000286, -2.57528079e-019, -1, 0))
  1531. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1532. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(1.44000006, 0.200000003, 1.03999996))
  1533. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.150009155, -0.0500330925, 1.52587891e-005, 1.00000286, 1.42115459e-014, 0, -1.42115052e-014, 1, -9.24554534e-027, 0, 0, 1.00000286))
  1534. CFuncs["Mesh"].Create("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.700000048, 1))
  1535. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.210000008, 1.01999986))
  1536. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0200099945, -0.765022278, 0.0502142832, 0, 4.93400876e-011, -1.00000274, 1.00000286, 1.07147459e-011, 0, 1.0714778e-011, -0.99999994, -4.93402263e-011))
  1537. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.610000014, 0.210000008, 0.620000005))
  1538. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.064994812, -0.964654922, 7.62939453e-006, -1.00000286, -1.35831423e-014, 1.41881173e-010, 1.35831e-014, -1, -2.95586645e-012, 1.41881173e-010, -2.95585778e-012, 1.00000286))
  1539. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1540. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  1541. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.37358284, -1.00020599, 1.94278145, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.965929449, -0.258814007, 1.8189894e-011, 0.258817196, 0.965917528, -5.45696821e-012))
  1542. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1543. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1544. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.459983826, 0.559990406, 0.410009384, 1.00000286, 2.05626884e-006, -2.68220901e-007, -2.05627407e-006, 1, 2.84441876e-006, 2.68228177e-007, -2.84441012e-006, 1.00000286))
  1545. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1546. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.820000052, 0.200000003, 1.01999998))
  1547. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.149993896, -0.0500001907, -1.90734863e-006, 1.00000286, 4.0687654e-020, 0, 4.0687654e-020, 1, 0, 0, 0, 1.00000286))
  1548. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.420000046, 0.600000024, 1.01999998))
  1549. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0500106812, -0.649828911, 1.90734863e-006, 1.00000286, 2.98430876e-012, 0, -2.98431744e-012, 1, -4.77486106e-011, 0, 4.77484718e-011, 1.00000286))
  1550. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.800000012))
  1551. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00569725037, -1.20020294, 1.34281445, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.96593082, -0.258814365, 1.45519152e-011, 0.258817643, 0.965919018, -5.45696821e-012))
  1552. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1553. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.410000026, 1.40999985, 1.01999998))
  1554. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.655006409, -0.045165062, 7.62939453e-006, 1.00000286, 5.97578063e-012, 0, -5.97579755e-012, 1, -9.50424739e-011, 0, 9.50421963e-011, 1.00000286))
  1555. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.830000043, 0.200000003, 1.03999996))
  1556. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.455024719, -0.650080562, 9.53674316e-006, 1.00000286, 2.99883555e-012, 0, -2.99884379e-012, 0.99999994, 4.91128527e-011, 0, -4.91127139e-011, 1.00000274))
  1557. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.00999999, 0.400000036, 1.01999998))
  1558. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0549850464, 0.859841824, 9.53674316e-006, 1.00000286, 2.72848476e-012, 0, -2.72849256e-012, 1, -4.75212369e-011, 0, 4.75210982e-011, 1.00000286))
  1559. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.209999964, 0.200000003, 0.200000003))
  1560. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.404998779, -0.95982039, 0.659996033, 1.49011612e-007, -2.60678007e-006, 1.00000286, 3.38301476e-007, -1, -2.60678735e-006, 1.00000286, 3.38300907e-007, -1.49011612e-007))
  1561. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1562. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.400000036, 0.409999967))
  1563. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(8.58306885e-005, -0.861808717, 0.665008545, 1.13504939e-009, 2.44412922e-006, -1.00000286, 1.57146104e-007, -1, -2.44413604e-006, -1.00000286, -1.57145649e-007, -1.13504939e-009))
  1564. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1565. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.51000005, 0.210000008, 0.620000005))
  1566. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0122337341, 0.474967957, 0.0501980782, 0, 9.77706804e-011, -1.00000286, 1.00000286, 9.0810701e-012, 0, 9.08109612e-012, -1, -9.7770958e-011))
  1567. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1568. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 1.4000001, 0.620000005))
  1569. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.459991455, -0.0400872231, 3.81469727e-006, 1.00000286, -5.23478448e-011, 0, 5.23480009e-011, 1, -1.78261461e-010, 0, 1.78260962e-010, 1.00000286))
  1570. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.610000014, 0.210000008, 0.620000005))
  1571. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0150127411, -0.765022278, 0.050093174, 0, 0, -1.00000286, 1.00000286, 1.42115459e-014, 0, 1.42115052e-014, -1, 9.24554534e-027))
  1572. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1573. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.830000043, 0.200000003, 1.03999996))
  1574. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.455024719, 0.549902916, 1.33514404e-005, 1.00000286, 8.69701706e-012, 0, -8.69704135e-012, 1, -9.48151002e-011, 0, 9.48148227e-011, 1.00000286))
  1575. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  1576. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.36998558, -1.00019455, 1.94278049, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.965929091, -0.258813918, 1.45519152e-011, 0.258817106, 0.96591717, -5.45696821e-012))
  1577. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1578. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.400000036, 0.410000026))
  1579. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.90734863e-005, 0.45963192, 0.354988098, 0, -4.75210982e-011, -1.00000286, -2.72849408e-012, 1, -4.75212369e-011, 1.00000286, 2.72848627e-012, 0))
  1580. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1581. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1582. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.459983826, 0.560108662, 0.409986496, -1.00000286, -2.51817255e-006, 1.1920929e-007, -2.5181796e-006, 1, 2.4732567e-006, -1.19216566e-007, 2.47324942e-006, -1.00000286))
  1583. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1584. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.210000008, 2.00999999, 1.01999998))
  1585. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.355003357, 0.0546789169, 1.33514404e-005, 1.00000286, 1.42115459e-014, 0, -1.42115052e-014, 1, -9.24554534e-027, 0, 0, 1.00000286))
  1586. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.400000036, 0.409999967))
  1587. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.90734863e-006, -0.938343048, 0.664993286, 1.1920929e-007, 9.32232069e-011, 1.00000286, -5.84789508e-012, 1, -9.32234706e-011, -1.00000286, -5.84786733e-012, 1.1920929e-007))
  1588. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1589. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.419999957, 0.200000003, 1.01999998))
  1590. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.349998474, -0.840093613, 3.81469727e-006, 1.00000286, -5.23478448e-011, 0, 5.23480009e-011, 1, -1.78261461e-010, 0, 1.78260962e-010, 1.00000286))
  1591. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.00999999, 0.200000003, 1.01999998))
  1592. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0449905396, -1.04016685, 1.90734863e-006, 1.00000286, 2.9842526e-012, 0, -2.98426128e-012, 1, -4.77486106e-011, 0, 4.77484718e-011, 1.00000286))
  1593. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.400000036, 0.410000026))
  1594. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(5.7220459e-006, 0.54027319, 0.354988098, 0, 2.4735923e-006, 1.00000286, 2.98430725e-012, -1, 2.47359958e-006, 1.00000286, 2.98430898e-012, 0))
  1595. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1596. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.610000014, 0.210000008, 0.620000005))
  1597. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0150108337, 0.464981079, 0.0500302315, 0, -1.43472789e-010, -1.00000286, 1.00000286, 2.98444104e-012, 0, 2.98444971e-012, -1, 1.43473206e-010))
  1598. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1599. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1600. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.36998558, -1.20021057, -0.84282589, -5.96046448e-007, -1.19208153e-007, -1.00000286, 0.965929508, -0.258814275, -5.4488919e-007, -0.258817494, -0.965917587, 2.69415068e-007))
  1601. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1602. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(1, 0.200000003, 0.200000003))
  1603. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.24280548, 0.00502967834, 1.00020599, 0.258817405, 0.96591711, 2.00088834e-011, 8.73114914e-011, -2.04636308e-012, -1.00000286, -0.965929031, 0.258814216, -8.36735126e-011))
  1604. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 0.410000026))
  1605. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(5.7220459e-006, 0.250274181, -0.0450134277, 0, 2.4735923e-006, 1.00000286, 2.98430725e-012, -1, 2.47359958e-006, 1.00000286, 2.98430898e-012, 0))
  1606. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1607. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(1, 0.200000003, 0.200000003))
  1608. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.24280453, 0.372152328, 1.00020981, 0.258817405, 0.96591711, 2.00088834e-011, 8.73114914e-011, -2.04636308e-012, -1.00000286, -0.965929031, 0.258814216, -8.36735126e-011))
  1609. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1610. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.400074005, -1.22174454, -0.857766151, 4.76837158e-007, -1.1920838e-007, 1.00000286, -0.965929031, -0.258814245, 4.29739885e-007, 0.258817434, -0.96591711, -2.38562279e-007))
  1611. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1612. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  1613. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0053653717, -1.00020218, 1.94278049, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.965929329, -0.258813977, 1.45519152e-011, 0.258817166, 0.965917408, -5.45696821e-012))
  1614. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1615. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1616. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.45998764, 0.639939547, 0.410007477, -1.00000274, -2.05972356e-006, -2.68220901e-007, 2.05972879e-006, -1, 2.84469252e-006, -2.68228177e-007, 2.8446841e-006, 1.00000274))
  1617. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1618. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.800000012))
  1619. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.36998558, -1.20021057, 1.34280586, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.965929687, -0.258814067, 1.8189894e-011, 0.258817255, 0.965917766, -5.45696821e-012))
  1620. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1621. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.310000032, 1.06000006, 0.319999963))
  1622. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0369796753, 1.71661377e-005, 0.645148039, -1.00000286, -1.42865727e-014, 0, 0, 4.84305929e-011, -1.00000286, 1.4286532e-014, -1, -4.84307316e-011))
  1623. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1624. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 1.07999992, 0.619999945))
  1625. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0400009155, 3.81469727e-006, -0.550094128, -1.00000286, 1.76152777e-019, 0, 0, 0, -1.00000286, -2.57528079e-019, -1, 0))
  1626. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1627. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 1.07999992, 0.619999945))
  1628. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0400009155, 3.81469727e-006, 0.649905205, -1.00000286, 1.76152777e-019, 0, 0, 0, -1.00000286, -2.57528079e-019, -1, 0))
  1629. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1630. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.409999996, 0.210000008, 0.620000005))
  1631. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0150146484, -0.775886536, 0.050093174, 0, 0, -1.00000286, 1.00000286, 1.42115459e-014, 0, 1.42115052e-014, -1, 9.24554534e-027))
  1632. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1633. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1634. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.22001648, 0.372150421, -0.185092926, -0.707113385, 0.707101226, 2.18278728e-011, 4.72937245e-011, 7.48058351e-011, -1.00000143, -0.707102299, -0.707112372, -9.09494702e-011))
  1635. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1636. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.659992218, 0.370054245, -0.921754837, -1.00000286, 5.14851529e-011, 0, 0, 9.5951691e-011, -1.00000286, -5.14852987e-011, -1, -9.59519686e-011))
  1637. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1638. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.210000008, 0.200000003, 0.200000003))
  1639. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.405000687, 0.759868801, 0.659988403, 1.47521496e-006, 5.17919261e-006, -1.00000286, -3.2469668e-006, 1, 5.17920262e-006, 1.00000286, 3.24694997e-006, 1.47523315e-006))
  1640. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1641. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.610000014, 0.210000008, 0.620000005))
  1642. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.064994812, -0.965881824, 7.62939453e-006, -1.00000286, -1.35831423e-014, 1.41881173e-010, 1.35831e-014, -1, -2.95586645e-012, 1.41881173e-010, -2.95585778e-012, 1.00000286))
  1643. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.899999976, 1, 1))
  1644. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(1, 0.200000003, 0.200000003))
  1645. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.25774574, -0.403015137, 1.02173233, -0.258817345, 0.96591711, -3.72519935e-008, -5.99829946e-008, 2.24945325e-008, 1.00000286, 0.965928972, 0.258814156, 5.21213224e-008))
  1646. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1647. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.659988403, 5.14984131e-005, -0.921754837, -1.00000286, 5.14851529e-011, 0, 0, 9.5951691e-011, -1.00000286, -5.14852987e-011, -1, -9.59519686e-011))
  1648. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1649. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.800000012))
  1650. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.400075912, -1.22171783, 1.35775185, 5.96046448e-008, 7.73070497e-012, -1.00000286, -0.965929091, -0.258814007, -5.75746526e-008, -0.258817196, 0.96591717, -1.54186637e-008))
  1651. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1652. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 0.410000026))
  1653. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-5.7220459e-006, 0.159724727, -0.0450134277, 0, -2.47359276e-006, -1.00000286, -2.51888788e-013, 1, -2.47360003e-006, 1.00000286, 2.51893179e-013, 0))
  1654. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1655. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  1656. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.401578903, -1.02172089, 1.95771885, 5.96046448e-008, 7.73070497e-012, -1.00000286, -0.965929091, -0.258813977, -5.75746526e-008, -0.258817166, 0.96591717, -1.54186637e-008))
  1657. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1658. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1659. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.375089645, -1.20021057, -0.842826843, -5.96046448e-007, -1.1920838e-007, -1.00000286, 0.965929925, -0.258814394, -5.44885552e-007, -0.258817613, -0.965918005, 2.69415068e-007))
  1660. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1661. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1662. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.24612808, -0.403017044, -0.187274933, 0.707113266, 0.707101345, -2.97986844e-008, -4.73555701e-008, 8.95023362e-008, 1.00000143, 0.707102358, -0.707112253, 9.67738742e-008))
  1663. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(1, 0.200000003, 0.209999964))
  1664. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(4.38690186e-005, -0.891833842, 0.644989014, 1.13504939e-009, 2.44355533e-006, -1.00000286, 1.57128099e-007, -1, -2.44356215e-006, -1.00000286, -1.57127644e-007, -1.13504939e-009))
  1665. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.939999998, 1, 1))
  1666. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1667. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.22001648, 0.005027771, -0.185092926, -0.707113385, 0.707101226, 2.18278728e-011, 4.72937245e-011, 7.48058351e-011, -1.00000143, -0.707102299, -0.707112372, -9.09494702e-011))
  1668. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1669. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00569725037, -1.20020676, -0.842824936, -5.96046448e-007, -1.1920838e-007, -1.00000286, 0.965929627, -0.258814305, -5.4488919e-007, -0.258817524, -0.965917706, 2.69415068e-007))
  1670. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1671. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.800000012))
  1672. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.375091553, -1.20021439, 1.34281826, -1.09139364e-011, 7.73070497e-012, 1.00000286, 0.965931058, -0.258814484, 1.45519152e-011, 0.258817732, 0.965919256, -5.45696821e-012))
  1673. CFuncs["Mesh"].Create("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1674. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(1, 0.200000003, 0.200000003))
  1675. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.24280453, -0.369983673, 1.00020599, 0.258817405, 0.96591711, 2.00088834e-011, 8.73114914e-011, -2.04636308e-012, -1.00000286, -0.965929031, 0.258814216, -8.36735126e-011))
  1676. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.409999996, 0.210000008, 0.620000005))
  1677. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0150108337, 0.477142334, 0.0500302315, 0, -1.43472789e-010, -1.00000286, 1.00000286, 2.98444104e-012, 0, 2.98444971e-012, -1, 1.43473206e-010))
  1678. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1679. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1680. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.22001648, -0.36998558, -0.185092926, -0.707113385, 0.707101226, 2.18278728e-011, 4.72937245e-011, 7.48058351e-011, -1.00000143, -0.707102299, -0.707112372, -9.09494702e-011))
  1681. Part = CFuncs["Part"].Create(m, Enum.Material.Neon, 0, 0.10000000149012, "Mulberry", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1682. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.659992218, -0.36998558, -0.921754837, -1.00000286, 5.14851529e-011, 0, 0, 9.5951691e-011, -1.00000286, -5.14852987e-011, -1, -9.59519686e-011))
  1683. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1684. Part = CFuncs["Part"].Create(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.310000032, 1.06000006, 0.319999963))
  1685. PartWeld = CFuncs["Weld"].Create(m, Handle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0369796753, 1.71661377e-005, -0.554851294, -1.00000286, -1.42865727e-014, 0, 0, 4.84305929e-011, -1.00000286, 1.4286532e-014, -1, -4.84307316e-011))
  1686. CFuncs["Mesh"].Create("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1687.  
  1688. EffectModel = Instance.new("Model", Character)
  1689. EffectModel.Name = "Effects"
  1690.  
  1691. Effects = {
  1692. ["Block"] = {
  1693. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  1694. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  1695. prt.Anchored = true
  1696. prt.CFrame = cframe
  1697. local msh = CFuncs["Mesh"].Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1698. game:GetService("Debris"):AddItem(prt, 10)
  1699. if Type == 1 or Type == nil then
  1700. table.insert(Effects, {
  1701. prt,
  1702. "Block1",
  1703. delay,
  1704. x3,
  1705. y3,
  1706. z3,
  1707. msh
  1708. })
  1709. elseif Type == 2 then
  1710. table.insert(Effects, {
  1711. prt,
  1712. "Block2",
  1713. delay,
  1714. x3,
  1715. y3,
  1716. z3,
  1717. msh
  1718. })
  1719. end
  1720. end;
  1721. };
  1722.  
  1723. ["Cylinder"] = {
  1724. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1725. local prt = CFuncs["Part"].Create(workspace, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.2, 0.2, 0.2))
  1726. prt.Anchored = true
  1727. prt.CFrame = cframe
  1728. local msh = CFuncs["Mesh"].Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1729. game:GetService("Debris"):AddItem(prt, 2)
  1730. Effects[#Effects + 1] = {
  1731. prt,
  1732. "Cylinder",
  1733. delay,
  1734. x3,
  1735. y3,
  1736. z3
  1737. }
  1738. end;
  1739. };
  1740.  
  1741. ["Sphere"] = {
  1742. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1743. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  1744. prt.Anchored = true
  1745. prt.CFrame = cframe
  1746. local msh = CFuncs["Mesh"].Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1747. game:GetService("Debris"):AddItem(prt, 10)
  1748. table.insert(Effects, {
  1749. prt,
  1750. "Cylinder",
  1751. delay,
  1752. x3,
  1753. y3,
  1754. z3,
  1755. msh
  1756. })
  1757. end;
  1758. };
  1759.  
  1760. ["Elec"] = {
  1761. Create = function(cff, x, y, z)
  1762. local prt = CFuncs["Part"].Create(workspace, "Neon", 0, 0, BrickColor.new("Mulberry"), "Part", Vector3.new(1, 1, 1))
  1763. prt.Anchored = true
  1764. prt.CFrame = cff * CFrame.new(math.random(-x, x), math.random(-y, y), math.random(-z, z))
  1765. prt.CFrame = CFrame.new(prt.Position)
  1766. game:GetService("Debris"):AddItem(prt, 2)
  1767. local xval = math.random() / 2
  1768. local yval = math.random() / 2
  1769. local zval = math.random() / 2
  1770. local msh = CFuncs["Mesh"].Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(xval, yval, zval))
  1771. table.insert(Effects, {
  1772. prt,
  1773. "Elec",
  1774. 0.1,
  1775. x,
  1776. y,
  1777. z,
  1778. xval,
  1779. yval,
  1780. zval
  1781. })
  1782. end;
  1783.  
  1784. };
  1785.  
  1786. ["Ring"] = {
  1787. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1788. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  1789. prt.Anchored = true
  1790. prt.CFrame = cframe
  1791. local msh = CFuncs["Mesh"].Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1792. game:GetService("Debris"):AddItem(prt, 10)
  1793. table.insert(Effects, {
  1794. prt,
  1795. "Cylinder",
  1796. delay,
  1797. x3,
  1798. y3,
  1799. z3,
  1800. msh
  1801. })
  1802. end;
  1803. };
  1804.  
  1805.  
  1806. ["Wave"] = {
  1807. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  1808. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  1809. prt.Anchored = true
  1810. prt.CFrame = cframe
  1811. local msh = CFuncs["Mesh"].Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1812. game:GetService("Debris"):AddItem(prt, 10)
  1813. table.insert(Effects, {
  1814. prt,
  1815. "Cylinder",
  1816. delay,
  1817. x3,
  1818. y3,
  1819. z3,
  1820. msh
  1821. })
  1822. end;
  1823. };
  1824.  
  1825. ["Break"] = {
  1826. Create = function(brickcolor, cframe, x1, y1, z1)
  1827. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1828. prt.Anchored = true
  1829. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1830. local msh = CFuncs["Mesh"].Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1831. local num = math.random(10, 50) / 1000
  1832. game:GetService("Debris"):AddItem(prt, 10)
  1833. table.insert(Effects, {
  1834. prt,
  1835. "Shatter",
  1836. num,
  1837. prt.CFrame,
  1838. math.random() - math.random(),
  1839. 0,
  1840. math.random(50, 100) / 100
  1841. })
  1842. end;
  1843. };
  1844. }
  1845.  
  1846. function Reappear()
  1847. for _, i in pairs(Character:children()) do
  1848. if i:IsA("BasePart") then
  1849. coroutine.resume(coroutine.create(function(Part)
  1850. for i = 0, 1, 0.3 do
  1851. swait()
  1852. Part.Transparency = - i
  1853. end
  1854. Part.Transparency = 0
  1855. end), i)
  1856. elseif i:IsA("Accessory") then
  1857. coroutine.resume(coroutine.create(function(Part)
  1858. for i = 0, 1, 0.3 do
  1859. swait()
  1860. Part.Handle.Transparency = - i
  1861. end
  1862. Part.Handle.Transparency = 0
  1863. end), i)
  1864. end
  1865. end
  1866. for _, i in pairs(m:children()) do
  1867. if i:IsA("BasePart") then
  1868. coroutine.resume(coroutine.create(function(Part)
  1869. for i = 0, 1, 0.3 do
  1870. swait()
  1871. Part.Transparency = i
  1872. end
  1873. Part.Transparency = 0
  1874. end), i)
  1875. end
  1876. end
  1877. end
  1878.  
  1879. function Disappear()
  1880. for _, i in pairs(Character:children()) do
  1881. if i:IsA("BasePart") then
  1882. coroutine.resume(coroutine.create(function(Part)
  1883. for i = 0, 1, 0.3 do
  1884. swait()
  1885. Part.Transparency = i
  1886. end
  1887. Part.Transparency = 1
  1888. end), i)
  1889. elseif i:IsA("Accessory") then
  1890. coroutine.resume(coroutine.create(function(Part)
  1891. for i = 0, 1, 0.3 do
  1892. swait()
  1893. Part.Handle.Transparency = - i
  1894. end
  1895. Part.Handle.Transparency = 1
  1896. end), i)
  1897. end
  1898. end
  1899. for _, i in pairs(m:children()) do
  1900. if i:IsA("BasePart") then
  1901. coroutine.resume(coroutine.create(function(Part)
  1902. for i = 0, 1, 0.3 do
  1903. swait()
  1904. Part.Transparency = i
  1905. end
  1906. Part.Transparency = 1
  1907. end), i)
  1908. end
  1909. end
  1910. end
  1911.  
  1912. function AirDash()
  1913. attack = true
  1914. local AntiJump = Humanoid.Changed:connect(function()
  1915. Humanoid.Jump = false
  1916. end)
  1917. Disappear()
  1918. CFuncs["Sound"].Create("rbxassetid://169445226", Torso, 1, .8)
  1919. for i = 0, 1, 0.1 do
  1920. swait()
  1921. RootPart.Velocity = RootPart.CFrame.lookVector * 150
  1922. for i = 1, 3 do
  1923. Effects["Elec"].Create(Torso.CFrame, 5, 5, 5)
  1924. end
  1925. PlayAnimationFromTable({
  1926. CFrame.new(0, -0.0684475452, -0.249608472, 1, 0, 0, 0, 0.866025388, 0.500000238, 0, -0.500000238, 0.866025388) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1927. CFrame.new(0, 1.41547072, 0.181262881, 1, 0, 0, 0, 0.906307876, -0.42261827, 0, 0.42261827, 0.906307876) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1928. CFrame.new(1.39608037, 0.0857366472, 0.69745177, -0.171009958, 0.0301529951, -0.984807849, 0.756428123, 0.644482613, -0.111619413, 0.631325841, -0.764024317, -0.133021519) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1929. CFrame.new(-1.56568348, 0.51024133, 0.517902374, 0.913699269, 0.316559821, 0.254840195, -0.354537129, 0.314407557, 0.880597234, 0.198638007, -0.894951463, 0.399506152) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1930. CFrame.new(0.500000358, -1.34467852, -0.458858073, 0.98480773, -0.0301534627, -0.17101039, 0.0996006578, 0.904794157, 0.414038181, 0.142244503, -0.424780726, 0.894051492) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1931. CFrame.new(-0.493063986, -1.76353812, 0.337700725, 0.965925753, -4.96573023e-007, 0.258819401, -0.14845252, 0.81915164, 0.55403316, -0.212012589, -0.573577225, 0.791239619) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1932. }, .5, false)
  1933. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(185), math.rad(-10)), 0.3)
  1934. end
  1935. Reappear()
  1936. for i = 0, 1, 0.3 do
  1937. swait()
  1938. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1939. PlayAnimationFromTable({
  1940. CFrame.new(-3.45729177e-006, -1.07288361e-006, -1.61215644e-006, 0.422617137, 0, 0.906308293, 0, 1, 0, -0.906308293, 0, 0.422617137),
  1941. CFrame.new(-2.93552876e-006, 1.49999666, 2.47359276e-006, 0.642787337, 0.0667652711, -0.763129652, 0, 0.996194661, 0.0871558487, 0.766044676, -0.0560226738, 0.640341341),
  1942. CFrame.new(0.698839545, 0.330527961, -1.17968464, -0.0858322605, 0.628752053, 0.772854269, 0.992461622, 0.122068912, 0.0109129949, -0.0874799117, 0.76796484, -0.634489775),
  1943. CFrame.new(-1.41369021, 0.137095958, 0.271576643, 0.951021314, 0.183494747, 0.248773009, -0.256190121, 0.918202639, 0.302110255, -0.172988355, -0.351046532, 0.920239806),
  1944. CFrame.new(0.64087379, -1.98256373, 0.140884519, 0.704417586, -0.0616254881, -0.707105517, 0.087155968, 0.996194661, 4.53608664e-006, 0.704414487, -0.0616316497, 0.70710808),
  1945. CFrame.new(-0.751752973, -1.94796431, 0.117966183, 0.936117291, 0.140046805, -0.322600812, -0.0871559978, 0.981060147, 0.172988161, 0.340717107, -0.133820623, 0.930593371),
  1946. }, .6, false)
  1947. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), .5)
  1948. end
  1949. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox, 1, 1)
  1950. for i = 0, 1, 0.3 do
  1951. swait()
  1952. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1953. PlayAnimationFromTable({
  1954. CFrame.new(2.70828605e-006, -0.256154776, -0.071654655, 0.499999046, -1.78813579e-007, -0.866026044, 0.150384009, 0.984807789, 0.0868238211, 0.852869093, -0.173648283, 0.492402941),
  1955. CFrame.new(4.34633694e-006, 1.49999607, 2.42484384e-006, 0.646143615, 0.0549410731, 0.761235893, -0.0851004422, 0.996372402, 0.000322267413, -0.758456767, -0.0649897307, 0.648474991),
  1956. CFrame.new(1.86507177, 0.598104239, 0.183552518, -0.114682339, -0.981059372, -0.156110525, 0.981060445, -0.0871559381, -0.172987223, 0.156104773, -0.172992408, 0.9724738),
  1957. CFrame.new(-1.52644157, 0.0874626189, -0.302744657, 0.95125103, 0.20658794, -0.229004204, -0.254887104, 0.944645047, -0.2065873, 0.173649222, 0.254886597, 0.951251268),
  1958. CFrame.new(0.623469114, -1.90178788, 0.0298061967, 0.992532074, -0.0928985924, 0.079056859, 0.0757590532, 0.97739321, 0.197391063, -0.0956070125, -0.189927697, 0.977131963),
  1959. CFrame.new(-0.786503196, -1.67652178, -0.389780819, 0.631277382, 0.179900557, 0.754403591, -0.0723632798, 0.982144117, -0.173656344, -0.772174001, 0.0550341941, 0.6330235),
  1960. }, .5, false)
  1961. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), .5)
  1962. end
  1963. for i = 0, 1, 0.3 do
  1964. swait()
  1965. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1966. PlayAnimationFromTable({
  1967. CFrame.new(0, -0, -0, 0.573575675, 0, -0.819152594, 0, 1, 0, 0.819152594, 0, 0.573575675),
  1968. CFrame.new(3.08454037e-006, 1.49999881, 2.57045031e-006, 0.642787039, -0.0667651147, 0.76312989, 0, 0.99619478, 0.0871556103, -0.766044915, -0.0560225062, 0.640341043),
  1969. CFrame.new(1.69747591, 0.457380712, 0.451709926, -0.0444228128, -0.827531219, 0.55965966, -0.981060326, -0.0695906579, -0.180770397, 0.18854022, -0.557090104, -0.808766544),
  1970. CFrame.new(-1.68707776, 0.160575554, -0.28150323, 0.690673113, 0.601469755, -0.401503354, -0.691249013, 0.712214351, -0.12217018, 0.212474763, 0.361918449, 0.907672644),
  1971. CFrame.new(0.637356639, -1.97847009, 0.076719813, 0.850760341, -0.123644285, 0.51080215, 0.0764630362, 0.990710139, 0.112458259, -0.519961715, -0.0566175357, 0.852311194),
  1972. CFrame.new(-0.628168941, -1.98483193, 0.152803689, 0.640938401, 0.0450230837, 0.766270876, -0.0758190081, 0.99710989, 0.00483164471, -0.763838768, -0.0611946844, 0.642499626),
  1973. }, .55, false)
  1974. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), .5)
  1975. end
  1976. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox, 1, 1.2)
  1977. for i = 0, 1, 0.3 do
  1978. swait()
  1979. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1980. PlayAnimationFromTable({
  1981. CFrame.new(-0, -0.179999992, 0, 0.707106352, 0, 0.707107365, 0, 1, 0, -0.707107365, 0, 0.707106352),
  1982. CFrame.new(-3.07708979e-006, 1.49999881, 2.57790089e-006, 0.64278692, 0.066765137, -0.763130128, 0, 0.99619478, 0.0871556103, 0.766045094, -0.056022495, 0.640340984),
  1983. CFrame.new(0.954324961, 0.24834919, -0.880105972, 0.326528549, 0.544942617, -0.772280335, -0.941748381, 0.257209718, -0.216687083, 0.0805559754, 0.798048139, 0.597185135),
  1984. CFrame.new(-1.58964086, 0.138686687, 0.0523245335, 0.944645166, 0.254885972, -0.206588656, -0.206587031, 0.951251626, 0.229002386, 0.254887283, -0.173647493, 0.951251388),
  1985. CFrame.new(0.670057595, -1.81781983, -0.10544461, 0.499700427, -0.0172690637, -0.866026282, 0.0345539972, 0.999402881, 9.12000269e-006, 0.865508974, -0.0299292281, 0.499998689),
  1986. CFrame.new(-0.884505391, -1.76931953, -0.185952976, 0.681231737, 0.216974914, -0.699174821, -0.105348974, 0.974182904, 0.199672803, 0.724448264, -0.0623660684, 0.686502278),
  1987. }, .5, false)
  1988. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(70)), .5)
  1989. end
  1990. for i = 0, 1, 0.3 do
  1991. swait()
  1992. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  1993. PlayAnimationFromTable({
  1994. CFrame.new(-0, -0.199999988, 0, 0.499998987, 0, 0.866025984, 0, 1, 0, -0.866025984, 0, 0.499998987),
  1995. CFrame.new(-3.2261014e-006, 1.49999571, 1.87009573e-006, 0.499998987, 0.0754793361, -0.862730443, 0, 0.996194661, 0.087155968, 0.866025984, -0.0435778946, 0.498096317),
  1996. CFrame.new(0.758310795, 0.506792068, -1.07750559, 0.0780267715, 0.542353034, 0.836519599, 0.995831132, -0.0821644962, -0.0396157168, 0.0472465083, 0.836123407, -0.546503007),
  1997. CFrame.new(-1.56371987, -0.0378807485, -0.12044096, 0.892536283, 0.33327353, 0.30382207, -0.157379016, 0.861525297, -0.482707113, -0.422623843, 0.383018374, 0.821392834),
  1998. CFrame.new(0.688273072, -1.83205605, 0.326112747, 0.492402941, -0.0868238136, -0.866025984, 0.173647985, 0.984807849, 0, 0.852869213, -0.150383666, 0.499998987),
  1999. CFrame.new(-0.464390695, -1.92090166, -0.363977104, 0.962945819, 0.0995973051, -0.250631034, -0.0593889765, 0.984808624, 0.163171798, 0.263075113, -0.142240882, 0.954232156),
  2000. }, .3, false)
  2001. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(-30)), .5)
  2002. end
  2003. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox, 1, .7)
  2004. for i = 0, 1, 0.3 do
  2005. swait()
  2006. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  2007. PlayAnimationFromTable({
  2008. CFrame.new(6.67199492e-006, -0.207597449, -0.0868210196, 0.642787039, 9.57827169e-008, -0.766045034, 0.13302201, 0.984807849, 0.11161866, 0.754407108, -0.173647866, 0.633021653),
  2009. CFrame.new(-2.45868534e-007, 1.4999963, -1.11758425e-008, 0.642787039, -1.63912773e-007, 0.766045034, 9.57827169e-008, 1.00000012, 1.1920929e-007, -0.766045034, -7.4505806e-009, 0.642787039),
  2010. CFrame.new(1.63684285, 0.191258341, 0.0590808541, 0.419205964, -0.896826267, -0.141311735, 0.875504494, 0.440527022, -0.198564485, 0.240329444, -0.0404796004, 0.969847083),
  2011. CFrame.new(-1.44409096, 0.0586332679, 0.28650257, 0.847117305, 0.408219695, 0.340219229, -0.468929112, 0.875426352, 0.117194086, -0.249995977, -0.258815825, 0.93301481),
  2012. CFrame.new(0.598103762, -1.98841107, 0.015527457, 0.981059909, -0.0858310461, -0.17365095, 0.115870565, 0.978432178, 0.171010211, 0.155227691, -0.187892288, 0.969845891),
  2013. CFrame.new(-0.84634155, -1.7162106, -0.315425038, 0.499999523, 0.150383905, 0.852868795, 7.07805157e-007, 0.98480767, -0.17364873, -0.866025805, 0.0868248716, 0.492403209),
  2014. }, .3, false)
  2015. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), .5)
  2016. end
  2017. for i = 0, 1, 0.3 do
  2018. swait()
  2019. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  2020. PlayAnimationFromTable({
  2021. CFrame.new(0, -0, -0, 0.76604414, 0, -0.642788053, 0, 1, 0, 0.642788053, 0, 0.76604414),
  2022. CFrame.new(-1.40070915e-006, 1.4999963, -1.66893005e-006, 0.76604414, -0.0429935083, 0.6413486, 0, 0.997760653, 0.066885978, -0.642788053, -0.051237613, 0.764328718),
  2023. CFrame.new(1.66817236, 0.999997735, 0.511572003, 0.736215532, -0.634792984, 0.234573662, -0.642445922, -0.546619952, 0.537093997, -0.212720826, -0.546117783, -0.810250103),
  2024. CFrame.new(-1.37409723, 0.400003314, -0.627805173, 0.774178386, 0.211310744, -0.596653819, -0.628698826, 0.366000623, -0.686135113, 0.0733878911, 0.906306386, 0.416200638),
  2025. CFrame.new(0.653213322, -1.99999535, -0.12855646, 0.94284457, -0.0929451212, 0.320008487, 0.0665469989, 0.993487716, 0.0924861878, -0.326520622, -0.0659044906, 0.94288969),
  2026. CFrame.new(-0.640875459, -1.9999963, -0.0123234689, 0.764365256, 0.0739410222, 0.64053005, -0.0661710203, 0.997153461, -0.0361446291, -0.641379297, -0.0147568267, 0.767082214),
  2027. }, .35, false)
  2028. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), .5)
  2029. end
  2030. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox, 1, .8)
  2031. for i = 0, 1, 0.3 do
  2032. swait()
  2033. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  2034. PlayAnimationFromTable({
  2035. CFrame.new(-1.3038516e-006, -0.390966356, -0.0855526477, 0.499999046, 1.78813579e-007, 0.866026044, -0.150384009, 0.984807789, 0.0868238211, -0.852869093, -0.173648283, 0.492402941),
  2036. CFrame.new(-4.05311584e-006, 1.49999619, 1.60932541e-006, 0.573575735, -0.0713945851, -0.81603545, 6.76140189e-007, 0.99619472, -0.0871561766, 0.819152594, 0.0499901175, 0.571393192),
  2037. CFrame.new(1.28216481, 0.179315746, -0.842360139, 0.633024693, -0.0230962932, -0.773787081, -0.717572212, 0.357540846, -0.597708046, 0.290465295, 0.933612049, 0.209758848),
  2038. CFrame.new(-1.62196672, 0.225311682, 0.0992549062, 0.755533695, 0.605033398, 0.25120458, -0.532469451, 0.790533543, -0.302544594, -0.381635189, 0.0948238969, 0.919436276),
  2039. CFrame.new(0.811682165, -1.60607064, -0.260146618, 0.492403209, -0.0868215263, -0.866026103, 0.173648342, 0.98480773, 2.86102295e-006, 0.852869093, -0.15038538, 0.499998868),
  2040. CFrame.new(-0.546382487, -1.80111504, -0.26132381, 0.984808207, 0.173645854, 6.02006912e-006, -0.142245889, 0.80670774, 0.573575616, 0.0995941162, -0.564862847, 0.819152772),
  2041. }, .43, false)
  2042. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(80)), .5)
  2043. end
  2044. FakeHandleWeld.C0 = CFrame.Angles(0, 0, 0)
  2045. AntiJump:disconnect()
  2046. attack = false
  2047. end
  2048.  
  2049. function attackone()
  2050. attack = true
  2051. local con = Hitbox.Touched:connect(function(hit)
  2052. Damagefunc(Hitbox, hit, 20, 25, math.random(1, 5), "Normal", RootPart, .2, "rbxassetid://199149221", .8)
  2053. end)
  2054. for i = 0, 1, 0.13 do
  2055. swait()
  2056. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  2057. PlayAnimationFromTable({
  2058. CFrame.new(-0.131559491, -0.320498586, 0.169404626, 0.573576331, -1.19657315e-007, 0.819152236, -0.280166179, 0.939692795, 0.196174532, -0.769751489, -0.342019767, 0.538985491) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2059. CFrame.new(-4.47034836e-008, 1.50000048, 2.98023224e-007, 0.573576331, -0.142244831, -0.806707442, -1.19657315e-007, 0.98480767, -0.173648953, 0.819152236, 0.0996010229, 0.564862311) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2060. CFrame.new(0.808982491, 0.459623098, -0.809256911, -0.309975415, 0.628641963, 0.713249564, 0.948714852, 0.155525729, 0.275230855, 0.0620930195, 0.761985064, -0.644611061) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2061. CFrame.new(-1.51002705, 0.0649872497, 0.484053552, 0.933559537, 0.320965201, 0.159525007, -0.335746944, 0.62731266, 0.702675521, 0.125462264, -0.709549546, 0.693396747) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2062. CFrame.new(1.06218219, -1.44446337, -0.324575514, 0.633718252, -0.296198159, -0.714610517, 0.0593904257, 0.939692438, -0.336824715, 0.771280944, 0.171010911, 0.613091588) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2063. CFrame.new(-0.578954935, -1.89007342, -0.0991814733, 0.974172831, 0.036860466, -0.222775176, 0.0446061641, 0.935730338, 0.34988451, 0.221354336, -0.350785136, 0.909918845) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2064. }, .4, false)
  2065. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.3)
  2066. end
  2067. CFuncs["Sound"].Create("rbxassetid://588693579", Hitbox, 1, 1)
  2068. RootPart.Velocity = RootPart.CFrame.lookVector * 50
  2069. for i = 0, 1, 0.15 do
  2070. swait()
  2071. Effects["Elec"].Create(Hitbox.CFrame, .1, .1, .1)
  2072. PlayAnimationFromTable({
  2073. CFrame.new(-0.126416981, -0.288554907, -0.0458763018, 0.658456802, 0.336823344, -0.673041403, 0.0412939899, 0.876750886, 0.479168862, 0.751484811, -0.343304545, 0.563393831) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2074. CFrame.new(4.75347042e-006, 1.50000226, -8.70972872e-006, 0.629547477, -0.0176723152, 0.776760995, 0.182676718, 0.975082517, -0.125871003, -0.75518167, 0.221137911, 0.617089033) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2075. CFrame.new(1.86234975, 0.403067291, -0.0970593393, 0.0283662975, -0.981458306, -0.189565629, 0.811184466, 0.133416668, -0.569368005, 0.584102094, -0.13762185, 0.799928188) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2076. CFrame.new(-1.50460577, 0.187671542, 0.402171046, 0.0342593789, 0.798939466, 0.600434899, -0.526206851, 0.525188565, -0.668792546, -0.849666238, -0.293040574, 0.43840009) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2077. CFrame.new(0.630320907, -2.04325032, 0.0690481961, 0.981336057, -0.154941499, -0.113898009, 0.176862091, 0.95973134, 0.218256027, 0.0754945576, -0.23432678, 0.969222307) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2078. CFrame.new(-0.72014606, -1.49782073, -0.858283162, 0.708516896, -0.0158675089, 0.705515504, 0.260576338, 0.934978366, -0.240656585, -0.655823171, 0.354349881, 0.666582644) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2079. }, .5, false)
  2080. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.3)
  2081. end
  2082. con:disconnect()
  2083. attack = false
  2084. end
  2085.  
  2086. function attacktwo()
  2087. attack = true
  2088. local con = Hitbox.Touched:connect(function(hit)
  2089. Damagefunc(Hitbox, hit, 20, 25, math.random(1, 5), "Normal", RootPart, .2, "rbxassetid://199149221", .8)
  2090. end)
  2091. for i = 0, 1, 0.15 do
  2092. swait()
  2093. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  2094. PlayAnimationFromTable({
  2095. CFrame.new(-0.0931401253, -0.403328717, -0.230022758, 0.707106054, -1.36977135e-007, 0.707107484, -0.241844028, 0.939693153, 0.241843715, -0.664464056, -0.342018902, 0.664462626) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2096. CFrame.new(-1.01327896e-006, 1.49999177, 1.31130219e-006, 0.707106054, -0.122787051, -0.696365118, -1.36977135e-007, 0.984808087, -0.173647076, 0.707107484, 0.122786999, 0.696363688) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2097. CFrame.new(1.51814342, 0.223689169, 0.688179493, -0.137568116, -0.246912807, -0.959223211, 0.789885521, 0.556966305, -0.256650597, 0.597625256, -0.792983413, 0.118412107) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2098. CFrame.new(-1.61155009, 0.84159255, -0.506984234, 0.725072443, 0.649718523, -0.228332728, 0.0704733431, -0.399815619, -0.913882494, -0.685057223, 0.646539629, -0.335683078) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2099. CFrame.new(0.959007144, -1.44447553, -0.459016204, 0.707106054, -0.183011726, -0.683013737, -1.36977135e-007, 0.96592629, -0.258817554, 0.707107484, 0.183011532, 0.683012247) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2100. CFrame.new(-0.401523113, -1.92804301, -0.0715783238, 0.98480773, 4.76837158e-007, 0.173648164, -0.0996008664, 0.819152236, 0.564862251, -0.142243981, -0.573576152, 0.806707501) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2101. }, .4, false)
  2102. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-10)), 0.3)
  2103. end
  2104. RootPart.Velocity = RootPart.CFrame.lookVector * 50
  2105. CFuncs["Sound"].Create("rbxassetid://588693922", Hitbox2, 1, 1.5)
  2106. CFuncs["Sound"].Create("rbxassetid://338586331", Hitbox2, 1, 1.1)
  2107. for i = 0, 1, 0.2 do
  2108. swait()
  2109. Effects["Elec"].Create(Hitbox2.CFrame, .1, .1, .1)
  2110. PlayAnimationFromTable({
  2111. CFrame.new(-0.42147997, -0.541991115, 0.41270873, 0.777157903, 0.336823314, -0.531578541, 0.0263469964, 0.82655102, 0.562244952, 0.62875396, -0.45095858, 0.633486271) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2112. CFrame.new(0.06552203, 1.48139107, 0.0732361525, 0.755344927, -0.00913953781, 0.655263901, 0.172986209, 0.96721828, -0.185916364, -0.632083893, 0.25378257, 0.732164264) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2113. CFrame.new(1.5181396, 0.22368449, 0.68819344, 0.198801011, -0.246908307, -0.948427498, 0.830028176, 0.556967854, 0.0289852768, 0.521086812, -0.792983711, 0.315666586) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2114. CFrame.new(-0.301909953, 0.485349864, -1.08579051, 0.197922766, -0.871504903, -0.44867146, -0.555551589, 0.277377427, -0.783852279, 0.80758214, 0.404402286, -0.429266572) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2115. CFrame.new(0.90766263, -1.68895841, -0.292883754, 0.823597074, -0.339787126, 0.454128563, 0.333233327, 0.937806427, 0.0973394513, -0.458959311, 0.071162343, 0.885602772) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2116. CFrame.new(-0.638449132, -1.41060436, -0.708662212, 0.737985313, 0.155204505, 0.656726241, 0.242131248, 0.847485662, -0.472377807, -0.629881024, 0.507621825, 0.587852061) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2117. }, .5, false)
  2118. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-10)), 0.3)
  2119. end
  2120. con:disconnect()
  2121. attack = false
  2122. end
  2123.  
  2124. function attackthree()
  2125. attack = true
  2126. local con = Hitbox.Touched:connect(function(hit)
  2127. Damagefunc(Hitbox, hit, 20, 25, math.random(1, 5), "Normal", RootPart, .2, "rbxassetid://199149221", .8)
  2128. end)
  2129. for i = 0, 1, 0.2 do
  2130. swait()
  2131. Effects["Elec"].Create(Hitbox.CFrame, .1, .1, .1)
  2132. PlayAnimationFromTable({
  2133. CFrame.new(-0, -0.20810315, -0.0867809057, 1, 0, 0, 0, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2134. CFrame.new(0, 1.47561324, 0.0288389549, 1, 0, 0, 0, 0.99619478, -0.0871553123, 0, 0.0871553123, 0.99619478) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2135. CFrame.new(1.30000365, 1.09976232, 0.400648683, 0.965925872, -5.54146823e-007, -0.258818865, 0.166365132, -0.766044676, 0.620885253, -0.198267132, -0.642787635, -0.739942193) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2136. CFrame.new(-1.3975333, 0.0611867793, 0.304421067, 0.969846368, 0.138258651, 0.200705305, -0.187892184, 0.948662996, 0.254431367, -0.155224353, -0.28447026, 0.946035028) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2137. CFrame.new(0.500000536, -1.87321258, 0.271892726, 0.98480773, -4.69592806e-007, -0.173648208, 0.073387444, 0.906307578, 0.416198403, 0.15737848, -0.422619045, 0.892538726) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2138. CFrame.new(-0.5, -0.603483975, -0.925777316, 1, 0, -0, 0, 0.965925872, -0.258819073, 0, 0.258819073, 0.965925872) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2139. }, .5, false)
  2140. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  2141. end
  2142. RootPart.Velocity = RootPart.CFrame.lookVector * 50
  2143. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox, 1, 1.1)
  2144. for i = 0, 1, 0.16 do
  2145. swait()
  2146. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  2147. PlayAnimationFromTable({
  2148. CFrame.new(-0, -0.470929444, -0.192718163, 1, 0, 0, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2149. CFrame.new(0, 1.47561359, 0.0288352519, 1, 0, 0, 0, 1, -2.98023224e-008, 0, -2.98023224e-008, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2150. CFrame.new(1.08788931, 0.280158341, -0.816111982, 0.965924978, 0.148454919, 0.212014496, 0.166366577, 0.271385759, -0.947983205, -0.198270485, 0.95095253, 0.237440437) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2151. CFrame.new(-1.48265684, 0.224726945, 0.575256824, 0.91523385, 0.274062514, 0.295358658, -0.374409705, 0.849327624, 0.37210232, -0.148876935, -0.451145858, 0.879944921) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2152. CFrame.new(0.481191039, -1.91050935, 0.407004416, 0.98480773, 0.0151346745, -0.17298761, 0.0733870268, 0.866584241, 0.493605196, 0.157378882, -0.498801291, 0.852308273) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2153. CFrame.new(-0.499998271, -1.47281778, -0.692839503, 0.984807849, 0, 0.173647985, 0.0593910702, 0.939692736, -0.33682391, -0.163175747, 0.342019886, 0.925416768) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2154. }, .6, false)
  2155. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(.5, .5, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(60)), 0.6)
  2156. end
  2157. con:disconnect()
  2158. attack = false
  2159. end
  2160.  
  2161. function attackfour()
  2162. attack = true
  2163. local con = Hitbox.Touched:connect(function(hit)
  2164. Damagefunc(Hitbox, hit, 20, 25, math.random(1, 5), "Normal", RootPart, .2, "rbxassetid://199149221", .8)
  2165. end)
  2166. for i = 0, 1, 0.15 do
  2167. swait()
  2168. Effects["Elec"].Create(Hitbox.CFrame, .1, .1, .1)
  2169. PlayAnimationFromTable({
  2170. CFrame.new(-0.113323241, -0.301505059, -0.358205646, 0.642786801, -4.78913407e-008, 0.766045153, -0.198266953, 0.965925872, 0.16636543, -0.739942849, -0.258818924, 0.620884418) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2171. CFrame.new(-1.05798244e-006, 1.49999213, 9.983778e-007, 0.642786801, -0.0667652637, -0.763130188, -4.78913407e-008, 0.99619478, -0.0871558189, 0.766045153, 0.0560226589, 0.640340865) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2172. CFrame.new(1.65369904, 0.162275895, -0.00659683347, 0.707105041, -0.696365714, -0.12278986, 0.579228401, 0.670027971, -0.464281261, 0.40558213, 0.257172287, 0.877134919) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2173. CFrame.new(-1.66235614, 0.192983806, -0.335417867, 0.563021898, 0.639703155, 0.52324605, 0.237272531, 0.481356442, -0.843799591, -0.791649222, 0.599229455, 0.119230166) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2174. CFrame.new(0.964248538, -1.60233533, -0.216483638, 0.571182966, -0.157378986, -0.805594265, 0.0301537905, 0.984807849, -0.171010092, 0.82026881, 0.0733863264, 0.567251086) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2175. CFrame.new(-0.823070824, -1.8176235, -0.245362669, 0.846333623, 0.340068877, -0.409966528, -0.271193385, 0.937547863, 0.217848897, 0.458446831, -0.0731925964, 0.885702848) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2176. }, .5, false)
  2177. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-50)), 0.5)
  2178. end
  2179. RootPart.CFrame = RootPart.CFrame * CFrame.new(0, 0, -10)
  2180. CFuncs["Sound"].Create("rbxassetid://338586331", Hitbox2, 1, 1)
  2181. CFuncs["Sound"].Create("rbxassetid://588693156", Hitbox2, 1, 1.5)
  2182. for i = 0, 1, 0.16 do
  2183. swait()
  2184. Effects["Elec"].Create(Hitbox.CFrame, 5, 5, 5)
  2185. PlayAnimationFromTable({
  2186. CFrame.new(-0.157449037, -0.428025395, 0.0330477953, 0.31941691, 0.224143028, -0.920724034, 0.130619973, 0.951934218, 0.277055472, 0.938568771, -0.208761141, 0.274786323) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2187. CFrame.new(-8.62404704e-006, 1.49999344, -1.35879964e-005, 0.419978231, -0.0667628497, 0.905075192, 0.0789893046, 0.996194839, 0.0368312001, -0.904090106, 0.0560229644, 0.423653752) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2188. CFrame.new(1.42177391, 0.402980715, 0.530310392, 0.578039765, -0.574771583, -0.579230309, 0.767084241, 0.624832928, 0.145484447, 0.278301865, -0.52841413, 0.802076399) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2189. CFrame.new(-1.44472814, 1.10374677, -0.520131826, 0.989266992, 0.030755192, 0.142846346, 0.107178524, -0.817194343, -0.566309273, 0.099316299, 0.575541079, -0.811719656) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2190. CFrame.new(0.569701552, -1.87918103, 0.172382548, 0.960191846, -0.15472649, 0.232575998, 0.114886686, 0.977646708, 0.176091135, -0.254623055, -0.142361343, 0.956504226) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2191. CFrame.new(-0.878278732, -1.42697322, -0.499026388, 0.643315554, 0.242828339, 0.726071298, 0.0758636594, 0.923481584, -0.37606734, -0.761833251, 0.297012389, 0.575668097) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2192. }, .6, false)
  2193. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-50)), 0.6)
  2194. end
  2195. con:disconnect()
  2196. attack = false
  2197. end
  2198.  
  2199. --[[Attacks]]--
  2200.  
  2201. mouse.Button1Down:connect(function()
  2202. if attack == false and attacktype == 1 then
  2203. attacktype = 2
  2204. attackone()
  2205. elseif attack == false and attacktype == 2 then
  2206. attacktype = 3
  2207. attacktwo()
  2208. elseif attack == false and attacktype == 3 then
  2209. attacktype = 4
  2210. attackthree()
  2211. elseif attack == false and attacktype == 4 then
  2212. attacktype = 1
  2213. attackfour()
  2214. end
  2215. end)
  2216.  
  2217. mouse.KeyDown:connect(function(k)
  2218. k = k:lower()
  2219. if attack == false and k == 'z' then
  2220. AirDash()
  2221. end
  2222. end)
  2223.  
  2224. Humanoid.JumpPower = 80
  2225.  
  2226. while true do
  2227. swait()
  2228. Hitbox.Transparency = 1
  2229. Hitbox2.Transparency = 1
  2230. Handle.Transparency = 1
  2231. Handle2.Transparency = 1
  2232. FakeHandle.Transparency = 1
  2233. RootPart.Transparency = 1
  2234. Humanoid.WalkSpeed = 25
  2235. for i, v in pairs(Character:GetChildren()) do
  2236. if v:IsA("Part") then
  2237. v.Material = "SmoothPlastic"
  2238. elseif v:IsA("Accessory") then
  2239. v:WaitForChild("Handle").Material = "SmoothPlastic"
  2240. end
  2241. end
  2242. for i, v in pairs(Character:GetChildren()) do
  2243. if v:IsA'Model' then
  2244. for _, c in pairs(v:GetChildren()) do
  2245. if c:IsA'Part' then
  2246. c.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001)
  2247. end
  2248. end
  2249. end
  2250. end
  2251. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  2252. velocity = RootPart.Velocity.y
  2253. sine = sine + change
  2254. local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  2255. if equipped == true or equipped == false then
  2256. if RootPart.Velocity.y > 1 and hit == nil then
  2257. Anim = "Jump"
  2258. if attack == false then
  2259. PlayAnimationFromTable({
  2260. CFrame.new(-0, -0, -0, 1, 0, 0, 0, 1, 0, 0, 0, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2261. CFrame.new(0, 1.49104357, -0.0507529527, 1, 0, 0, 0, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2262. CFrame.new(1.37250769, 0.121224046, 0.64733851, 0.173648015, 2.58755701e-008, -0.984807789, 0.852869093, 0.499999106, 0.150383696, 0.49240306, -0.866025925, 0.0868238285) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2263. CFrame.new(-1.57669723, 0.162346587, -0.26788035, 0.8611601, 0.435611397, -0.262004048, -0.489563048, 0.849481702, -0.196745664, 0.136863008, 0.297697008, 0.944798946) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2264. CFrame.new(0.49999693, -1.99999774, -8.94069672e-008, 0.965925872, 3.7422879e-007, -0.258818924, 0.0449429974, 0.984807849, 0.167731062, 0.254886955, -0.173647881, 0.951251388) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2265. CFrame.new(-0.598104358, -1.58444905, -0.345675468, 0.981060326, 0.0858319253, 0.173648298, -0.141065046, 0.930940628, 0.336823732, -0.132746041, -0.354940027, 0.925416648) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2266. }, .3, false)
  2267. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-10)), 0.3)
  2268. end
  2269. elseif RootPart.Velocity.y < -1 and hit == nil then
  2270. Anim = "Fall"
  2271. if attack == false then
  2272. PlayAnimationFromTable({
  2273. CFrame.new(-0, -0, -0, 1, 0, 0, 0, 1, 0, 0, 0, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2274. CFrame.new(0, 1.4910444, -0.0507505536, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2275. CFrame.new(1.41551924, 0.430770516, 0.599072576, 0.163175896, -0.0593939237, -0.984807611, 0.972444415, 0.178148255, 0.150383249, 0.166509897, -0.982209563, 0.0868267864) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2276. CFrame.new(-1.53597856, 0.181962684, -0.0532567501, 0.748531938, 0.630958676, 0.203939021, -0.508304954, 0.743486166, -0.434573829, -0.425823927, 0.221629158, 0.877242625) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2277. CFrame.new(0.525004327, -1.77186298, -0.282919437, 0.965925634, -0.0885212198, -0.24321124, 0.0449429862, 0.982783973, -0.179209024, 0.254887909, 0.162171945, 0.953274548) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2278. CFrame.new(-0.625082374, -1.74759519, -0.371673733, 0.98105973, 0.161157295, 0.107471913, -0.141064972, 0.974630296, -0.173771828, -0.132749975, 0.155320033, 0.978904068) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2279. }, .3, false)
  2280. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-10)), 0.3)
  2281. end
  2282. elseif Torsovelocity < 1 and hit ~= nil then
  2283. Anim = "Idle"
  2284. if attack == false then
  2285. change = 1
  2286. PlayAnimationFromTable({
  2287. CFrame.new(-0.0741269588, -0.296722889, 0.0201097988, 0.819151819, 0, -0.573576868, 0, 1, 0, 0.573576868, 0, 0.819151819) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2288. CFrame.new(-0.0564861223, 1.48262787, -0.0806704611, 0.819151819, -0.0996004641, 0.564863026, 0, 0.984807849, 0.173647985, -0.573576868, -0.142244056, 0.806707144) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2289. CFrame.new(1.61798644, 0.0522672534, 0.0578619242, 0.35459581, -0.371187091, -0.858185351, 0.516142964, 0.843021989, -0.151362091, 0.779652774, -0.389273971, 0.490517616) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2290. CFrame.new(-1.59952319, 0.0271437615, -0.238670975, 0.950691044, 0.297527671, -0.0875436962, -0.310010105, 0.903491974, -0.295966268, -0.00896313787, 0.308511913, 0.951178312) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2291. CFrame.new(0.574041069, -1.71940637, 0.364966094, 0.988550007, -0.0436736047, -0.144435555, 0.130200043, 0.730692983, 0.67017597, 0.0762690306, -0.681308031, 0.7280128) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2292. CFrame.new(-0.737140536, -1.73033857, -0.0957245529, 0.640411794, -0.00933929533, 0.767975152, -0.0868059918, 0.992638648, 0.0844586417, -0.763110518, -0.120753139, 0.634886801) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2293. }, .3, false)
  2294. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(190), math.rad(-10)), 0.3)
  2295. end
  2296. elseif Torsovelocity > 2 and hit ~= nil then
  2297. Anim = "Walk"
  2298. if attack == false then
  2299. change = 3.5
  2300. PlayAnimationFromTable({
  2301. CFrame.new(0, -0.0223370567, -0.165983588, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872) * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20), math.rad(-3 * math.cos(sine / 10)), 0),
  2302. CFrame.new(0, 1.49999154, -4.32133675e-007, 1, 0, 0, 0, 0.99619478, -0.0871558785, 0, 0.0871558785, 0.99619478) * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(3 * math.cos(sine / 10)), 0),
  2303. CFrame.new(1.34347034, 1.02328479, -0.33295393, 0.952024519, 0.0437923931, -0.302872181, -0.167465881, -0.753811061, -0.635392845, -0.256133795, 0.65563035, -0.710312903) * CFrame.new(0, 0, -.3) * CFrame.Angles(math.rad(20), 0, 0),
  2304. CFrame.new(-1.58242321, 0.297260404, 0.384855121, 0.837201297, 0.488875121, 0.245142967, -0.533269644, 0.630305767, 0.564214647, 0.121315509, -0.603088558, 0.788395166) * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(3 * math.cos(sine / 10)), math.rad(3 + 1 * math.cos(sine / 10))),
  2305. CFrame.new(.5, -1.85 - 0.5 * math.cos(sine / 8) / 2, 0 + 2 * math.sin(sine / 8) / 2) * angles(math.rad(-80 * math.sin(sine / 8)), math.rad(-5), math.rad(0)),
  2306. CFrame.new(-.5, -1.85 + 0.5 * math.cos(sine / 8) / 2, 0 - 2 * math.sin(sine / 8) / 2) * angles(math.rad(80 * math.sin(sine / 8)), math.rad(5), math.rad(0)),
  2307. }, .3, false)
  2308. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(-.3, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-75)), 0.3)
  2309. end
  2310. end
  2311. end
  2312. if #Effects > 0 then
  2313. for e = 1, #Effects do
  2314. if Effects[e] ~= nil then
  2315. local Thing = Effects[e]
  2316. if Thing ~= nil then
  2317. local Part = Thing[1]
  2318. local Mode = Thing[2]
  2319. local Delay = Thing[3]
  2320. local IncX = Thing[4]
  2321. local IncY = Thing[5]
  2322. local IncZ = Thing[6]
  2323. if Thing[1].Transparency <= 1 then
  2324. if Thing[2] == "Block1" then
  2325. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  2326. Mesh = Thing[1].Mesh
  2327. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2328. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2329. elseif Thing[2] == "Block2" then
  2330. Thing[1].CFrame = Thing[1].CFrame
  2331. Mesh = Thing[7]
  2332. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2333. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2334. elseif Thing[2] == "Cylinder" then
  2335. Mesh = Thing[1].Mesh
  2336. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2337. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2338. elseif Thing[2] == "Blood" then
  2339. Mesh = Thing[7]
  2340. Thing[1].CFrame = Thing[1].CFrame * Vector3.new(0, .5, 0)
  2341. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2342. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2343. elseif Thing[2] == "Elec" then
  2344. Mesh = Thing[1].Mesh
  2345. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  2346. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2347. elseif Thing[2] == "Disappear" then
  2348. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2349. elseif Thing[2] == "Shatter" then
  2350. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2351. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  2352. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  2353. Thing[6] = Thing[6] + Thing[5]
  2354. end
  2355. else
  2356. Part.Parent = nil
  2357. table.remove(Effects, e)
  2358. end
  2359. end
  2360. end
  2361. end
  2362. end
  2363. end
Add Comment
Please, Sign In to add comment