Advertisement
Im_Meme

Easier Version of Corrupted Blade

Jun 10th, 2018
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 269.59 KB | None | 0 0
  1. -- Created by Nebula_Zorua --
  2. -- The Corrupted Blade --
  3. -- A remake of my old Corruption Blade --
  4. -- Discord: Nebula the Zorua#6969
  5. -- Youtube: https://www.youtube.com/channel/UCo9oU9dCw8jnuVLuy4_SATA
  6.  
  7. warn("Got lazy and had no ideas for this, so I released it ;P")
  8. warn("Created by Nebula the Zorua#6969 (Nebula_Zorua)")
  9. warn("Easy Edit done by i_MemeMachine")
  10. wait(1/60)
  11.  
  12. --// Shortcut Variables \\--
  13. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  14. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  15. local C3 = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  16. local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  17. local M = {C=math.cos,R=math.rad,S=math.sin,P=math.pi,RNG=math.random,MRS=math.randomseed,H=math.huge,RRNG = function(min,max,div) return math.rad(math.random(min,max)/(div or 1)) end}
  18. local R3 = {N=Region3.new}
  19. local De = S.Debris
  20. local WS = workspace
  21. local Lght = S.Lighting
  22. local RepS = S.ReplicatedStorage
  23. local IN = Instance.new
  24. local Plrs = S.Players
  25.  
  26. --// Initializing \\--
  27. local Plr = Plrs.LocalPlayer
  28. local Char = Plr.Character
  29. local PlrGui = Plr:FindFirstChildOfClass'PlayerGui'
  30. local Hum = Char:FindFirstChildOfClass'Humanoid'
  31. local RArm = Char["Right Arm"]
  32. local LArm = Char["Left Arm"]
  33. local RLeg = Char["Right Leg"]
  34. local LLeg = Char["Left Leg"]
  35. local Root = Char:FindFirstChild'HumanoidRootPart'
  36. local Torso = Char.Torso
  37. local Head = Char.Head
  38. local NeutralAnims = true
  39. local Attack = false
  40. local Debounces = {Debounces={}}
  41. local Mouse = Plr:GetMouse()
  42. local Hit = {}
  43. local Sine = 0
  44. local Change = 1
  45. local BloodPuddles = {}
  46.  
  47. local Keystrokes = {}
  48. local Input = ""
  49.  
  50. local Input_MaxTime = .8
  51. local Input_Time = Input_MaxTime
  52. local Input_Addition = 0.2
  53. local Input_Lose = 0.1
  54. local Max_Input = 20
  55.  
  56.  
  57. local Effects = IN("Folder",Char)
  58. Effects.Name = "Effects"
  59.  
  60.  
  61. --// Debounce System \\--
  62.  
  63.  
  64. function Debounces:New(name,cooldown)
  65. local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
  66. setmetatable(aaaaa,{__index = Debounces})
  67. Debounces.Debounces[name] = aaaaa
  68. return aaaaa
  69. end
  70.  
  71. function Debounces:Use(overrideUsable)
  72. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  73. if(self.Usable or overrideUsable)then
  74. self.Usable = false
  75. self.CoolingDown = true
  76. local LastUse = time()
  77. self.LastUse = LastUse
  78. delay(self.Cooldown or 2,function()
  79. if(self.LastUse == LastUse)then
  80. self.CoolingDown = false
  81. self.Usable = true
  82. end
  83. end)
  84. end
  85. end
  86.  
  87. function Debounces:Get(name)
  88. assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
  89. for i,v in next, Debounces.Debounces do
  90. if(i == name)then
  91. return v;
  92. end
  93. end
  94. end
  95.  
  96. function Debounces:GetProgressPercentage()
  97. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  98. if(self.CoolingDown and not self.Usable)then
  99. return math.max(
  100. math.floor(
  101. (
  102. (time()-self.LastUse)/self.Cooldown or 2
  103. )*100
  104. )
  105. )
  106. else
  107. return 100
  108. end
  109. end
  110.  
  111. --// Instance Creation Functions \\--
  112.  
  113. local sssss = IN("Sound")
  114. function Sound(parent,id,pitch,volume,looped,effect,autoPlay)
  115. local Sound = sssss:Clone()
  116. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  117. Sound.Pitch = pitch or 1
  118. Sound.Volume = volume or 1
  119. Sound.Looped = looped or false
  120. if(autoPlay)then
  121. coroutine.wrap(function()
  122. repeat wait() until Sound.IsLoaded
  123. Sound.Playing = autoPlay or false
  124. end)()
  125. end
  126. if(not looped and effect)then
  127. Sound.Stopped:connect(function()
  128. Sound.Volume = 0
  129. Sound:destroy()
  130. end)
  131. elseif(effect)then
  132. warn("Sound can't be looped and a sound effect!")
  133. end
  134. Sound.Parent =parent or Torso
  135. return Sound
  136. end
  137. function Part(parent,color,material,size,cframe,anchored,cancollide)
  138. local part = IN("Part")
  139. part.Parent = parent or Char
  140. part[typeof(color) == 'BrickColor' and 'BrickColor' or 'Color'] = color or C3.N(0,0,0)
  141. part.Material = material or Enum.Material.SmoothPlastic
  142. part.TopSurface,part.BottomSurface=10,10
  143. part.Size = size or V3.N(1,1,1)
  144. part.CFrame = cframe or CF.N(0,0,0)
  145. part.CanCollide = cancollide or false
  146. part.Anchored = anchored or false
  147. return part
  148. end
  149.  
  150. function Weld(part0,part1,c0,c1)
  151. local weld = IN("Weld")
  152. weld.Parent = part0
  153. weld.Part0 = part0
  154. weld.Part1 = part1
  155. weld.C0 = c0 or CF.N()
  156. weld.C1 = c1 or CF.N()
  157. return weld
  158. end
  159.  
  160. function Mesh(parent,meshtype,meshid,textid,scale,offset)
  161. local part = IN("SpecialMesh")
  162. part.MeshId = meshid or ""
  163. part.TextureId = textid or ""
  164. part.Scale = scale or V3.N(1,1,1)
  165. part.Offset = offset or V3.N(0,0,0)
  166. part.MeshType = meshtype or Enum.MeshType.Sphere
  167. part.Parent = parent
  168. return part
  169. end
  170.  
  171. NewInstance = function(instance,parent,properties)
  172. local inst = Instance.new(instance)
  173. inst.Parent = parent
  174. if(properties)then
  175. for i,v in next, properties do
  176. pcall(function() inst[i] = v end)
  177. end
  178. end
  179. return inst;
  180. end
  181.  
  182. function Clone(instance,parent,properties)
  183. local inst = instance:Clone()
  184. inst.Parent = parent
  185. if(properties)then
  186. for i,v in next, properties do
  187. pcall(function() inst[i] = v end)
  188. end
  189. end
  190. return inst;
  191. end
  192.  
  193. function SoundPart(id,pitch,volume,looped,effect,autoPlay,cf)
  194. local soundPart = NewInstance("Part",Effects,{Transparency=1,CFrame=cf or Torso.CFrame,Anchored=true,CanCollide=false,Size=V3.N()})
  195. local Sound = IN("Sound")
  196. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  197. Sound.Pitch = pitch or 1
  198. Sound.Volume = volume or 1
  199. Sound.Looped = looped or false
  200. if(autoPlay)then
  201. coroutine.wrap(function()
  202. repeat wait() until Sound.IsLoaded
  203. Sound.Playing = autoPlay or false
  204. end)()
  205. end
  206. if(not looped and effect)then
  207. Sound.Stopped:connect(function()
  208. Sound.Volume = 0
  209. soundPart:destroy()
  210. end)
  211. elseif(effect)then
  212. warn("Sound can't be looped and a sound effect!")
  213. end
  214. Sound.Parent = soundPart
  215. return Sound
  216. end
  217.  
  218. function Label(parent,text,size,pos,trans,tc,textsize,wrapped)
  219. local label = IN"TextLabel"
  220. label.Text = text or "Default"
  221. label.Size = size or UDim2.new(.05,0,.05,0)
  222. label.Position = pos or UDim2.new(0,0,0,0)
  223. label.TextTransparency = trans or 0
  224. label.TextColor3 = tc or C3.N(0,0,0)
  225. label.TextSize = textsize or 24
  226. label.TextWrapped = wrapped or false
  227. label.BackgroundTransparency = 1
  228. label.Parent = parent
  229.  
  230. return label
  231. end
  232.  
  233. function Frame(parent,size,pos,bc,bt)
  234. local frame = IN"Frame"
  235. frame.Size = size or UDim2.new(.05,0,.05,0)
  236. frame.Position = pos or UDim2.new(0,0,0,0)
  237. frame.BackgroundColor3 = bc or C3.N(1,1,1)
  238. frame.BackgroundTransparency = bt or 0
  239. frame.Parent = parent
  240.  
  241. return frame
  242. end
  243.  
  244. --// Extended ROBLOX tables \\--
  245. local Instance = setmetatable({ClearChildrenOfClass = function(where,class,recursive) local children = (recursive and where:GetDescendants() or where:GetChildren()) for _,v in next, children do if(v:IsA(class))then v:destroy();end;end;end},{__index = Instance})
  246. --// Require stuff \\--
  247. function CamShake(who,times,intense,origin)
  248. coroutine.wrap(function()
  249. if(script:FindFirstChild'CamShake')then
  250. local cam = script.CamShake:Clone()
  251. cam:WaitForChild'intensity'.Value = intense
  252. cam:WaitForChild'times'.Value = times
  253.  
  254. if(origin)then NewInstance((typeof(origin) == 'Instance' and "ObjectValue" or typeof(origin) == 'Vector3' and 'Vector3Value'),cam,{Name='origin',Value=origin}) end
  255. cam.Parent = who
  256. wait()
  257. cam.Disabled = false
  258. elseif(who == Plr or who == Char or who:IsDescendantOf(Plr))then
  259. local intensity = intense
  260. local cam = workspace.CurrentCamera
  261. for i = 1, times do
  262. local camDistFromOrigin
  263. if(typeof(origin) == 'Instance' and origin:IsA'BasePart')then
  264. camDistFromOrigin = math.floor( (cam.CFrame.p-origin.Position).magnitude )/25
  265. elseif(typeof(origin) == 'Vector3')then
  266. camDistFromOrigin = math.floor( (cam.CFrame.p-origin).magnitude )/25
  267. end
  268. if(camDistFromOrigin)then
  269. intensity = math.min(intense, math.floor(intense/camDistFromOrigin))
  270. end
  271. cam.CFrame = cam.CFrame:lerp(cam.CFrame*CFrame.new(math.random(-intensity,intensity)/100,math.random(-intensity,intensity)/100,math.random(-intensity,intensity)/100)*CFrame.Angles(math.rad(math.random(-intensity,intensity)/100),math.rad(math.random(-intensity,intensity)/100),math.rad(math.random(-intensity,intensity)/100)),.4)
  272. swait()
  273. end
  274. end
  275. end)()
  276. end
  277.  
  278.  
  279. function CamShakeAll(times,intense,origin)
  280. for _,v in next, Plrs:players() do
  281. CamShake(v:FindFirstChildOfClass'PlayerGui' or v:FindFirstChildOfClass'Backpack' or v.Character,times,intense,origin)
  282. end
  283. end
  284.  
  285. function ServerScript(code)
  286. if(script:FindFirstChild'Loadstring')then
  287. local load = script.Loadstring:Clone()
  288. load:WaitForChild'Sauce'.Value = code
  289. load.Disabled = false
  290. load.Parent = workspace
  291. elseif(NS and typeof(NS) == 'function')then
  292. NS(code,workspace)
  293. else
  294. warn("no serverscripts lol")
  295. end
  296. end
  297.  
  298. function LocalOnPlayer(who,code)
  299. ServerScript([[
  300. wait()
  301. script.Parent=nil
  302. if(not _G.Http)then _G.Http = game:service'HttpService' end
  303.  
  304. local Http = _G.Http or game:service'HttpService'
  305.  
  306. local source = ]].."[["..code.."]]"..[[
  307. local link = "https://api.vorth.xyz/R_API/R.UPLOAD/NEW_LOCAL.php"
  308. local asd = Http:PostAsync(link,source)
  309. repeat wait() until asd and Http:JSONDecode(asd) and Http:JSONDecode(asd).Result and Http:JSONDecode(asd).Result.Require_ID
  310. local ID = Http:JSONDecode(asd).Result.Require_ID
  311. local vs = require(ID).VORTH_SCRIPT
  312. vs.Parent = game:service'Players'.]]..who.Name..[[.Character
  313. ]])
  314. end
  315.  
  316. --// Customization \\--
  317.  
  318. local Frame_Speed = 60 -- The frame speed for swait. 1 is automatically divided by this
  319. local Remove_Hats = false
  320. local Remove_Clothing = false
  321. local PlayerSize = 1
  322. local DamageColor = BrickColor.new'Royal purple'
  323. local MusicID = 181976456
  324. local God = false
  325. local Muted = false
  326.  
  327. local WalkSpeed = 16
  328.  
  329. --// Weapon and GUI creation, and Character Customization \\--
  330.  
  331. New = function(Object, Parent, Name, Data)
  332. local Object = Instance.new(Object)
  333. for Index, Value in pairs(Data or {}) do
  334. Object[Index] = Value
  335. end
  336. if(Object:IsA'BasePart')then
  337. Object.CanCollide = false
  338. end
  339. Object.Parent = Parent
  340. Object.Name = Name
  341. return Object
  342. end
  343.  
  344. Pickaxe = New("Model",Char,"Pickaxe",{})
  345. PHandle = New("CornerWedgePart",Pickaxe,"PHandle",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 1.22857749, 0.200000003),CFrame = CFrame.new(-1.81132972, 31.9045448, -3.7648077, 0.999903262, 0.0100661963, -0.00961771607, 0.0125730056, -0.356220037, 0.934317529, 0.00597900106, -0.934347749, -0.356312007),CanCollide = false,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),})
  346. CylinderMesh = New("CylinderMesh",PHandle,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.554411948),})
  347. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.411928505, 0.299382597, 0.2955015),CFrame = CFrame.new(-1.76651394, 31.559288, -6.18310595, 0.00925500039, -0.00301100453, 0.999952972, -0.991602361, 0.128970325, 0.00956607237, -0.128992975, -0.991643786, -0.00179209409),CanCollide = false,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),})
  348. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  349. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00925500412, -0.991602361, -0.128993049, -0.00301100337, 0.12897037, -0.991643965, 0.999952734, 0.00956606772, -0.00179209665),C1 = CFrame.new(0.026011467, 2.38297081, 0.538658142, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  350. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.353160828, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.76172793, 31.2184887, -6.36129189, -0.00101500074, -0.00975999888, 0.999952137, -0.0764680207, 0.997025311, 0.00965382438, -0.997071326, -0.07645455, -0.00175830699),CanCollide = false,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),})
  351. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.113654539, 1),})
  352. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00101499958, -0.0764679611, -0.997071505, -0.00976000074, 0.997025311, -0.0764544755, 0.999951899, 0.00965381786, -0.0017583078),C1 = CFrame.new(0.0254467726, 2.67090607, 0.283687592, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  353. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.425234467, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.76130295, 31.2000961, -6.34836102, -0.00101500074, -0.00975999888, 0.999952137, -0.0764680207, 0.997025311, 0.00965382438, -0.997071326, -0.07645455, -0.00175830699),CanCollide = false,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),})
  354. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.0970221609, 1),})
  355. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00101499958, -0.0764679611, -0.997071505, -0.00976000074, 0.997025311, -0.0764544755, 0.999951899, 0.00965381786, -0.0017583078),C1 = CFrame.new(0.0257178545, 2.66538, 0.261892319, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  356. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.699114263, 0.348725319, 0.2955015),CFrame = CFrame.new(-1.77610302, 32.290905, -5.78515339, 0.00755899819, -0.0036310046, 0.999965131, -0.954157054, 0.299191356, 0.0082991356, -0.299210966, -0.954186141, -0.00120295805),CanCollide = false,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),})
  357. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  358. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00755900005, -0.954156995, -0.299210995, -0.00363100367, 0.299191415, -0.95418632, 0.999964893, 0.00829913002, -0.00120295968),C1 = CFrame.new(0.0280013084, 1.75043201, 1.08051682, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  359. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.221765056, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.82174683, 32.365078, -3.45860457, -0.00331799733, 0.0135510005, -0.999902844, 0.630962908, -0.775710583, -0.0126064215, -0.775805831, -0.630943179, -0.00597637286),CanCollide = false,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),})
  360. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.681927145, 0.43798548),})
  361. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00331799942, 0.630962968, -0.775805891, 0.0135510024, -0.775710523, -0.630943358, -0.999902666, -0.0126064168, -0.00597637286),C1 = CFrame.new(-0.002794981, -0.450255871, 0.321279526, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  362. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.7567277, 30.3505344, -5.33937263, 0.00841799937, 0.00487700058, 0.999952912, -0.758198738, -0.65195322, 0.00956255384, 0.651968837, -0.758243322, -0.00179040164),CanCollide = false,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),})
  363. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.956361115, 1),})
  364. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00841799937, -0.758198857, 0.651968956, 0.00487700338, -0.651953161, -0.758243501, 0.999952734, 0.00956255011, -0.00179040316),C1 = CFrame.new(0.0256438255, 2.02531099, -0.891427994, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  365. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.588786185, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.78056371, 32.596981, -5.54674864, 0.00685199397, -0.00484499801, 0.999965072, -0.88771075, 0.460326731, 0.00831317157, -0.460350662, -0.88773632, -0.00114679686),CanCollide = false,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),})
  366. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.845478535, 1),})
  367. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00685199769, -0.88771069, -0.460350811, -0.00484499801, 0.460326761, -0.88773644, 0.999964774, 0.00831316505, -0.0011467986),C1 = CFrame.new(0.0288147926, 1.41860342, 1.28158569, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  368. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.363140225, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.75510597, 30.4817696, -5.88844919, 0.00644399878, 0.00726399245, 0.999953091, -0.517058849, -0.855896592, 0.00954960939, 0.85592556, -0.517095864, -0.00175947999),CanCollide = false,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),})
  369. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.956361115, 1),})
  370. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00644399785, -0.517058849, 0.855925679, 0.00726399571, -0.855896592, -0.517095983, 0.999952853, 0.00954960473, -0.00175948243),C1 = CFrame.new(0.0256325006, 2.49160719, -0.573184967, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  371. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.221765056, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.820858, 32.2263603, -3.31285501, -0.00778699666, 0.0116039943, -0.999902666, 0.858316839, -0.512964427, -0.012637388, -0.513060868, -0.858331382, -0.00596545264),CanCollide = false,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),})
  372. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.50451529, 0.43798548),})
  373. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00778699899, 0.858316898, -0.513060927, 0.0116039943, -0.512964368, -0.858331561, -0.999902368, -0.0126373814, -0.00596545124),C1 = CFrame.new(-0.00277888775, -0.537014484, 0.139734268, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  374. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.425234467, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.76102209, 31.1845493, -6.36230946, -0.00101500074, -0.00975999888, 0.999952137, -0.0764680207, 0.997025311, 0.00965382438, -0.997071326, -0.07645455, -0.00175830699),CanCollide = false,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),})
  375. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.0554412268, 1),})
  376. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00101499958, -0.0764679611, -0.997071505, -0.00976000074, 0.997025311, -0.0764544755, 0.999951899, 0.00965381786, -0.0017583078),C1 = CFrame.new(0.0257197618, 2.68395424, 0.252332687, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  377. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.232298866, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.75462198, 30.3482456, -5.64974833, -0.0027570026, -0.00621299678, -0.999977231, -0.450127065, 0.89295423, -0.00430702837, 0.892960072, 0.450104713, -0.00525851641),CanCollide = false,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),})
  378. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.956361115, 1),})
  379. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00275700074, -0.450127125, 0.89296025, -0.00621299958, 0.892954111, 0.450104833, -0.999976993, -0.00430702278, -0.00525851548),C1 = CFrame.new(0.0258648396, 2.31614637, -0.782995224, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  380. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.76358891, 31.2700996, -6.15654612, -0.00432700198, -0.00880500302, 0.999952078, 0.269165993, 0.963045597, 0.00964477286, -0.963083923, 0.269194692, -0.00179708772),CanCollide = false,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),})
  381. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 1),})
  382. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00432700058, 0.269166023, -0.963084102, -0.00880500674, 0.963045537, 0.269194782, 0.999951899, 0.00964476727, -0.00179708994),C1 = CFrame.new(0.0254590511, 2.46119881, 0.258972168, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  383. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.411928505, 0.299382597, 0.2955015),CFrame = CFrame.new(-1.76563394, 31.4696217, -6.13815212, 0.00648399815, -0.00725199655, 0.999952912, -0.794264197, 0.607497454, 0.00955603644, -0.607537866, -0.794288456, -0.00182098511),CanCollide = false,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),})
  384. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  385. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00648400094, -0.794264138, -0.607538044, -0.00725199608, 0.607497454, -0.794288576, 0.999952734, 0.00955603179, -0.00182098674),C1 = CFrame.new(0.0260328054, 2.37291765, 0.438856125, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  386. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.612625897, 0.426897436, 0.292729437),CFrame = CFrame.new(-1.75839806, 30.6537457, -5.57217121, 0.00966499653, -0.00101799634, 0.999953151, -0.996664762, -0.0810445547, 0.00955071673, 0.0810309947, -0.996709764, -0.00179789262),CanCollide = false,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),})
  387. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  388. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00966499839, -0.996664762, 0.0810309798, -0.00101799483, -0.0810445324, -0.996709943, 0.999952853, 0.00955071207, -0.00179789495),C1 = CFrame.new(0.0263940096, 2.13479948, -0.525167465, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  389. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.76422894, 31.2536144, -6.01296425, -0.00765199633, -0.00608299766, 0.999952495, 0.659334719, 0.751788139, 0.0096188169, -0.75181061, 0.659376621, -0.00174194446),CanCollide = false,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),})
  390. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 1),})
  391. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00765199633, 0.659334719, -0.75181067, -0.00608299999, 0.75178802, 0.6593768, 0.999952257, 0.00961881224, -0.00174194609),C1 = CFrame.new(0.025470376, 2.33290911, 0.192417145, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  392. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.588786185, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.78562295, 32.8931236, -5.3239584, 0.00477199722, -0.00690699648, 0.999965072, -0.676711261, 0.736201644, 0.00831450801, -0.736232996, -0.676726878, -0.00116088497),CanCollide = false,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),})
  393. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.845478535, 1),})
  394. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00477200095, -0.676711202, -0.736233175, -0.00690699741, 0.736201644, -0.676726997, 0.999964774, 0.00831450149, -0.00116088777),C1 = CFrame.new(0.0288114548, 1.10489702, 1.47894287, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  395. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.411928505, 0.299382597, 0.2955015),CFrame = CFrame.new(-1.77294588, 32.1907921, -6.06731987, 0.00755899819, -0.0036310046, 0.999965131, -0.954157054, 0.299191356, 0.0082991356, -0.299210966, -0.954186141, -0.00120295805),CanCollide = false,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),})
  396. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  397. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00755900005, -0.954156995, -0.299210995, -0.00363100367, 0.299191415, -0.95418632, 0.999964893, 0.00829913002, -0.00120295968),C1 = CFrame.new(0.0282124281, 2.04976702, 1.08749008, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  398. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.811059, 32.0687828, -4.61931038, 0.0133890016, 0.00367399771, -0.999903917, -0.757691205, -0.652492821, -0.0125431996, -0.652475953, 0.757785916, -0.0059524728),CanCollide = false,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),})
  399. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  400. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0133890016, -0.757691145, -0.652476072, 0.00367399747, -0.652492821, 0.757785976, -0.999903619, -0.0125431921, -0.00595247187),C1 = CFrame.new(-0.00277340412, 0.739901066, 0.45791626, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  401. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.294393092, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.75514269, 30.2690182, -5.42400932, -0.00415499881, -0.00537799951, -0.999977291, -0.220970929, 0.975270867, -0.00432698289, 0.975271344, 0.220947713, -0.00524063315),CanCollide = false,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),})
  402. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.956361115, 1),})
  403. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00415499834, -0.220970899, 0.975271523, -0.0053780037, 0.975270808, 0.220947832, -0.999976993, -0.00432697637, -0.00524063129),C1 = CFrame.new(0.0256977081, 2.13344479, -0.937448502, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  404. Diamond = New("Part",Pickaxe,"Diamond",{BrickColor = BrickColor.new("Dark stone grey"),FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81039655, 32.1926079, -4.90793085, -0.99963057, 0.0234050639, -0.0138418116, -0.0211290121, -0.348159105, 0.937197447, 0.0171160009, 0.937143147, 0.348524779),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.388235, 0.372549, 0.384314),})
  405. SpecialMesh = New("SpecialMesh",Diamond,"Mesh",{Scale = Vector3.new(0.238397419, 0.443529814, 0.238397136),MeshId = "http://www.roblox.com/asset?id=160003363",MeshType = Enum.MeshType.FileMesh,})
  406. mot = New("Motor",Diamond,"mot",{Part0 = Diamond,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.999630332, -0.0211290065, 0.0171160065, 0.0234050583, -0.348159105, 0.937143326, -0.0138418134, 0.937197387, 0.348524868),C1 = CFrame.new(-0.00227987766, 0.965470791, 0.676441193, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  407. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Dark stone grey"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.444638878, 0.440757662, 0.200000003),CFrame = CFrame.new(-1.6639601, 31.5424519, -4.68392611, 0.00957699958, 0.00178400031, 0.999952853, -0.931990147, -0.362357199, 0.00957257673, 0.362356961, -0.932037413, -0.0018076204),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.388235, 0.372549, 0.384314),})
  408. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(1, 1, 0.936956406),MeshType = Enum.MeshType.Sphere,})
  409. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00957700051, -0.931990147, 0.36235702, 0.00178400241, -0.362357169, -0.932037652, 0.999952614, 0.00957257114, -0.00180762226),C1 = CFrame.new(0.137307286, 0.989244461, -0.0122337341, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  410. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.21289444, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.76203299, 31.2378254, -6.32144547, -0.00101500074, -0.00975999888, 0.999952137, -0.0764680207, 0.997025311, 0.00965382438, -0.997071326, -0.07645455, -0.00175830699),CanCollide = false,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),})
  411. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.27443409, 1),})
  412. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00101499958, -0.0764679611, -0.997071505, -0.00976000074, 0.997025311, -0.0764544755, 0.999951899, 0.00965381786, -0.0017583078),C1 = CFrame.new(0.0256232023, 2.62678432, 0.287559509, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  413. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.262237161, 0.525028408, 0.232852995),CFrame = CFrame.new(-1.78804767, 31.9689121, -4.67505169, 0.0609010272, 0.0798209831, -0.994947433, 0.444689095, -0.89457649, -0.0445490554, -0.893612146, -0.439728945, -0.0899761021),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  414. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  415. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.060901016, 0.444689125, -0.893612266, 0.0798209757, -0.89457649, -0.439729035, -0.994947135, -0.0445490479, -0.089976117),C1 = CFrame.new(0.0186467171, 0.82779026, 0.384246826, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  416. Diamond = New("Part",Pickaxe,"Diamond",{BrickColor = BrickColor.new("Black"),FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81811559, 32.1444969, -3.13540268, -0.999903381, 0.0100653954, 0.00961855333, -0.0125730075, -0.356142253, -0.934347093, -0.00597900199, -0.934377432, 0.356234193),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  417. SpecialMesh = New("SpecialMesh",Diamond,"Mesh",{Scale = Vector3.new(0.238397419, 0.443529814, 0.238397136),MeshId = "http://www.roblox.com/asset?id=160003363",MeshType = Enum.MeshType.FileMesh,})
  418. mot = New("Motor",Diamond,"mot",{Part0 = Diamond,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.999903142, -0.0125730019, -0.00597900106, 0.0100653954, -0.356142193, -0.934377551, 0.0096185552, -0.934347153, 0.356234252),C1 = CFrame.new(-5.12599945e-06, -0.673627377, -7.62939453e-06, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  419. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.352606326, 0.467923909, 0.467923731),CFrame = CFrame.new(-1.77106667, 31.7089367, -6.16475677, 0.0067249951, 0.0052860016, -0.99996376, -0.870629907, -0.491866112, -0.00845530443, -0.491892755, 0.870654583, 0.00129434885),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  420. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  421. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00672499835, -0.870629847, -0.491892874, 0.00528600113, -0.491866142, 0.870654762, -0.999963462, -0.00845529791, 0.0012943513),C1 = CFrame.new(0.0234504938, 2.31247234, 0.671983719, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  422. Diamond = New("Part",Pickaxe,"Diamond",{BrickColor = BrickColor.new("Dark stone grey"),FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.82559764, 32.7609901, -3.56482148, -0.999260068, 0.0383844748, -0.00251563778, -0.0364100039, -0.964903176, -0.260070056, -0.0124099962, -0.25978595, 0.965586305),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.388235, 0.372549, 0.384314),})
  423. SpecialMesh = New("SpecialMesh",Diamond,"Mesh",{Scale = Vector3.new(0.238397419, 0.443529814, 0.238397136),MeshId = "http://www.roblox.com/asset?id=160003363",MeshType = Enum.MeshType.FileMesh,})
  424. mot = New("Motor",Diamond,"mot",{Part0 = Diamond,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.999259889, -0.0364099964, -0.0124099981, 0.0383844711, -0.964903116, -0.25978604, -0.00251563638, -0.260070115, 0.965586483),C1 = CFrame.new(-0.00230276585, -0.492083073, 0.729070663, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  425. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.38753435, 0.772850573, 0.43798542),CFrame = CFrame.new(-1.75923777, 31.1216125, -5.68633795, 0.00841600262, -0.00197900645, -0.999962866, -0.930143416, 0.36709699, -0.00855490379, 0.367100179, 0.930180371, 0.00124872534),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  426. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  427. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00841600355, -0.930143416, 0.367100179, -0.00197900832, 0.367096931, 0.93018055, -0.999962628, -0.00855489727, 0.0012487279),C1 = CFrame.new(0.0307542086, 2.07479858, -0.0473442078, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  428. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.8125838, 32.0548973, -3.26460838, -0.0582529977, 0.081731014, -0.994950771, 0.985953867, 0.160980999, -0.0445023142, 0.156530887, -0.983567357, -0.0899605975),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  429. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.76231724, 0.986853838, 0.690242887),MeshType = Enum.MeshType.Sphere,})
  430. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.0582529865, 0.985953748, 0.156530961, 0.0817309991, 0.160981029, -0.983567536, -0.994950533, -0.0445023067, -0.0899606124),C1 = CFrame.new(0.00362718105, -0.520931721, -0.0377368927, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  431. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.200000003, 0.298273593),CFrame = CFrame.new(-1.75913668, 30.8681641, -5.82413244, -0.00916799903, 0.00311800418, 0.999953389, 0.989153206, -0.146578163, 0.0095260432, 0.146600991, 0.989194036, -0.00174035097),CanCollide = false,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),})
  432. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 1),})
  433. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00916800182, 0.989153206, 0.146601036, 0.00311800232, -0.146578208, 0.989194214, 0.99995321, 0.00952603761, -0.00174035283),C1 = CFrame.new(0.0268448591, 2.29383087, -0.235048294, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  434. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.321004689, 0.296610355),CFrame = CFrame.new(-1.7566129, 30.6201172, -5.81128502, -0.00557399867, 0.00793000497, 0.999953389, 0.713747323, -0.700338483, 0.00953256898, 0.700381041, 0.713766754, -0.00175633002),CanCollide = false,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),})
  435. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  436. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00557400193, 0.713747263, 0.700381219, 0.00793000497, -0.700338483, 0.713766873, 0.999953091, 0.00953256432, -0.00175633188),C1 = CFrame.new(0.0263265371, 2.37021208, -0.471405029, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  437. PHandle1 = New("CornerWedgePart",Pickaxe,"PHandle1",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.888168335, 0.200000003),CFrame = CFrame.new(-1.80973661, 31.8467255, -3.91189861, 0.999903381, 0.0100661954, -0.00961771607, 0.0125730075, -0.356220037, 0.934317529, 0.00597900199, -0.934347689, -0.356311977),CanCollide = false,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),})
  438. CylinderMesh = New("CylinderMesh",PHandle1,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.332647175),})
  439. mot = New("Motor",PHandle1,"mot",{Part0 = PHandle1,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),C1 = CFrame.new(-1.34706497e-05, 0.158046722, -0.00162696838, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  440. Wedge = New("WedgePart",Pickaxe,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.29605633, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.75644875, 30.5674706, -5.99486065, 0.999977052, -0.00635196781, 0.00250930618, 0.00427900488, 0.296337157, -0.955073953, 0.00532299932, 0.955062151, 0.296357363),CanCollide = false,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),})
  441. SpecialMesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.371456176, 0.504514813),MeshType = Enum.MeshType.Wedge,})
  442. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999976754, 0.00427899929, 0.00532299839, -0.0063519692, 0.296337128, 0.95506233, 0.00250930875, -0.955073893, 0.296357393),C1 = CFrame.new(0.0247311592, 2.56049061, -0.455184937, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  443. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81752193, 32.1165199, -3.19864964, 0.0112090018, -0.00963099487, -0.999891102, 0.356319964, 0.934350729, -0.0050052898, 0.934296548, -0.356224954, 0.0139048453),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  444. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.316015184, 0.762316883, 0.690242887),MeshType = Enum.MeshType.Sphere,})
  445. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0112089971, 0.356319904, 0.934296787, -0.00963099673, 0.934350669, -0.356224954, -0.999890864, -0.00500528514, 0.01390485),C1 = CFrame.new(-0.000141382217, -0.604560375, -0.00361824036, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  446. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.276097298, 0.200000003),CFrame = CFrame.new(-1.83263671, 31.696209, -4.48331785, 0.0103409979, -0.0998430178, -0.994949818, -0.936626852, 0.347477555, -0.0446041375, 0.350175947, 0.93235743, -0.0899223462),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  447. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.864883661, 1, 0.837162077),MeshType = Enum.MeshType.Sphere,})
  448. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0103409989, -0.936626852, 0.350175977, -0.0998429954, 0.347477555, 0.932357669, -0.99494952, -0.0446041301, -0.0899223685),C1 = CFrame.new(-0.0282202959, 0.745337486, 0.0615673065, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  449. Diamond = New("Part",Pickaxe,"Diamond",{BrickColor = BrickColor.new("Dark stone grey"),FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.82122362, 32.7416878, -4.25430632, -0.999363065, 0.0342264101, -0.0101248519, -0.0355810039, -0.932903647, 0.358364075, 0.00282000005, 0.358495861, 0.933526874),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.388235, 0.372549, 0.384314),})
  450. SpecialMesh = New("SpecialMesh",Diamond,"Mesh",{Scale = Vector3.new(0.238397419, 0.443529814, 0.238397136),MeshId = "http://www.roblox.com/asset?id=160003363",MeshType = Enum.MeshType.FileMesh,})
  451. mot = New("Motor",Diamond,"mot",{Part0 = Diamond,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.999362886, -0.0355809964, 0.00281999982, 0.0342264101, -0.932903647, 0.358495891, -0.0101248529, 0.358364016, 0.933527112),C1 = CFrame.new(-0.00229430199, 0.159056187, 0.956665039, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  452. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.46847865, 1.0378598, 0.289403051),CFrame = CFrame.new(-1.73165512, 31.0475578, -5.46646452, 0.00725699589, -0.00471299887, -0.999962866, -0.748481691, 0.663100243, -0.00855724886, 0.663115621, 0.748515785, 0.00128451886),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  453. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  454. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00725699728, -0.74848175, 0.66311574, -0.00471300213, 0.663100243, 0.748515844, -0.999962628, -0.00855724327, 0.00128452061),C1 = CFrame.new(0.0587177277, 1.89601755, -0.195142746, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  455. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.221765056, 0.221764907, 0.200000003),CFrame = CFrame.new(-1.80003762, 32.1809196, -4.50775051, 0.0568620302, 0.0827440098, -0.994947553, 0.488525122, -0.8714118, -0.0445506759, -0.870694995, -0.483523369, -0.0899727121),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  456. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(1, 1, 0.981309116),MeshType = Enum.MeshType.Sphere,})
  457. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0568620153, 0.488525122, -0.870695174, 0.0827439949, -0.87141186, -0.483523518, -0.994947314, -0.0445506684, -0.0899727345),C1 = CFrame.new(0.0103237629, 0.595830441, 0.52283287, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  458. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Dark stone grey"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.240060568, 0.230080932),CFrame = CFrame.new(-1.81491363, 32.2300758, -3.71325016, -0.0137450024, 0.0025110147, -0.999902666, 0.965489209, 0.260137141, -0.0126186833, 0.26008001, -0.965568364, -0.00599994371),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.388235, 0.372549, 0.384314),})
  459. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.557184637, 1, 1),MeshType = Enum.MeshType.Sphere,})
  460. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.0137450034, 0.965489209, 0.260080069, 0.00251101353, 0.260137171, -0.965568483, -0.999902487, -0.0126186777, -0.00599994324),C1 = CFrame.new(0.000817656517, -0.164169788, 0.285814285, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  461. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.431332946, 0.421353281, 0.238951579),CFrame = CFrame.new(-1.92526102, 31.5389118, -4.68787003, 0.00960099883, -0.00171999959, -0.999952734, -0.936644137, 0.350151241, -0.00959544163, 0.350150973, 0.936691523, 0.00175076944),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.239216, 0.0823529, 0.521569),})
  462. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  463. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0096010007, -0.936644137, 0.350151032, -0.00172000239, 0.350151181, 0.936691642, -0.999952495, -0.00959543698, 0.00175077119),C1 = CFrame.new(-0.124036312, 0.991560459, -0.0116233826, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  464. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.38753435, 0.344289988, 0.43798542),CFrame = CFrame.new(-1.74972188, 31.048214, -5.90162992, 0.00841600262, -0.00197900645, -0.999962866, -0.930143416, 0.36709699, -0.00855490379, 0.367100179, 0.930180371, 0.00124872534),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  465. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  466. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00841600355, -0.930143416, 0.367100179, -0.00197900832, 0.367096931, 0.93018055, -0.999962628, -0.00855489727, 0.0012487279),C1 = CFrame.new(0.0380591154, 2.30219746, -0.0393009186, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  467. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.223982707, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.82120979, 32.5010414, -3.82899642, 0.00505799754, 0.012969004, -0.99990344, 0.0692179501, -0.997522175, -0.0125879934, -0.997588575, -0.0691475272, -0.00594315538),CanCollide = false,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),})
  468. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  469. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00505799847, 0.0692179874, -0.997588754, 0.0129690059, -0.997522175, -0.0691476166, -0.999903142, -0.012587986, -0.00594315445),C1 = CFrame.new(-0.00276315212, -0.152608395, 0.580282211, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  470. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Dark stone grey"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.444638878, 0.440757662, 0.200000003),CFrame = CFrame.new(-1.92935801, 31.5382729, -4.68777704, 0.00960099883, -0.00171999959, -0.999952734, -0.936644137, 0.350151241, -0.00959544163, 0.350150973, 0.936691523, 0.00175076944),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.388235, 0.372549, 0.384314),})
  471. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(1, 1, 0.936956406),MeshType = Enum.MeshType.Sphere,})
  472. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0096010007, -0.936644137, 0.350151032, -0.00172000239, 0.350151181, 0.936691642, -0.999952495, -0.00959543698, 0.00175077119),C1 = CFrame.new(-0.12814045, 0.991660118, -0.0122146606, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  473. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Mulberry"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.40194881, 0.236179516),CFrame = CFrame.new(-1.66384292, 31.536911, -4.68223429, 0.00957699958, 0.00178400031, 0.999952853, -0.931990147, -0.362357199, 0.00957257673, 0.362356961, -0.932037413, -0.0018076204),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.34902, 0.133333, 0.34902),})
  474. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.462934494, 1, 1),MeshType = Enum.MeshType.Sphere,})
  475. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00957700051, -0.931990147, 0.36235702, 0.00178400241, -0.362357169, -0.932037652, 0.999952614, 0.00957257114, -0.00180762226),C1 = CFrame.new(0.137364984, 0.989638805, -0.0180149078, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  476. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.431332946, 0.421353281, 0.238951579),CFrame = CFrame.new(-1.66805279, 31.5429649, -4.68421268, 0.00957699958, 0.00178400031, 0.999952853, -0.931990147, -0.362357199, 0.00957257673, 0.362356961, -0.932037413, -0.0018076204),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.239216, 0.0823529, 0.521569),})
  477. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  478. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00957700051, -0.931990147, 0.36235702, 0.00178400241, -0.362357169, -0.932037652, 0.999952614, 0.00957257114, -0.00180762226),C1 = CFrame.new(0.133219719, 0.989288807, -0.0116138458, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  479. Wedge = New("WedgePart",Pickaxe,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.299382776, 0.273325264, 0.790036976),CFrame = CFrame.new(-1.77084768, 32.4999771, -6.21548796, 0.999976933, -0.00213676132, -0.00650518853, 0.00428700494, 0.936182559, 0.351488322, 0.00533899944, -0.351507783, 0.936169505),CanCollide = false,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),})
  480. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999976635, 0.00428699842, 0.00533899805, -0.00213676342, 0.936182559, -0.351507813, -0.00650518946, 0.351488233, 0.936169744),C1 = CFrame.new(0.0333118439, 2.07809019, 1.429142, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  481. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.335973978, 1.11048758, 0.523364842),CFrame = CFrame.new(-1.77636385, 31.4701843, -5.83880138, 0.00586299645, 0.00627600215, -0.999963224, -0.782944679, -0.622033358, -0.00849460158, -0.622063637, 0.782965541, 0.00126678124),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  482. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  483. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00586299784, -0.782944679, -0.622063756, 0.00627600215, -0.622033358, 0.782965541, -0.999963105, -0.00849459879, 0.00126678206),C1 = CFrame.new(0.017100811, 2.09291172, 0.3328228, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  484. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.253920972, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.82061899, 32.2025642, -3.30322504, -0.00445699692, 0.0132120047, -0.999903083, 0.695919693, -0.718009353, -0.0125892852, -0.718105674, -0.69590807, -0.00599432969),CanCollide = false,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),})
  485. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.50451529, 0.43798548),})
  486. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00445699878, 0.695919752, -0.718105733, 0.0132120047, -0.718009233, -0.695908248, -0.999902785, -0.0125892777, -0.0059943283),C1 = CFrame.new(-0.00278162956, -0.53753233, 0.11406517, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  487. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.205132559, 0.232852995),CFrame = CFrame.new(-1.80835581, 32.2670021, -4.35880613, 0.023149021, 0.0976919979, -0.994947672, 0.770254433, -0.636179149, -0.0445440263, -0.637316287, -0.765331507, -0.0899745822),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  488. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.632030368, 1, 1),MeshType = Enum.MeshType.Sphere,})
  489. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0231490135, 0.770254493, -0.637316346, 0.0976919755, -0.636179149, -0.765331626, -0.994947433, -0.0445440188, -0.0899745971),C1 = CFrame.new(0.00397932529, 0.425916672, 0.550270081, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  490. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.335973978, 0.53168124, 0.3614766),CFrame = CFrame.new(-1.76921618, 31.0324612, -5.51539421, 0.00808399823, -0.00306399912, -0.999962807, -0.873755097, 0.486291111, -0.00855375733, 0.486299038, 0.873791397, 0.00125398906),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  491. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  492. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00808400102, -0.873755097, 0.486299068, -0.00306400075, 0.486291021, 0.873791575, -0.999962628, -0.00855375268, 0.00125399081),C1 = CFrame.new(0.0206780434, 1.94673443, -0.191452026, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  493. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81527555, 32.2868233, -4.3725915, 0.011862997, 0.00723499525, -0.999903738, -0.548807025, -0.835854769, -0.0125591233, -0.835864723, 0.548902869, -0.00594512699),CanCollide = false,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),})
  494. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  495. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0118629979, -0.548806965, -0.835864902, 0.00723499665, -0.835854769, 0.548902988, -0.9999035, -0.0125591159, -0.00594512699),C1 = CFrame.new(-0.00277304649, 0.431667328, 0.573766708, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  496. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.654206812, 0.695232928, 0.418581039),CFrame = CFrame.new(-1.79589975, 31.5425625, -4.69207621, 0.00960099883, -0.00171999959, -0.999952734, -0.936644137, 0.350151241, -0.00959544163, 0.350150973, 0.936691523, 0.00175076944),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  497. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  498. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0096010007, -0.936644137, 0.350151032, -0.00172000239, 0.350151181, 0.936691642, -0.999952495, -0.00959543698, 0.00175077119),C1 = CFrame.new(0.0053331852, 0.995491982, -0.0079574585, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  499. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.221765056, 0.221764907, 0.232852995),CFrame = CFrame.new(-1.82135999, 32.4425392, -3.6187768, 0.0568620302, 0.0827440098, -0.994947553, 0.488525122, -0.8714118, -0.0445506759, -0.870694995, -0.483523369, -0.0899727121),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  500. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  501. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0568620153, 0.488525122, -0.870695174, 0.0827439949, -0.87141186, -0.483523518, -0.994947314, -0.0445506684, -0.0899727345),C1 = CFrame.new(-0.0023920536, -0.328188419, 0.450719833, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  502. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.205132559, 0.232852995),CFrame = CFrame.new(-1.79657257, 32.2620201, -4.46405602, -0.0212329924, 0.0981050655, -0.994949877, 0.969234645, -0.242072672, -0.0445533209, -0.2452209, -0.96528548, -0.089946866),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  503. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.632030368, 1, 1),MeshType = Enum.MeshType.Sphere,})
  504. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.0212329924, 0.969234645, -0.245220914, 0.0981050357, -0.242072612, -0.965285599, -0.994949579, -0.0445533097, -0.0899468809),C1 = CFrame.new(0.0150694847, 0.526150227, 0.583003998, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  505. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.335973978, 0.53168124, 0.3614766),CFrame = CFrame.new(-1.70135236, 31.1749172, -5.19812536, 0.0276130103, -0.223017037, -0.974423707, -0.91162926, 0.394283175, -0.116073444, 0.410085052, 0.891517818, -0.192421436),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  506. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  507. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0276130065, -0.91162926, 0.410085082, -0.223016992, 0.394283146, 0.891517937, -0.974423468, -0.116073422, -0.192421466),C1 = CFrame.new(0.0922232866, 1.60023212, -0.172052383, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  508. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.588786185, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.77283573, 32.0897827, -5.77067566, 0.00834199693, -0.000787001103, 0.999965072, -0.99894619, -0.0451431572, 0.00829797704, 0.045135051, -0.998980045, -0.00116275309),CanCollide = false,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),})
  509. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.845478535, 1),})
  510. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00834200066, -0.99894613, 0.0451350026, -0.000786999299, -0.0451431163, -0.998980224, 0.999964893, 0.00829797238, -0.00116275379),C1 = CFrame.new(0.0288261175, 1.8085804, 0.88741684, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  511. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Fawn brown"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.80806303, 31.7885323, -4.06832027, 0.999903381, 0.0100661954, -0.00961771607, 0.0125730075, -0.356220037, 0.934317529, 0.00597900199, -0.934347689, -0.356311977),CanCollide = false,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.627451, 0.517647, 0.309804),})
  512. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  513. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),C1 = CFrame.new(-6.91413879e-06, 0.324944973, -0.0002784729, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  514. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.30215469, 0.232852995),CFrame = CFrame.new(-1.80275989, 32.5441933, -3.86777425, 0.0414460078, 0.0788750425, -0.99602282, -0.999057174, 0.0161733627, -0.0402915105, 0.0129310489, 0.996753097, 0.0794709399),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  515. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.795581996, 1, 1),MeshType = Enum.MeshType.Sphere,})
  516. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0414460041, -0.999057114, 0.0129310014, 0.0788750127, 0.0161733236, 0.996753335, -0.996022642, -0.0402915105, 0.0794709623),C1 = CFrame.new(0.0159956217, -0.131562233, 0.634239197, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  517. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.207350284, 0.360922396, 0.232852995),CFrame = CFrame.new(-1.7936821, 32.4622612, -3.82131338, 0.00338299526, 0.0890940055, -0.996017754, -0.908452809, -0.416040182, -0.040300481, -0.417973787, 0.904971004, 0.0795302093),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  518. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  519. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00338299922, -0.908452749, -0.417973906, 0.0890939906, -0.416040272, 0.904971182, -0.996017516, -0.040300481, 0.0795302168),C1 = CFrame.new(0.0243202448, -0.145696163, 0.54104805, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  520. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.46847865, 1.0378598, 0.3614766),CFrame = CFrame.new(-1.77879477, 31.382906, -5.24710369, 0.00808399823, -0.00306399912, -0.999962807, -0.873755097, 0.486291111, -0.00855375733, 0.486299038, 0.873791397, 0.00125398906),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  521. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  522. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00808400102, -0.873755097, 0.486299068, -0.00306400075, 0.486291021, 0.873791575, -0.999962628, -0.00855375268, 0.00125399081),C1 = CFrame.new(0.0171105862, 1.57112646, 0.0404701233, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  523. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.352606326, 0.442975342, 0.43798542),CFrame = CFrame.new(-1.74173701, 30.4485588, -5.90351343, 0.00750599615, -0.00427199155, -0.999962986, -0.784942746, 0.619509518, -0.00853864383, 0.61952281, 0.784977436, 0.00129676366),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  524. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  525. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00750599802, -0.784942806, 0.61952287, -0.00427199481, 0.619509459, 0.784977615, -0.999962747, -0.00853863824, 0.00129676517),C1 = CFrame.new(0.0384925604, 2.51764727, -0.598976135, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  526. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81690407, 32.1285439, -3.18034601, 0.0112090018, -0.00963099487, -0.999891102, 0.356319964, 0.934350729, -0.0050052898, 0.934296548, -0.356224954, 0.0139048453),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  527. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.418581516, 0.543324053, 0.60153693),MeshType = Enum.MeshType.Sphere,})
  528. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0112089971, 0.356319904, 0.934296787, -0.00963099673, 0.934350669, -0.356224954, -0.999890864, -0.00500528514, 0.01390485),C1 = CFrame.new(0.000737071037, -0.625939846, 0.00108909607, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  529. Wedge = New("WedgePart",Pickaxe,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.299382776, 0.273325264, 0.790036976),CFrame = CFrame.new(-1.76283896, 31.9762363, -6.45009184, 0.999976575, -0.00099406857, -0.00680967513, 0.00432000635, 0.860934258, 0.508697867, 0.00535700284, -0.508715093, 0.860918105),CanCollide = false,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),})
  530. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999976337, 0.00432000123, 0.00535700191, -0.000994072761, 0.860934317, -0.508715153, -0.00680967653, 0.508697808, 0.860918283),C1 = CFrame.new(0.0333321095, 2.48394012, 1.02331543, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  531. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.298273921, 1.01346552, 0.504514873),CFrame = CFrame.new(-1.75029719, 30.6825905, -5.70791864, 0.00644800067, -0.00568799675, -0.999963343, -0.644914985, 0.764207006, -0.00850554276, 0.764226913, 0.64494586, 0.00125932798),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  532. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  533. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00644800114, -0.644915044, 0.764227092, -0.00568799954, 0.764206946, 0.644946039, -0.999963105, -0.00850553624, 0.00125933054),C1 = CFrame.new(0.0340451002, 2.251441, -0.449926376, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  534. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.436322749, 0.266117901, 0.2955015),CFrame = CFrame.new(-1.76507568, 31.2901592, -5.86280918, -0.00955399871, -0.00236099656, 0.999951959, 0.912278175, 0.409457028, 0.00968310703, -0.409460068, 0.912326157, -0.00175806205),CanCollide = false,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),})
  535. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  536. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00955400057, 0.912278116, -0.409460068, -0.00236099935, 0.409456998, 0.912326336, 0.999951661, 0.00968310144, -0.00175806461),C1 = CFrame.new(0.0259809494, 2.17958593, 0.173067093, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  537. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.262237161, 0.525028408, 0.232852995),CFrame = CFrame.new(-1.81935787, 32.4319496, -4.1259222, -0.00483099604, 0.100255027, -0.994950294, 0.916245818, -0.398130476, -0.0445660055, -0.400587857, -0.911833704, -0.0899348184),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  538. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  539. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.0048309979, 0.916245699, -0.400587857, 0.100255013, -0.398130447, -0.911833942, -0.994950056, -0.0445660017, -0.0899348408),C1 = CFrame.new(-0.00355541706, 0.14945364, 0.621509552, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  540. Wedge = New("WedgePart",Pickaxe,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.295501947, 0.212339923, 0.28053242),CFrame = CFrame.new(-1.75537217, 30.1022911, -5.14964104, 0.999976993, 0.00681938836, -0.000258141197, 0.00433200551, -0.605095029, 0.796141446, 0.00527299894, -0.796123981, -0.605110407),CanCollide = false,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),})
  541. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999976754, 0.00433199899, 0.00527299847, 0.00681939069, -0.605095029, -0.796124101, -0.000258143788, 0.796141446, -0.605110466),C1 = CFrame.new(0.0250124931, 1.93647861, -1.19098282, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  542. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81895304, 32.0981712, -3.27716136, 0.112133034, 0.0827199742, -0.990244448, 0.490235031, -0.871418953, -0.0172808133, -0.864346921, -0.483514488, -0.138267025),CanCollide = false,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),})
  543. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(0.454618335, 0.665294766, 0.43798548),})
  544. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.112133011, 0.49023506, -0.8643471, 0.0827199593, -0.871419013, -0.483514667, -0.99024421, -0.0172807984, -0.13826704),C1 = CFrame.new(-0.00227248669, -0.524681568, 0.00722694397, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  545. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.262237161, 0.525028408, 0.232852995),CFrame = CFrame.new(-1.82166195, 32.3421669, -3.45716071, 0.0945980549, -0.033418037, -0.994954765, -0.714951277, -0.697754264, -0.0445401669, -0.69274509, 0.715557396, -0.0898984298),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  546. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  547. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.09459804, -0.714951217, -0.692745209, -0.0334180295, -0.697754264, 0.715557456, -0.994954526, -0.044540152, -0.0898984373),C1 = CFrame.new(-0.00298953056, -0.443442822, 0.299358368, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  548. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.809996724, 0.406938583, 0.2955015),CFrame = CFrame.new(-1.76832592, 31.6706047, -5.84999847, 0.00834499765, 0.000647000852, 0.99996525, -0.975922108, -0.217962354, 0.00828538742, 0.21796003, -0.975956857, -0.00118746923),CanCollide = false,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),})
  549. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  550. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00834500045, -0.975922108, 0.21796003, 0.000647002424, -0.21796231, -0.975957036, 0.999965012, 0.00828538183, -0.00118747156),C1 = CFrame.new(0.0275909901, 2.0320611, 0.523990631, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  551. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81906879, 32.4456291, -4.07270193, 0.0103339972, 0.00930899475, -0.99990344, -0.385947973, -0.922434926, -0.0125765484, -0.922462583, 0.386040568, -0.00593965175),CanCollide = false,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),})
  552. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  553. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0103339972, -0.385947913, -0.922462761, 0.00930899568, -0.922434926, 0.386040568, -0.999903262, -0.0125765428, -0.00593965128),C1 = CFrame.new(-0.00277614594, 0.0948572159, 0.615325928, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  554. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.411928505, 0.299382597, 0.2955015),CFrame = CFrame.new(-1.77786672, 32.5068321, -5.90746164, 0.00585799525, -0.00599399582, 0.999965131, -0.79426688, 0.607512474, 0.00829453859, -0.607540727, -0.794287443, -0.00120202382),CanCollide = false,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),})
  555. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  556. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00585799851, -0.79426682, -0.607540905, -0.00599399675, 0.607512534, -0.794287562, 0.999964893, 0.00829453301, -0.00120202545),C1 = CFrame.new(0.0282213688, 1.78777456, 1.32585907, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  557. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Dark stone grey"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.240060568, 0.230080932),CFrame = CFrame.new(-1.81276691, 32.2251701, -4.06156969, -0.00963199325, 0.0101080043, -0.999902844, 0.933506608, -0.358338356, -0.0126148518, -0.358430803, -0.933537006, -0.00598437618),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.388235, 0.372549, 0.384314),})
  558. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.557184637, 1, 1),MeshType = Enum.MeshType.Sphere,})
  559. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00963199511, 0.933506608, -0.358430833, 0.0101080043, -0.358338267, -0.933537185, -0.999902546, -0.0126148453, -0.00598437525),C1 = CFrame.new(0.000819802284, 0.163051605, 0.405319214, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  560. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Dark stone grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.449073941, 0.200000003),CFrame = CFrame.new(-1.81674659, 32.4761734, -4.15410948, -0.999902725, -0.00963577442, 0.0101008741, -0.0126159992, 0.933496118, -0.358365595, -0.00597599708, -0.358458042, -0.933526516),CanCollide = false,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.388235, 0.372549, 0.384314),})
  561. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.554411948),})
  562. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.999902546, -0.0126159946, -0.00597599708, -0.00963577535, 0.933496118, -0.358458042, 0.0101008741, -0.358365506, -0.933526695),C1 = CFrame.new(-0.000556945801, 0.160063267, 0.672847748, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  563. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Fawn brown"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81146264, 31.9089794, -3.75403166, 0.999903381, 0.0100661954, -0.00961771607, 0.0125730075, -0.356220037, 0.934317529, 0.00597900199, -0.934347689, -0.356311977),CanCollide = false,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.627451, 0.517647, 0.309804),})
  564. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  565. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),C1 = CFrame.new(-1.2755394e-05, -0.0116496086, 0.000305175781, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  566. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.352606326, 0.467923909, 0.467923731),CFrame = CFrame.new(-1.76975214, 31.6212082, -6.20187044, 0.00848300289, -0.000317997532, -0.999964297, -0.98310858, 0.182831094, -0.00839816127, 0.182827115, 0.983144164, 0.00123832619),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  567. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  568. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00848300476, -0.98310858, 0.1828271, -0.000317999627, 0.182831004, 0.983144343, -0.999963999, -0.00839815661, 0.00123832806),C1 = CFrame.new(0.0234400034, 2.3784132, 0.603229523, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  569. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.221764907, 0.200000003),CFrame = CFrame.new(-1.81623065, 32.0774117, -3.31678009, 0.0568620302, 0.0827440098, -0.994947553, 0.488525122, -0.8714118, -0.0445506759, -0.870694995, -0.483523369, -0.0899727121),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  570. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.690242887),MeshType = Enum.MeshType.Sphere,})
  571. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0568620153, 0.488525122, -0.870695174, 0.0827439949, -0.87141186, -0.483523518, -0.994947314, -0.0445506684, -0.0899727345),C1 = CFrame.new(-4.82797623e-05, -0.480241299, 0.00192070007, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  572. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.76363707, 31.1249161, -5.84471655, -0.00969300326, 1.30053377e-05, 0.99995333, 0.983969569, 0.178081647, 0.00953575876, -0.178073093, 0.984015524, -0.00173893943),CanCollide = false,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. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 1),})
  574. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00969300512, 0.983969569, -0.178073108, 1.30034614e-05, 0.178081587, 0.984015703, 0.999953091, 0.0095357541, -0.00173894106),C1 = CFrame.new(0.0254499912, 2.22155857, 0.012216568, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  575. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Mulberry"),Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.40194881, 0.236179516),CFrame = CFrame.new(-1.92937386, 31.53302, -4.68534088, 0.00960099883, -0.00171999959, -0.999952734, -0.936644137, 0.350151241, -0.00959544163, 0.350150973, 0.936691523, 0.00175076944),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.34902, 0.133333, 0.34902),})
  576. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.462934494, 1, 1),MeshType = Enum.MeshType.Sphere,})
  577. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0096010007, -0.936644137, 0.350151032, -0.00172000239, 0.350151181, 0.936691642, -0.999952495, -0.00959543698, 0.00175077119),C1 = CFrame.new(-0.128207684, 0.991254807, -0.0179901123, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  578. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Fawn brown"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81260097, 31.9488773, -3.64938688, 0.999903381, 0.0100661954, -0.00961771607, 0.0125730075, -0.356220037, 0.934317529, 0.00597900199, -0.934347689, -0.356311977),CanCollide = false,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.627451, 0.517647, 0.309804),})
  579. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  580. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),C1 = CFrame.new(-2.36034393e-05, -0.123648167, 0.00030708313, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  581. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.80590093, 31.8045864, -4.71316528, -0.0192290097, 0.0865380242, -0.996063232, -0.999066889, 0.0368719697, 0.0224904176, 0.0386730134, 0.995565832, 0.085748218),CanCollide = false,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),})
  582. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  583. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.0192289986, -0.999066889, 0.0386729948, 0.0865380019, 0.0368718877, 0.99556601, -0.996062994, 0.0224904194, 0.0857482404),C1 = CFrame.new(-0.00149869919, 0.921757698, 0.244466782, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  584. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.411928505, 0.299382597, 0.2955015),CFrame = CFrame.new(-1.76997805, 31.8171196, -6.1477704, 0.008072, -0.00221000379, 0.99996531, -0.991612315, 0.128982216, 0.00828964449, -0.128995985, -0.991644382, -0.00115031842),CanCollide = false,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. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  586. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00807200279, -0.991612375, -0.128996044, -0.00221000263, 0.128982231, -0.991644502, 0.999965012, 0.00828963798, -0.00115032087),C1 = CFrame.new(0.0260007381, 2.25807524, 0.766998291, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  587. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81596994, 32.0340157, -3.26413608, 0.999902844, -0.00960779004, -0.0101329545, 0.0125870006, 0.934348106, 0.356139243, 0.00604599807, -0.356232017, 0.934377789),CanCollide = false,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),})
  588. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.554412603, 0.573816895, 0.554411948),})
  589. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999902546, 0.0125869941, 0.00604599714, -0.00960779283, 0.934348226, -0.356232077, -0.0101329563, 0.356139213, 0.934378028),C1 = CFrame.new(-1.83582306e-05, -0.513968945, -0.0573825836, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  590. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Fawn brown"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.80918682, 31.8284779, -3.96367049, 0.999903381, 0.0100661954, -0.00961771607, 0.0125730075, -0.356220037, 0.934317529, 0.00597900199, -0.934347689, -0.356311977),CanCollide = false,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.627451, 0.517647, 0.309804),})
  591. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  592. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),C1 = CFrame.new(-2.74181366e-06, 0.212925434, -0.000234603882, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  593. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Fawn brown"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.8069191, 31.7486629, -4.17295742, 0.999903381, 0.0100661954, -0.00961771607, 0.0125730075, -0.356220037, 0.934317529, 0.00597900199, -0.934347689, -0.356311977),CanCollide = false,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.627451, 0.517647, 0.309804),})
  594. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  595. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),C1 = CFrame.new(1.00135803e-05, 0.436926842, -0.000257492065, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  596. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Fawn brown"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81033707, 31.8690796, -3.85869503, 0.999903381, 0.0100661954, -0.00961771607, 0.0125730075, -0.356220037, 0.934317529, 0.00597900199, -0.934347689, -0.356311977),CanCollide = false,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.627451, 0.517647, 0.309804),})
  597. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  598. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),C1 = CFrame.new(-1.46627426e-05, 0.100367069, 0.00030708313, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  599. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.588786185, 0.299382597, 0.2955015),CFrame = CFrame.new(-1.78345108, 32.850193, -5.57960033, 0.00477199722, -0.00690699648, 0.999965072, -0.676711261, 0.736201644, 0.00831450801, -0.736232996, -0.676726878, -0.00116088497),CanCollide = false,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),})
  600. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  601. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00477200095, -0.676711202, -0.736233175, -0.00690699741, 0.736201644, -0.676726997, 0.999964774, 0.00831450149, -0.00116088777),C1 = CFrame.new(0.0289149284, 1.35906982, 1.5298996, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  602. Diamond = New("Part",Pickaxe,"Diamond",{BrickColor = BrickColor.new("Black"),FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81484687, 31.9254684, -3.2227335, -0.999902725, -0.00965976994, 0.010077931, -0.0126159992, 0.934345722, -0.356144518, -0.00597599708, -0.356236875, -0.934376419),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  603. SpecialMesh = New("SpecialMesh",Diamond,"Mesh",{Scale = Vector3.new(0.238397419, 0.443529814, 0.238397136),MeshId = "http://www.roblox.com/asset?id=160003363",MeshType = Enum.MeshType.FileMesh,})
  604. mot = New("Motor",Diamond,"mot",{Part0 = Diamond,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.999902546, -0.0126159946, -0.00597599708, -0.00965977274, 0.934345782, -0.356236905, 0.010077931, -0.356144458, -0.934376597),C1 = CFrame.new(-1.26361847e-05, -0.513974667, -0.173564911, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  605. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Dark stone grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.449073941, 0.200000003),CFrame = CFrame.new(-1.80898464, 32.0921288, -4.64244127, -0.999903142, 0.00120523805, 0.0138851367, -0.0125940051, 0.348607928, -0.937184036, -0.00596999889, -0.93726778, -0.348558754),CanCollide = false,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.388235, 0.372549, 0.384314),})
  606. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.554411948),})
  607. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.999902904, -0.0125939976, -0.00596999889, 0.00120523782, 0.348607957, -0.9372679, 0.0138851386, -0.937184036, -0.348558873),C1 = CFrame.new(-0.000544071198, 0.753217697, 0.487951279, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  608. Wedge = New("WedgePart",Pickaxe,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.299382776, 0.273325264, 0.790036976),CFrame = CFrame.new(-1.7788887, 32.9529457, -5.82411957, 0.999976695, -0.00327050639, -0.00603597751, 0.00432300754, 0.982998192, 0.183565289, 0.00533300266, -0.183587015, 0.982988954),CanCollide = false,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),})
  609. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999976456, 0.00432300195, 0.00533300219, -0.00327051012, 0.982998133, -0.183587015, -0.00603597797, 0.183565229, 0.982989073),C1 = CFrame.new(0.0333068371, 1.55097866, 1.71298599, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  610. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Dark stone grey"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.449073941, 0.200000003),CFrame = CFrame.new(-1.81996572, 32.4874306, -3.64019895, -0.999902666, -0.0137503631, 0.00249310164, -0.0126290107, 0.965510607, 0.260057718, -0.00598300295, 0.260000765, -0.965589762),CanCollide = false,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.388235, 0.372549, 0.384314),})
  611. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.554411948),})
  612. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.999902368, -0.0126290042, -0.00598300248, -0.0137503641, 0.965510547, 0.260000885, 0.00249310024, 0.260057747, -0.965589941),C1 = CFrame.new(-0.000561475754, -0.324150562, 0.500284195, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  613. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Dark stone grey"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.240060568, 0.230080932),CFrame = CFrame.new(-1.80789268, 31.9955158, -4.39297295, 0.00121899927, 0.013887004, -0.999903142, 0.348599046, -0.937187433, -0.0125910118, -0.937270999, -0.348549783, -0.0059834281),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.388235, 0.372549, 0.384314),})
  614. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.557184637, 1, 1),MeshType = Enum.MeshType.Sphere,})
  615. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0012190002, 0.348599076, -0.937271237, 0.013887004, -0.937187374, -0.348549843, -0.999902904, -0.0125910062, -0.0059834281),C1 = CFrame.new(0.000824689865, 0.554553509, 0.308786392, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  616. Wedge = New("WedgePart",Pickaxe,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.295501947, 0.200000003, 0.321558952),CFrame = CFrame.new(-1.76261199, 31.3002605, -6.47133064, 0.999976933, -0.00213676132, -0.00650518853, 0.00428700494, 0.936182559, 0.351488322, 0.00533899944, -0.351507783, 0.936169505),CanCollide = false,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),})
  617. SpecialMesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.878743529, 1),MeshType = Enum.MeshType.Wedge,})
  618. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999976635, 0.00428699842, 0.00533899805, -0.00213676342, 0.936182559, -0.351507813, -0.00650518946, 0.351488233, 0.936169744),C1 = CFrame.new(0.0249330997, 2.74458313, 0.399305344, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  619. Wedge = New("WedgePart",Pickaxe,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.29605633, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.75579786, 30.551239, -6.06983376, -0.999977112, 0.00630586641, 0.00255153282, -0.00430500554, -0.29621613, -0.955111325, -0.00526699983, -0.95510006, 0.296236366),CanCollide = false,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),})
  620. SpecialMesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.399176806, 0.468478054),MeshType = Enum.MeshType.Wedge,})
  621. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.999976873, -0.00430499949, -0.00526699936, 0.00630586781, -0.296216071, -0.955100238, 0.00255153584, -0.955111325, 0.296236366),C1 = CFrame.new(0.0247296095, 2.63633013, -0.44364357, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  622. Wedge = New("WedgePart",Pickaxe,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.299382776, 0.273325264, 0.790036976),CFrame = CFrame.new(-1.78626871, 33.1686516, -5.04497147, -0.999977112, -0.00219468726, 0.00644471543, -0.00432000449, 0.936180592, -0.35149318, -0.00526200049, -0.35151279, -0.936168194),CanCollide = false,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),})
  623. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.999976873, -0.00431999937, -0.00526199955, -0.00219468982, 0.936180592, -0.35151282, 0.00644471683, -0.35149312, -0.936168373),C1 = CFrame.new(0.0332981348, 0.746070385, 1.63697433, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  624. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Fawn brown"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.80579162, 31.708807, -4.27758646, 0.999903381, 0.0100661954, -0.00961771607, 0.0125730075, -0.356220037, 0.934317529, 0.00597900199, -0.934347689, -0.356311977),CanCollide = false,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.627451, 0.517647, 0.309804),})
  625. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  626. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),C1 = CFrame.new(1.06096268e-05, 0.548895359, -0.000225067139, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  627. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.335973978, 0.53168124, 0.3614766),CFrame = CFrame.new(-1.8304987, 31.2562962, -5.01077843, 0.00808399823, -0.00306399912, -0.999962807, -0.873755097, 0.486291111, -0.00855375733, 0.486299038, 0.873791397, 0.00125398906),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  628. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  629. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00808400102, -0.873755097, 0.486299068, -0.00306400075, 0.486291021, 0.873791575, -0.999962628, -0.00855375268, 0.00125399081),C1 = CFrame.new(-0.0347671509, 1.39489651, -0.161531448, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  630. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.223982707, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.82189596, 32.4591484, -3.63068938, 0.00137600023, 0.0138759948, -0.999902964, 0.338903993, -0.94073683, -0.0125885569, -0.94081986, -0.338853627, -0.00599708362),CanCollide = false,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),})
  631. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  632. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.001376, 0.338903993, -0.940819979, 0.0138759967, -0.94073683, -0.338853717, -0.999902785, -0.0125885513, -0.00599708362),C1 = CFrame.new(-0.00279033184, -0.322980404, 0.470489502, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  633. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.200000003, 0.276097298, 0.200000003),CFrame = CFrame.new(-1.795856, 31.6686916, -4.36198854, 0.0103409979, -0.0998430178, -0.994949818, -0.936626852, 0.347477555, -0.0446041375, 0.350175947, 0.93235743, -0.0899223462),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  634. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.864883661, 1, 0.837162077),MeshType = Enum.MeshType.Sphere,})
  635. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.0103409989, -0.936626852, 0.350175977, -0.0998429954, 0.347477555, 0.932357669, -0.99494952, -0.0446041301, -0.0899223685),C1 = CFrame.new(0.00893628597, 0.642146587, -0.00772857666, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  636. Block = New("Part",Pickaxe,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.38753435, 0.502851903, 0.289403051),CFrame = CFrame.new(-1.83827579, 31.2263508, -5.29786491, 0.00725699589, -0.00471299887, -0.999962866, -0.748481691, 0.663100243, -0.00855724886, 0.663115621, 0.748515785, 0.00128451886),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  637. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  638. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.00725699728, -0.74848175, 0.66311574, -0.00471300213, 0.663100243, 0.748515844, -0.999962628, -0.00855724327, 0.00128452061),C1 = CFrame.new(-0.044636488, 1.67372417, -0.0871429443, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  639. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81330204, 32.1318245, -3.27552676, -0.181227103, 0.0115948608, -0.983373284, 0.843101382, -0.512954533, -0.161424458, -0.506297112, -0.858337402, 0.0831855834),CanCollide = false,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),})
  640. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(0.338191748, 0.665294766, 0.43798548),})
  641. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.181227058, 0.843101323, -0.506297171, 0.0115948617, -0.512954473, -0.858337581, -0.983372986, -0.161424458, 0.0831855908),C1 = CFrame.new(0.00381088257, -0.53813982, 0.0380325317, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  642. CornerWedge = New("CornerWedgePart",Pickaxe,"CornerWedge",{BrickColor = BrickColor.new("Fawn brown"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-1.81370962, 31.9887505, -3.54473925, 0.999903381, 0.0100661954, -0.00961771607, 0.0125730075, -0.356220037, 0.934317529, 0.00597900199, -0.934347689, -0.356311977),CanCollide = false,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.627451, 0.517647, 0.309804),})
  643. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  644. mot = New("Motor",CornerWedge,"mot",{Part0 = CornerWedge,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),C1 = CFrame.new(-5.12599945e-06, -0.235640049, 0.000284194946, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  645. Block = New("Part",Pickaxe,"Block",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.354824066, 0.200000003, 0.2955015),CFrame = CFrame.new(-1.76427996, 31.2220135, -5.94033146, -0.00891800504, -0.00408200081, 0.999952137, 0.820878386, 0.571021497, 0.00965198129, -0.571033359, 0.820924759, -0.00174154225),CanCollide = false,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),})
  646. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 1),})
  647. mot = New("Motor",Block,"mot",{Part0 = Block,Part1 = PHandle,C0 = CFrame.new(0, 0, 0, -0.00891800597, 0.820878446, -0.571033359, -0.00408200361, 0.571021438, 0.820924997, 0.999951899, 0.00965197477, -0.00174154423),C1 = CFrame.new(0.0254563093, 2.27630091, 0.137012482, 0.999903142, 0.0125730019, 0.00597900106, 0.0100661963, -0.356219977, -0.934347868, -0.00961771701, 0.934317529, -0.356312007),})
  648.  
  649.  
  650. CorruptionBlade = New("Model",Char,"CorruptionBlade",{})
  651. Handle = New("Part",CorruptionBlade,"Handle",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Granite,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.4539988, 0.189651936, 0.189651981),CFrame = CFrame.new(-4.35911369, 35.0252037, -3.87697816, 0.0186979976, 0.999775052, 0.0100419438, 0.0320020132, -0.0106370011, 0.999431551, 0.999313056, -0.0183660053, -0.0321936756),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.239216, 0.0823529, 0.521569),})
  652. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.316086829, 0.31608656, 0.31608668),CFrame = CFrame.new(-4.38159704, 34.9867363, -5.07740021, 0.0186979994, 0.99977541, 0.0100419484, 0.0320020318, -0.0106370049, 0.999432147, 0.999313176, -0.0183660127, -0.0321936794),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  653. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0186979976, 0.032002002, 0.999312937, 0.999774933, -0.0106369993, -0.0183660034, 0.0100419428, 0.999431551, -0.0321936831),C1 = CFrame.new(-1.20124865, -2.19345093e-05, -2.67028809e-05, 0.0186979976, 0.032002002, 0.999312937, 0.999774933, -0.0106369993, -0.0183660034, 0.0100419419, 0.999431431, -0.0321936794),})
  654. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.150000215, 0.150000304),CFrame = CFrame.new(-4.35479546, 34.4171181, -3.33032179, -0.999798536, -0.0177630354, -0.00940468628, 0.00997000653, -0.0320100226, -0.999438584, 0.0174520127, -0.999330044, 0.0321806259),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),})
  655. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999798119, 0.00997000095, 0.0174520034, -0.0177630316, -0.0320099965, -0.999329805, -0.00940468069, -0.999438047, 0.0321806259),C1 = CFrame.new(0.526901484, 0.000745773315, -0.625293732, 0.0186979976, 0.032002002, 0.999312937, 0.999774933, -0.0106369993, -0.0183660034, 0.0100419419, 0.999431431, -0.0321936794),})
  656. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.310363442),CFrame = CFrame.new(-4.2850771, 35.4126625, -0.503765821, 0.999776006, 0.0186650418, -0.0100429803, -0.0106370104, 0.0320040472, -0.999432087, -0.0183330216, 0.999313712, 0.0321953706),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.239216, 0.0823529, 0.521569),})
  657. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999775529, -0.0106370049, -0.0183330104, 0.0186650399, 0.0320040211, 0.999313474, -0.0100429747, -0.999431491, 0.0321953706),C1 = CFrame.new(3.38467765, 0.0079460144, 0.279384613, 0.0186979976, 0.032002002, 0.999312937, 0.999774933, -0.0106369993, -0.0183660034, 0.0100419419, 0.999431431, -0.0321936794),})
  658. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.124145165, 0.186217993),CFrame = CFrame.new(-4.30486393, 35.3178215, -1.52535057, 0.999776006, 0.0186650418, -0.0100429803, -0.0106370104, 0.0320040472, -0.999432087, -0.0183330216, 0.999313712, 0.0321953706),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.239216, 0.0823529, 0.521569),})
  659. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999775529, -0.0106370049, -0.0183330104, 0.0186650399, 0.0320040211, 0.999313474, -0.0100429747, -0.999431491, 0.0321953706),C1 = CFrame.new(2.36039019, 0.00793504715, 0.217288971, 0.0186979976, 0.032002002, 0.999312937, 0.999774933, -0.0106369993, -0.0183660034, 0.0100419419, 0.999431431, -0.0321936794),})
  660. Hitbox = New("Part",CorruptionBlade,"Hitbox",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 1,Transparency = 1,Size = Vector3.new(0.924509108, 0.0620727353, 4.40400171),CFrame = CFrame.new(-4.295825, 35.1413612, -0.931339979, 0.00997800473, 0.999776125, -0.0186624229, 0.999430478, -0.0105727986, -0.0320488811, -0.0322390161, -0.0183320101, -0.999312103),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.239216, 0.0823529, 0.521569),})
  661. mot = New("Motor",Hitbox,"mot",{Part0 = Hitbox,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.00997800473, 0.999430478, -0.0322390161, 0.999776125, -0.0105727986, -0.0183320101, -0.0186624229, -0.0320488811, -0.999312103),C1 = CFrame.new(2.9485147, 0.00793933868, 0.0218963623, 0.0186979976, 0.032002002, 0.999312937, 0.999774933, -0.0106369993, -0.0183660034, 0.0100419419, 0.999431431, -0.0321936794),})
  662. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.248290733),CFrame = CFrame.new(-4.27320862, 35.4636078, 0.115618467, 0.999776363, 0.0186650474, -0.0100429868, -0.010637016, 0.032004077, -0.999432564, -0.0183330309, 0.99931407, 0.0321953632),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.239216, 0.0823529, 0.521569),})
  663. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999775767, -0.0106370086, -0.018333016, 0.0186650418, 0.0320040397, 0.999313712, -0.0100429794, -0.999431849, 0.0321953669),C1 = CFrame.new(4.0054884, 0.00789451599, 0.310482025, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  664. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.124145284),CFrame = CFrame.new(-4.33807611, 34.6816292, -2.9642458, 0.999771833, -0.0188442357, 0.0101713082, -0.0107710119, -0.032001067, 0.999431252, -0.0185080189, -0.999310851, -0.0321966372),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.239216, 0.0823529, 0.521569),})
  665. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999771237, -0.0107710036, -0.0185080059, -0.018844232, -0.0320010297, -0.999310493, 0.0101713007, 0.999430537, -0.032196641),C1 = CFrame.new(0.901503325, 0.0079240799, -0.372550964, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  666. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.74487251, 0.43450889),CFrame = CFrame.new(-4.26732779, 35.0771103, 0.655967474, -0.999776363, 0.018665025, 0.0100430232, 0.010637016, 0.0320020467, 0.999432504, 0.0183330309, 0.999314129, -0.0321933292),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.239216, 0.0823529, 0.521569),})
  667. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775767, 0.0106370086, 0.018333016, 0.0186650213, 0.0320020095, 0.999313772, 0.0100430166, 0.999431789, -0.0321933329),C1 = CFrame.new(4.53320789, 0.00796079636, -0.093132019, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  668. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.124145165, 0.186217993),CFrame = CFrame.new(-4.30716515, 35.3139, -1.64942956, -0.999776363, -0.0186650474, -0.0100429868, 0.010637016, -0.032004077, -0.999432564, 0.0183330309, -0.99931407, 0.0321953632),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.239216, 0.0823529, 0.521569),})
  669. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775767, 0.0106370086, 0.018333016, -0.0186650418, -0.0320040397, -0.999313712, -0.0100429794, -0.999431849, 0.0321953669),C1 = CFrame.new(2.23622799, 0.00795459747, 0.217342377, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  670. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.248290703, 0.310363442),CFrame = CFrame.new(-4.25427151, 35.4653358, 1.14020181, -0.999776363, 0.018665025, 0.0100430232, 0.010637016, 0.0320020467, 0.999432504, 0.0183330309, 0.999314129, -0.0321933292),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.239216, 0.0823529, 0.521569),})
  671. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775767, 0.0106370086, 0.018333016, 0.0186650213, 0.0320020095, 0.999313772, 0.0100430166, 0.999431789, -0.0321933329),C1 = CFrame.new(5.02977705, 0.00799131393, 0.279411316, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  672. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.74487251, 0.248290733),CFrame = CFrame.new(-4.26333475, 35.4804688, 0.642926455, -0.999776363, -0.018665025, -0.0100430232, 0.010637016, -0.0320020467, -0.999432504, 0.0183330309, -0.999314129, 0.0321933292),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.239216, 0.0823529, 0.521569),})
  673. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775767, 0.0106370086, 0.018333016, -0.0186650213, -0.0320020095, -0.999313772, -0.0100430166, -0.999431789, 0.0321933329),C1 = CFrame.new(4.5331583, 0.00790214539, 0.310455322, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  674. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.124145165, 0.186217993),CFrame = CFrame.new(-4.32799339, 35.2781143, -2.76611304, 0.99977988, 0.0183627289, -0.0102536418, -0.0108380122, 0.0320120603, -0.999429822, -0.0180240218, 0.999319375, 0.0322039202),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.239216, 0.0823529, 0.521569),})
  675. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999779284, -0.0108380048, -0.0180240069, 0.0183627252, 0.032012023, 0.999319017, -0.0102536362, -0.999429226, 0.0322039276),C1 = CFrame.new(1.11877716, 0.00802087784, 0.217315674, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  676. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.124145165, 0.186217993),CFrame = CFrame.new(-4.31869555, 35.2940178, -2.26982546, -0.999776363, -0.0186650474, -0.0100429868, 0.010637016, -0.032004077, -0.999432564, 0.0183330309, -0.99931407, 0.0321953632),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.239216, 0.0823529, 0.521569),})
  677. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775767, 0.0106370086, 0.018333016, -0.0186650418, -0.0320040397, -0.999313712, -0.0100429794, -0.999431849, 0.0321953669),C1 = CFrame.new(1.61540651, 0.00803279877, 0.217327118, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  678. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.124145165, 0.186217993),CFrame = CFrame.new(-4.29324532, 35.3377419, -0.904984713, 0.999776602, 0.0186551325, -0.0100463461, -0.0106400214, 0.0320020504, -0.999432564, -0.018323034, 0.999314308, 0.0321932994),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.239216, 0.0823529, 0.521569),})
  679. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999776006, -0.010640013, -0.0183230191, 0.0186551269, 0.0320020132, 0.999313951, -0.0100463387, -0.999431849, 0.0321932994),C1 = CFrame.new(2.98118448, 0.00794553757, 0.217342377, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  680. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.310363442),CFrame = CFrame.new(-4.31403971, 35.3630066, -2.05468845, -0.999776363, -0.018665025, -0.0100430232, 0.010637016, -0.0320020467, -0.999432504, 0.0183330309, -0.999314129, 0.0321933292),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.239216, 0.0823529, 0.521569),})
  681. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775767, 0.0106370086, 0.018333016, -0.0186650213, -0.0320020095, -0.999313772, -0.0100430166, -0.999431789, 0.0321933329),C1 = CFrame.new(1.83269048, 0.00800228119, 0.279396057, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  682. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.434509069, 0.0620727353, 3.41400003),CFrame = CFrame.new(-4.30621004, 35.0105629, -1.42229128, 0.00997801684, 0.999777198, -0.0186624266, 0.999431551, -0.0105728116, -0.0320489518, -0.0322389975, -0.0183320306, -0.999312699),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.239216, 0.0823529, 0.521569),})
  683. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.00997801125, 0.999430954, -0.0322390087, 0.999776602, -0.0105728041, -0.0183320176, -0.0186624248, -0.0320489109, -0.999312341),C1 = CFrame.new(2.45352054, 0.00796461105, -0.0931282043, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  684. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.310363442),CFrame = CFrame.new(-4.31982946, 35.353096, -2.36486721, 0.999776363, 0.0186650474, -0.0100429868, -0.010637016, 0.032004077, -0.999432564, -0.0183330309, 0.99931407, 0.0321953632),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.239216, 0.0823529, 0.521569),})
  685. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999775767, -0.0106370086, -0.018333016, 0.0186650418, 0.0320040397, 0.999313712, -0.0100429794, -0.999431849, 0.0321953669),C1 = CFrame.new(1.52229941, 0.00801610947, 0.279418945, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  686. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.310363442),CFrame = CFrame.new(-4.32563448, 35.3431511, -2.67505312, -0.999776363, -0.018665025, -0.0100430232, 0.010637016, -0.0320020467, -0.999432504, 0.0183330309, -0.999314129, 0.0321933292),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.239216, 0.0823529, 0.521569),})
  687. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775767, 0.0106370086, 0.018333016, -0.0186650213, -0.0320020095, -0.999313772, -0.0100430166, -0.999431789, 0.0321933329),C1 = CFrame.new(1.21190012, 0.00801515579, 0.279407501, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  688. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.124145284),CFrame = CFrame.new(-4.30891275, 34.7313194, -1.41332722, -0.999774039, 0.0187663939, 0.0101147592, 0.0107120117, 0.0320030674, 0.999431789, 0.0184320193, 0.999312222, -0.0321967453),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.239216, 0.0823529, 0.521569),})
  689. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999773324, 0.0107120033, 0.0184320062, 0.0187663883, 0.0320030265, 0.999311864, 0.0101147518, 0.999431074, -0.032196749),C1 = CFrame.new(2.45349169, 0.00806808472, -0.372528076, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  690. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.310363442),CFrame = CFrame.new(-4.30244875, 35.3829041, -1.43430853, -0.999776363, -0.018665025, -0.0100430232, 0.010637016, -0.0320020467, -0.999432504, 0.0183330309, -0.999314129, 0.0321933292),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.239216, 0.0823529, 0.521569),})
  691. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775767, 0.0106370086, 0.018333016, -0.0186650213, -0.0320020095, -0.999313772, -0.0100430166, -0.999431789, 0.0321933329),C1 = CFrame.new(2.45349741, 0.00798511505, 0.279426575, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  692. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.124145284),CFrame = CFrame.new(-4.31473494, 34.7213783, -1.72349, 0.99977386, -0.0187673904, 0.0101136686, -0.0107110115, -0.0320060849, 0.99943161, -0.0184330177, -0.999312103, -0.0321997553),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.239216, 0.0823529, 0.521569),})
  693. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999773264, -0.010711004, -0.0184330046, -0.0187673848, -0.0320060477, -0.999311745, 0.0101136621, 0.999430895, -0.0321997628),C1 = CFrame.new(2.14311481, 0.00804948807, -0.372535706, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  694. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.124145165, 0.186217993),CFrame = CFrame.new(-4.28161907, 35.3575592, -0.284579992, 0.999777377, 0.0185895991, -0.0100934692, -0.0106850173, 0.0320020616, -0.999432087, -0.0182560273, 0.999315441, 0.0321934707),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.239216, 0.0823529, 0.521569),})
  695. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999776781, -0.0106850099, -0.0182560124, 0.0185895953, 0.0320020244, 0.999315083, -0.0100934608, -0.999431372, 0.0321934707),C1 = CFrame.new(3.60201406, 0.00796413422, 0.217292786, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  696. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.124145165, 0.186217993),CFrame = CFrame.new(-4.2955699, 35.333744, -1.02907228, -0.999776602, -0.0186551325, -0.0100463461, 0.0106400214, -0.0320020504, -0.999432564, 0.018323034, -0.999314308, 0.0321932994),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.239216, 0.0823529, 0.521569),})
  697. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999776006, 0.010640013, 0.0183230191, -0.0186551269, -0.0320020132, -0.999313951, -0.0100463387, -0.999431849, 0.0321932994),C1 = CFrame.new(2.85701084, 0.00794267654, 0.217319489, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  698. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.124145284),CFrame = CFrame.new(-4.2915864, 34.7611008, -0.48275733, 0.999776065, -0.0186823849, 0.010053426, -0.010648014, -0.0320040658, 0.999432325, -0.0183500238, -0.999313653, -0.032195732),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.239216, 0.0823529, 0.521569),})
  699. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999775469, -0.0106480066, -0.0183500089, -0.0186823793, -0.0320040323, -0.999313295, 0.0100534186, 0.99943161, -0.0321957357),C1 = CFrame.new(3.38469887, 0.0079832077, -0.37254715, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  700. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.124145284),CFrame = CFrame.new(-4.33222151, 34.6915855, -2.65404177, -0.999771833, 0.0188442431, 0.0101712868, 0.0107710119, 0.0320020616, 0.999431074, 0.0185080189, 0.999310672, -0.0321976282),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.239216, 0.0823529, 0.521569),})
  701. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999771237, 0.0107710036, 0.0185080059, 0.0188442394, 0.0320020244, 0.999310315, 0.0101712802, 0.999430358, -0.0321976319),C1 = CFrame.new(1.21192241, 0.0079741478, -0.372528076, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  702. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.124145284),CFrame = CFrame.new(-4.32048035, 34.711441, -2.03366327, -0.999771833, 0.0188442431, 0.0101712868, 0.0107710119, 0.0320020616, 0.999431074, 0.0185080189, 0.999310672, -0.0321976282),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.239216, 0.0823529, 0.521569),})
  703. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999771237, 0.0107710036, 0.0185080059, 0.0188442394, 0.0320020244, 0.999310315, 0.0101712802, 0.999430358, -0.0321976319),C1 = CFrame.new(1.83272934, 0.0081076622, -0.37253952, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  704. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.620727003, 0.124145284),CFrame = CFrame.new(-4.28289557, 34.7760048, -0.0174643993, -0.999776065, 0.0186823849, 0.010053426, 0.010648014, 0.0320040658, 0.999432325, 0.0183500238, 0.999313653, -0.032195732),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.239216, 0.0823529, 0.521569),})
  705. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775469, 0.0106480066, 0.0183500089, 0.0186823793, 0.0320040323, 0.999313295, 0.0100534186, 0.99943161, -0.0321957357),C1 = CFrame.new(3.85031152, 0.00796794891, -0.372543335, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  706. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.124145165, 0.186217993),CFrame = CFrame.new(-4.28395081, 35.3536263, -0.408661842, -0.999777377, -0.0185895991, -0.0100934692, 0.0106850173, -0.0320020616, -0.999432087, 0.0182560273, -0.999315441, 0.0321934707),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.239216, 0.0823529, 0.521569),})
  707. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999776781, 0.0106850099, 0.0182560124, -0.0185895953, -0.0320020244, -0.999315083, -0.0100934608, -0.999431372, 0.0321934707),C1 = CFrame.new(3.47784829, 0.0079536438, 0.217330933, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  708. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.310363442),CFrame = CFrame.new(-4.30822849, 35.3729706, -1.7444911, 0.999776363, 0.0186650474, -0.0100429868, -0.010637016, 0.032004077, -0.999432564, -0.0183330309, 0.99931407, 0.0321953632),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.239216, 0.0823529, 0.521569),})
  709. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999775767, -0.0106370086, -0.018333016, 0.0186650418, 0.0320040397, 0.999313712, -0.0100429794, -0.999431849, 0.0321953669),C1 = CFrame.new(2.14310217, 0.00800943375, 0.279426575, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  710. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.124145284),CFrame = CFrame.new(-4.30316734, 34.7412338, -1.10312653, 0.99977392, -0.0187611282, 0.0101069454, -0.0107040107, -0.0320020579, 0.999431908, -0.0184270199, -0.999312401, -0.0321955308),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.239216, 0.0823529, 0.521569),})
  711. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999773324, -0.0107040033, -0.0184270069, -0.0187611263, -0.0320020206, -0.999312043, 0.010106937, 0.999431193, -0.0321955383),C1 = CFrame.new(2.76390362, 0.00800991058, -0.37254715, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  712. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.310363442),CFrame = CFrame.new(-4.29089022, 35.402729, -0.813943386, -0.999776363, -0.018665025, -0.0100430232, 0.010637016, -0.0320020467, -0.999432504, 0.0183330309, -0.999314129, 0.0321933292),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.239216, 0.0823529, 0.521569),})
  713. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775767, 0.0106370086, 0.018333016, -0.0186650213, -0.0320020095, -0.999313772, -0.0100430166, -0.999431789, 0.0321933329),C1 = CFrame.new(3.0742867, 0.00793647766, 0.279384613, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  714. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.124145284),CFrame = CFrame.new(-4.32636356, 34.701519, -2.34385347, 0.999771833, -0.0188442357, 0.0101713082, -0.0107710119, -0.032001067, 0.999431252, -0.0185080189, -0.999310851, -0.0321966372),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.239216, 0.0823529, 0.521569),})
  715. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999771237, -0.0107710036, -0.0185080059, -0.018844232, -0.0320010297, -0.999310493, 0.0101713007, 0.999430537, -0.032196641),C1 = CFrame.new(1.52232468, 0.00802850723, -0.372528076, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  716. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620727055, 0.0620727353, 1.05523646),CFrame = CFrame.new(-4.26775026, 35.3203583, 0.492865324, 0.00997801684, 0.999777198, -0.0186624266, 0.999431551, -0.0105728116, -0.0320489518, -0.0322389975, -0.0183320306, -0.999312699),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.239216, 0.0823529, 0.521569),})
  717. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.00997801125, 0.999430954, -0.0322390087, 0.999776602, -0.0105728041, -0.0183320176, -0.0186624248, -0.0320489109, -0.999312341),C1 = CFrame.new(4.37799406, 0.00794696808, 0.155223846, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  718. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.124145165, 0.186217993),CFrame = CFrame.new(-4.33027363, 35.2741508, -2.89020395, -0.99977988, -0.0183627289, -0.0102536418, 0.0108380122, -0.0320120603, -0.999429822, 0.0180240218, -0.999319375, 0.0322039202),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.239216, 0.0823529, 0.521569),})
  719. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999779284, 0.0108380048, 0.0180240069, -0.0183627252, -0.032012023, -0.999319017, -0.0102536362, -0.999429226, 0.0322039276),C1 = CFrame.new(0.994602084, 0.00806236267, 0.217327118, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  720. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.310363442),CFrame = CFrame.new(-4.27925348, 35.4225998, -0.193564177, -0.999776363, -0.018665025, -0.0100430232, 0.010637016, -0.0320020467, -0.999432504, 0.0183330309, -0.999314129, 0.0321933292),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.239216, 0.0823529, 0.521569),})
  721. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999775767, 0.0106370086, 0.018333016, -0.0186650213, -0.0320020095, -0.999313772, -0.0100430166, -0.999431789, 0.0321933329),C1 = CFrame.new(3.69509315, 0.00796556473, 0.279388428, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  722. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.124145165, 0.186217993),CFrame = CFrame.new(-4.31646729, 35.2979965, -2.14572954, 0.999776363, 0.0186650474, -0.0100429868, -0.010637016, 0.032004077, -0.999432564, -0.0183330309, 0.99931407, 0.0321953632),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.239216, 0.0823529, 0.521569),})
  723. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999775767, -0.0106370086, -0.018333016, 0.0186650418, 0.0320040397, 0.999313712, -0.0100429794, -0.999431849, 0.0321953669),C1 = CFrame.new(1.739586, 0.00793886185, 0.217330933, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  724. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.124145284),CFrame = CFrame.new(-4.29734468, 34.7511864, -0.792941809, -0.99977392, 0.0187611282, 0.0101069454, 0.0107040107, 0.0320020579, 0.999431908, 0.0184270199, 0.999312401, -0.0321955308),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.239216, 0.0823529, 0.521569),})
  725. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999773324, 0.0107040033, 0.0184270069, 0.0187611263, 0.0320020206, 0.999312043, 0.010106937, 0.999431193, -0.0321955383),C1 = CFrame.new(3.07430267, 0.00802850723, -0.372528076, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  726. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.310363442),CFrame = CFrame.new(-4.33146763, 35.3332138, -2.98524809, 0.999776363, 0.0186650474, -0.0100429868, -0.010637016, 0.032004077, -0.999432564, -0.0183330309, 0.99931407, 0.0321953632),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.239216, 0.0823529, 0.521569),})
  727. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999775767, -0.0106370086, -0.018333016, 0.0186650418, 0.0320040397, 0.999313712, -0.0100429794, -0.999431849, 0.0321953669),C1 = CFrame.new(0.901491165, 0.00798606873, 0.279403687, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  728. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Glass,Transparency = 0.5,Transparency = 0.5,Size = Vector3.new(0.0620726757, 0.310363322, 0.310363442),CFrame = CFrame.new(-4.2966423, 35.3928337, -1.12412596, 0.999776363, 0.0186650474, -0.0100429868, -0.010637016, 0.032004077, -0.999432564, -0.0183330309, 0.99931407, 0.0321953632),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.239216, 0.0823529, 0.521569),})
  729. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999775767, -0.0106370086, -0.018333016, 0.0186650418, 0.0320040397, 0.999313712, -0.0100429794, -0.999431849, 0.0321953669),C1 = CFrame.new(2.76389289, 0.00798797607, 0.27942276, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  730. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.450001389, 0.150000468, 0.100000203),CFrame = CFrame.new(-4.34683323, 34.8242874, -3.11829281, 0.00955701713, -0.999792337, 0.0180606619, 0.999435782, 0.0101328213, 0.0320637785, -0.0322400108, 0.0177440289, 0.999323249),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),})
  731. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.00955701061, 0.999435067, -0.0322400145, -0.999791741, 0.0101328148, 0.0177440159, 0.0180606581, 0.0320637375, 0.999322891),C1 = CFrame.new(0.751963615, 0.000480651855, -0.225105286, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  732. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.0500001237, 0.150000468, 0.150000334),CFrame = CFrame.new(-4.3557353, 34.3171158, -3.32709002, 0.00955701713, -0.999792337, 0.0180606619, 0.999435782, 0.0101328213, 0.0320637785, -0.0322400108, 0.0177440289, 0.999323249),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),})
  733. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.00955701061, 0.999435067, -0.0322400145, -0.999791741, 0.0101328148, 0.0177440159, 0.0180606581, 0.0320637375, 0.999322891),C1 = CFrame.new(0.526913166, 0.000810146332, -0.725353241, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  734. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.100000061, 0.45000124),CFrame = CFrame.new(-4.34085035, 35.2774048, -3.03280663, 0.999795198, 0.0177616552, -0.00982788857, -0.0103930123, 0.0320100598, -0.999434829, -0.0174370222, 0.999330342, 0.032188002),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),})
  735. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999794543, -0.0103930067, -0.0174370091, 0.0177616533, 0.0320100226, 0.999329984, -0.00982788205, -0.999434114, 0.032188002),C1 = CFrame.new(0.852003694, 7.2479248e-05, 0.225063324, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  736. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.450001389, 0.150000468, 0.100000203),CFrame = CFrame.new(-4.3427186, 35.2741966, -3.13281107, -0.00955601782, 0.999792457, 0.0180616323, -0.999435782, -0.0101318536, 0.0320637785, 0.0322400108, -0.0177450329, 0.999323189),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),})
  737. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0095560113, -0.999435067, 0.0322400145, 0.999791801, -0.0101318462, -0.017745018, 0.0180616267, 0.0320637412, 0.999322832),C1 = CFrame.new(0.751930475, 7.5340271e-05, 0.225059509, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  738. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.100000061, 0.250000596),CFrame = CFrame.new(-4.33936071, 35.6240959, -3.14411545, 0.999795198, 0.0177616552, -0.00982788857, -0.0103930123, 0.0320100598, -0.999434829, -0.0174370222, 0.999330342, 0.032188002),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),})
  739. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999794543, -0.0103930067, -0.0174370091, 0.0177616533, 0.0320100226, 0.999329984, -0.00982788205, -0.999434114, 0.032188002),C1 = CFrame.new(0.751894236, -8.15391541e-05, 0.575157166, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  740. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.150000215, 0.150000304),CFrame = CFrame.new(-4.34289408, 35.6668854, -3.37060213, 0.999788344, -0.0183622465, 0.00940145552, -0.00998601597, -0.0320070609, 0.999438882, -0.0180510283, -0.999319375, -0.0321835317),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),})
  741. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999787688, -0.00998600852, -0.0180510134, -0.0183622446, -0.0320070237, -0.999319136, 0.00940144993, 0.999438286, -0.0321835428),C1 = CFrame.new(0.526866436, 9.01222229e-05, 0.625175476, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  742. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.150000468, 0.100000203),CFrame = CFrame.new(-4.34073162, 35.6708527, -3.24564266, -0.00955601782, 0.999792457, 0.0180616323, -0.999435782, -0.0101318536, 0.0320637785, 0.0322400108, -0.0177450329, 0.999323189),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),})
  743. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0095560113, -0.999435067, 0.0322400145, 0.999791801, -0.0101318462, -0.017745018, 0.0180616267, 0.0320637412, 0.999322832),C1 = CFrame.new(0.651907444, -8.48770142e-05, 0.625141144, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  744. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.100000061, 0.0500000045),CFrame = CFrame.new(-4.33972263, 35.7708588, -3.24884176, 0.999795198, 0.0177616552, -0.00982788857, -0.0103930123, 0.0320100598, -0.999434829, -0.0174370222, 0.999330342, 0.032188002),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),})
  745. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999794543, -0.0103930067, -0.0174370091, 0.0177616533, 0.0320100226, 0.999329984, -0.00982788205, -0.999434114, 0.032188002),C1 = CFrame.new(0.651929617, -8.10623169e-05, 0.725204468, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  746. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.100000061, 0.250000596),CFrame = CFrame.new(-4.35017633, 34.4743233, -3.10702348, -0.999784172, 0.0183619726, 0.0098275952, 0.010412015, 0.032008063, 0.99943471, 0.0180370267, 0.999319553, -0.0321922377),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),})
  747. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999783576, 0.0104120076, 0.0180370118, 0.0183619689, 0.0320080221, 0.999319136, 0.00982758868, 0.999433994, -0.0321922414),C1 = CFrame.new(0.751963377, 0.000654220581, -0.575263977, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  748. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.100000061, 0.45000124),CFrame = CFrame.new(-4.34515238, 34.8274498, -3.01832247, -0.999784172, 0.0183619726, 0.0098275952, 0.010412015, 0.032008063, 0.99943471, 0.0180370267, 0.999319553, -0.0321922377),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),})
  749. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999783576, 0.0104120076, 0.0180370118, 0.0183619689, 0.0320080221, 0.999319136, 0.00982758868, 0.999433994, -0.0321922414),C1 = CFrame.new(0.851997972, 0.000291824341, -0.225143433, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  750. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.300000668, 0.0500000045),CFrame = CFrame.new(-4.34289551, 35.8143959, -3.45034695, 0.999795198, 0.0177616552, -0.00982788857, -0.0103930123, 0.0320100598, -0.999434829, -0.0174370222, 0.999330342, 0.032188002),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),})
  751. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999794543, -0.0103930067, -0.0174370091, 0.0177616533, 0.0320100226, 0.999329984, -0.00982788205, -0.999434114, 0.032188002),C1 = CFrame.new(0.451896906, -1.57356262e-05, 0.775169373, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  752. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.100000061, 0.300000787),CFrame = CFrame.new(-4.35035563, 34.6461029, -3.21262121, -0.999799013, -0.0177630372, -0.00940468907, 0.00997001305, -0.0320100486, -0.999438941, 0.0174520239, -0.999330282, 0.0321806222),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),})
  753. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999798417, 0.0099700056, 0.017452009, -0.0177630335, -0.0320100151, -0.999329984, -0.00940468442, -0.999438345, 0.0321806259),C1 = CFrame.new(0.65193224, 0.000586986542, -0.400184631, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  754. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.150000215, 0.0500000045),CFrame = CFrame.new(-4.35842276, 34.3123703, -3.47698522, -0.999799013, -0.0177630372, -0.00940468907, 0.00997001305, -0.0320100486, -0.999438941, 0.0174520239, -0.999330282, 0.0321806222),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),})
  755. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999798417, 0.0099700056, 0.017452009, -0.0177630335, -0.0320100151, -0.999329984, -0.00940468442, -0.999438345, 0.0321806259),C1 = CFrame.new(0.376918793, 0.000926971436, -0.725299835, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  756. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.45000115, 0.0500000045),CFrame = CFrame.new(-4.36442375, 34.2528343, -3.77515268, -0.999800444, -0.0175827667, -0.00961655565, 0.0101760169, -0.0320110507, -0.999436855, 0.0172650274, -0.99933362, 0.0321834907),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),})
  757. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999799788, 0.0101760095, 0.0172650125, -0.0175827611, -0.0320110209, -0.999333203, -0.00961654913, -0.999436259, 0.0321834944),C1 = CFrame.new(0.0769388676, 0.00103664398, -0.775260925, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  758. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.150000215, 0.0500000045),CFrame = CFrame.new(-4.34470654, 35.7620964, -3.52372694, 0.999788344, -0.0183622465, 0.00940145552, -0.00998601597, -0.0320070609, 0.999438882, -0.0180510283, -0.999319375, -0.0321835317),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),})
  759. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999787688, -0.00998600852, -0.0180510134, -0.0183622446, -0.0320070237, -0.999319136, 0.00940144993, 0.999438286, -0.0321835428),C1 = CFrame.new(0.376859903, 7.77244568e-05, 0.725246429, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  760. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.150000468, 0.100000203),CFrame = CFrame.new(-4.35247326, 34.4211578, -3.2053473, 0.00955701713, -0.999792337, 0.0180606619, 0.999435782, 0.0101328213, 0.0320637785, -0.0322400108, 0.0177440289, 0.999323249),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),})
  761. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.00955701061, 0.999435067, -0.0322400145, -0.999791741, 0.0101328148, 0.0177440159, 0.0180606581, 0.0320637375, 0.999322891),C1 = CFrame.new(0.651962757, 0.000729084015, -0.625259399, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  762. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.300000668, 0.0500000045),CFrame = CFrame.new(-4.35748148, 34.2647934, -3.40038013, -0.999784172, 0.0183619726, 0.0098275952, 0.010412015, 0.032008063, 0.99943471, 0.0180370267, 0.999319553, -0.0321922377),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),})
  763. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999783576, 0.0104120076, 0.0180370118, 0.0183619689, 0.0320080221, 0.999319136, 0.00982758868, 0.999433994, -0.0321922414),C1 = CFrame.new(0.451966524, 0.000967025757, -0.775302887, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  764. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.0500001237, 0.150000468, 0.150000334),CFrame = CFrame.new(-4.34202242, 35.7668571, -3.37384582, -0.00955601782, 0.999792457, 0.0180616323, -0.999435782, -0.0101318536, 0.0320637785, 0.0322400108, -0.0177450329, 0.999323189),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),})
  765. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0095560113, -0.999435067, 0.0322400145, 0.999791801, -0.0101318462, -0.017745018, 0.0180616267, 0.0320637412, 0.999322832),C1 = CFrame.new(0.526840448, -4.19616699e-05, 0.725204468, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  766. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.45000115, 0.0500000045),CFrame = CFrame.new(-4.34978962, 35.8024483, -3.82516599, 0.999788344, -0.0183622465, 0.00940145552, -0.00998601597, -0.0320070609, 0.999438882, -0.0180510283, -0.999319375, -0.0321835317),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),})
  767. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999787688, -0.00998600852, -0.0180510134, -0.0183622446, -0.0320070237, -0.999319136, 0.00940144993, 0.999438286, -0.0321835428),C1 = CFrame.new(0.0768241882, 0.000102996826, 0.775226593, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  768. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.100000061, 0.0500000045),CFrame = CFrame.new(-4.35340977, 34.3212204, -3.20210767, -0.999784172, 0.0183619726, 0.0098275952, 0.010412015, 0.032008063, 0.99943471, 0.0180370267, 0.999319553, -0.0321922377),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),})
  769. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999783576, 0.0104120076, 0.0180370118, 0.0183619689, 0.0320080221, 0.999319136, 0.00982758868, 0.999433994, -0.0321922414),C1 = CFrame.new(0.651984453, 0.000796318054, -0.725250244, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  770. Wedge = New("WedgePart",CorruptionBlade,"Wedge",{BrickColor = BrickColor.new("Black"),Material = Enum.Material.DiamondPlate,Size = Vector3.new(0.150000423, 0.100000061, 0.300000787),CFrame = CFrame.new(-4.34287548, 35.4459763, -3.23842001, 0.999788344, -0.0183622465, 0.00940145552, -0.00998601597, -0.0320070609, 0.999438882, -0.0180510283, -0.999319375, -0.0321835317),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),})
  771. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999787688, -0.00998600852, -0.0180510134, -0.0183622446, -0.0320070237, -0.999319136, 0.00940144993, 0.999438286, -0.0321835428),C1 = CFrame.new(0.651888609, 3.09944153e-05, 0.400138855, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  772. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(1.64365077, 0.126434609, 0.126434669),CFrame = CFrame.new(-4.36030149, 35.0231323, -3.94018221, 0.0186980013, 0.999775887, 0.0100419549, 0.0320020616, -0.0106370123, 0.999432504, 0.999313414, -0.0183660239, -0.0321936682),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.239216, 0.0823529, 0.521569),})
  773. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0186979976, 0.0320020206, 0.999313056, 0.99977529, -0.0106370049, -0.018366009, 0.0100419475, 0.999431789, -0.0321936756),C1 = CFrame.new(-0.0632491112, -4.76837158e-06, -4.57763672e-05, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  774. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Granite,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.189652175, 0.189651936, 0.189651981),CFrame = CFrame.new(-4.37685728, 34.9948502, -4.8246994, 0.0186980013, 0.999775887, 0.0100419549, 0.0320020616, -0.0106370123, 0.999432504, 0.999313414, -0.0183660239, -0.0321936682),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.239216, 0.0823529, 0.521569),})
  775. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0186979976, 0.0320020206, 0.999313056, 0.99977529, -0.0106370049, -0.018366009, 0.0100419475, 0.999431789, -0.0321936756),C1 = CFrame.new(-0.948373079, -1.09672546e-05, -3.81469727e-06, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  776. Brick = New("Part",CorruptionBlade,"Brick",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.189652175, 0.252869278, 0.252869338),CFrame = CFrame.new(-4.37802553, 34.9928246, -4.88786697, 0.0186980013, 0.999775887, 0.0100419549, 0.0320020616, -0.0106370123, 0.999432504, 0.999313414, -0.0183660239, -0.0321936682),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.239216, 0.0823529, 0.521569),})
  777. mot = New("Motor",Brick,"mot",{Part0 = Brick,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0186979976, 0.0320020206, 0.999313056, 0.99977529, -0.0106370049, -0.018366009, 0.0100419475, 0.999431789, -0.0321936756),C1 = CFrame.new(-1.01158404, 2.86102295e-06, -7.62939453e-06, 0.0186979976, 0.0320020132, 0.999313056, 0.999775052, -0.0106370011, -0.0183660053, 0.0100419438, 0.999431551, -0.0321936756),})
  778.  
  779. local gui = NewInstance('ScreenGui',PlrGui,{Name='KeystrokeGUI'})
  780. local start = Label(gui,">",UDim2.new(.05,0,.05,0),UDim2.new(0,0,.85,0),0,C3.N(1,1,1),24,true)
  781. local inputF = Frame(gui,UDim2.new(1,0,.05,0),UDim2.new(.04,0,.85,0),C3.N(0,0,0),1)
  782.  
  783.  
  784. local chainStartP = NewInstance('Attachment',PHandle,{CFrame=CF.N(0,-.6,0)})
  785. local chainStartA = NewInstance('Attachment',LArm,{CFrame=CF.N(0,-LArm.Size.y/2,0)})
  786. local chain = NewInstance('Beam',Pickaxe,{Transparency=NumberSequence.new(0),Color=ColorSequence.new(C3.RGB(167,2,232)),Enabled=true,Texture="rbxassetid://73042633",TextureLength=1,TextureMode='Wrap',TextureSpeed=0,Attachment0=chainStartA,Attachment1=chainStartP,Segments=10,Width0=1,Width1=1})
  787.  
  788.  
  789. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  790. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  791.  
  792. if(PlayerSize ~= 1)then
  793. for _,v in next, Char:GetDescendants() do
  794. if(v:IsA'BasePart')then
  795. v.Size = v.Size * PlayerSize
  796. end
  797. end
  798. end
  799.  
  800.  
  801. local Music = Sound(Char,MusicID,1,3,true,false,true)
  802. Music.Name = 'Music'
  803.  
  804. --// Stop animations \\--
  805. for _,v in next, Hum:GetPlayingAnimationTracks() do
  806. v:Stop();
  807. end
  808.  
  809. pcall(game.Destroy,Char:FindFirstChild'Animate')
  810. pcall(game.Destroy,Hum:FindFirstChild'Animator')
  811.  
  812. --// Joints \\--
  813.  
  814. local LS = NewInstance('Motor',Char,{Part0=Torso,Part1=LArm,C0 = CF.N(-1.5 * PlayerSize,0.5 * PlayerSize,0),C1 = CF.N(0,.5 * PlayerSize,0)})
  815. local RS = NewInstance('Motor',Char,{Part0=Torso,Part1=RArm,C0 = CF.N(1.5 * PlayerSize,0.5 * PlayerSize,0),C1 = CF.N(0,.5 * PlayerSize,0)})
  816. local NK = NewInstance('Motor',Char,{Part0=Torso,Part1=Head,C0 = CF.N(0,1.5 * PlayerSize,0)})
  817. local LH = NewInstance('Motor',Char,{Part0=Torso,Part1=LLeg,C0 = CF.N(-.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  818. local RH = NewInstance('Motor',Char,{Part0=Torso,Part1=RLeg,C0 = CF.N(.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  819. local RJ = NewInstance('Motor',Char,{Part0=Root,Part1=Torso})
  820.  
  821. local PHW = NewInstance('Motor',Char,{Part0=LLeg,Part1=PHandle,C0=CF.N(-.5,.8,-.25)*CF.A(M.R(-75),0,M.R(180))})
  822. local HW = NewInstance('Motor',Char,{Part0=RArm,Part1=Handle,C0=CF.N(0,-1,0)*CF.A(M.R(-90),0,M.R(90))})
  823.  
  824. local LSC0 = LS.C0
  825. local RSC0 = RS.C0
  826. local NKC0 = NK.C0
  827. local LHC0 = LH.C0
  828. local RHC0 = RH.C0
  829. local RJC0 = RJ.C0
  830. local HWC0 = HW.C0
  831. local PHWC0 = PHW.C0
  832.  
  833. --// Artificial HB \\--
  834.  
  835. local ArtificialHB = IN("BindableEvent", script)
  836. ArtificialHB.Name = "Heartbeat"
  837.  
  838. script:WaitForChild("Heartbeat")
  839.  
  840. local tf = 0
  841. local allowframeloss = false
  842. local tossremainder = false
  843. local lastframe = tick()
  844. local frame = 1/Frame_Speed
  845. ArtificialHB:Fire()
  846.  
  847. game:GetService("RunService").Heartbeat:connect(function(s, p)
  848. tf = tf + s
  849. if tf >= frame then
  850. if allowframeloss then
  851. script.Heartbeat:Fire()
  852. lastframe = tick()
  853. else
  854. for i = 1, math.floor(tf / frame) do
  855. ArtificialHB:Fire()
  856. end
  857. lastframe = tick()
  858. end
  859. if tossremainder then
  860. tf = 0
  861. else
  862. tf = tf - frame * math.floor(tf / frame)
  863. end
  864. end
  865. end)
  866.  
  867. function swait(num)
  868. if num == 0 or num == nil then
  869. ArtificialHB.Event:wait()
  870. else
  871. for i = 0, num do
  872. ArtificialHB.Event:wait()
  873. end
  874. end
  875. end
  876.  
  877.  
  878. --// Effect Function(s) \\--
  879. function NoobySphere(Lifetime,Speed,Type,Pos,StartSize,Inc,Color,Range,MeshId,Axis)
  880. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos+Pos.lookVector*Range,true,false)
  881. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Sphere),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  882. local Scale = 1
  883. local speeder = Speed
  884. if(Type == "Multiply")then
  885. Scale = 1*Inc
  886. elseif(Type == "Divide")then
  887. Scale = 1/Inc
  888. end
  889. coroutine.wrap(function()
  890. for i = 0,10/Lifetime,.1 do
  891.  
  892. if(Type == "Multiply")then
  893. Scale = Scale - 0.01*Inc/Lifetime
  894. elseif(Type == "Divide")then
  895. Scale = Scale - 0.01/Inc*Lifetime
  896. end
  897. speeder = speeder - 0.01*Speed*Lifetime
  898. fxP.CFrame = fxP.CFrame + fxP.CFrame.lookVector*speeder*Lifetime
  899. fxP.Transparency = fxP.Transparency + 0.01*Lifetime
  900. if(Axis == 'x')then
  901. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, 0, 0)
  902. elseif(Axis == 'y')then
  903. fxM.Scale = fxM.Scale + Vector3.new(0, Scale*Lifetime, 0)
  904. elseif(Axis == 'z')then
  905. fxM.Scale = fxM.Scale + Vector3.new(0, 0, Scale*Lifetime)
  906. elseif(Axis == 'xyz')then
  907. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime,Scale*Lifetime,Scale*Lifetime)
  908. elseif(Axis == 'yz')then
  909. fxM.Scale = fxM.Scale + Vector3.new(0,Scale*Lifetime,Scale*Lifetime)
  910. elseif(Axis == 'xz')then
  911. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime,0,Scale*Lifetime)
  912. else
  913. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, Scale*Lifetime, 0)
  914. end
  915. if(fxP.Transparency >= 1)then break end
  916. swait()
  917. end
  918. fxP:destroy()
  919. end)()
  920. return fxP
  921. end
  922.  
  923. function NoobySphere2(Lifetime,Type,Pos,StartSize,Inc,Color,MeshId)
  924. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos,true,false)
  925. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Sphere),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  926. local Scale = 1
  927. if(Type == "Multiply")then
  928. Scale = 1*Inc
  929. elseif(Type == "Divide")then
  930. Scale = 1/Inc
  931. end
  932. coroutine.wrap(function()
  933. for i = 0,10/Lifetime,.1 do
  934.  
  935. if(Type == "Multiply")then
  936. Scale = Scale - 0.01*Inc/Lifetime
  937. elseif(Type == "Divide")then
  938. Scale = Scale - 0.01/Inc*Lifetime
  939. end
  940. fxP.Transparency = fxP.Transparency + 0.01*Lifetime
  941. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, Scale*Lifetime, Scale*Lifetime)
  942. swait()
  943. end
  944. fxP:destroy()
  945. end)()
  946. return fxP
  947. end
  948.  
  949.  
  950. function NoobyBlock(Lifetime,Speed,Type,Pos,StartSize,Inc,Color,Range,Fade,MeshId)
  951. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos+Pos.lookVector*Range,true,false)
  952. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Brick),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  953. local Scale = 1
  954. local speeder = Speed
  955. if(Type == "Multiply")then
  956. Scale = 1*Inc
  957. elseif(Type == "Divide")then
  958. Scale = 1/Inc
  959. end
  960. coroutine.wrap(function()
  961. for i = 0,10/Lifetime,.1 do
  962. if(Type == "Multiply")then
  963. Scale = Scale - 0.01*Inc/Lifetime
  964. elseif(Type == "Divide")then
  965. Scale = Scale - 0.01/Inc*Lifetime
  966. end
  967. if(Fade)then
  968. fxP.Transparency = i/(10/Lifetime)
  969. end
  970. speeder = speeder - 0.01*Speed*Lifetime/10
  971. fxP.CFrame = fxP.CFrame + fxP.CFrame.lookVector*speeder*Lifetime
  972. fxM.Scale = fxM.Scale - Vector3.new(Scale*Lifetime, Scale*Lifetime, Scale*Lifetime)
  973. swait()
  974. end
  975. fxP:destroy()
  976. end)()
  977. return fxP
  978. end
  979. function Bezier(startpos, pos2, pos3, endpos, t)
  980. local A = startpos:lerp(pos2, t)
  981. local B = pos2:lerp(pos3, t)
  982. local C = pos3:lerp(endpos, t)
  983. local lerp1 = A:lerp(B, t)
  984. local lerp2 = B:lerp(C, t)
  985. local cubic = lerp1:lerp(lerp2, t)
  986. return cubic
  987. end
  988. function Puddle(hit,pos,norm,data)
  989. local material = data.Material or Enum.Material.SmoothPlastic
  990. local color = data.Color or BrickColor.new'Crimson'
  991. local size = data.Size or 1
  992.  
  993. if(hit.Name ~= 'BloodPuddle')then
  994. local Puddle = NewInstance('Part',workspace,{Material=material,BrickColor=color,Size=V3.N(size,.1,size),CFrame=CF.N(pos,pos+norm)*CF.A(90*M.P/180,0,0),Anchored=true,CanCollide=false,Archivable=false,Locked=true,Name='BloodPuddle'})
  995. local Cyl = NewInstance('CylinderMesh',Puddle,{Name='CylinderMesh'})
  996. BloodPuddles[Puddle] = 0
  997. else
  998. local cyl = hit:FindFirstChild'CylinderMesh'
  999. if(cyl)then
  1000. BloodPuddles[hit] = 0
  1001. cyl.Scale = cyl.Scale + V3.N(size,0,size)
  1002. hit.Transparency = 0
  1003. end
  1004. end
  1005. end
  1006.  
  1007. function Droplet(data)
  1008. --ShootBullet{Size=V3.N(3,3,3),Shape='Ball',Frames=160,Origin=data.Circle.CFrame,Speed=10}
  1009. local Size = data.Size or 1
  1010. local Color = data.Color or BrickColor.new'Crimson'
  1011. local StudsPerFrame = data.Speed or 1
  1012. local Shape = data.Shape or 'Ball'
  1013. local Frames = (data.Frames or 160)+1
  1014. local Pos = data.Origin or Root.CFrame
  1015. local Direction = data.Direction or Root.CFrame.lookVector*100000
  1016. local Material = data.Material or Enum.Material.SmoothPlastic
  1017. local Drop = data.Drop or .05
  1018. local Ignorelist = data.Ignorelist or nil
  1019.  
  1020. local Bullet = Part(Effects,Color,Material,V3.N(Size,Size,Size),Pos,true,false)
  1021. local BMesh = Mesh(Bullet,Enum.MeshType.Brick,"","",V3.N(1,1,1),V3.N())
  1022. if(Shape == 'Ball')then
  1023. BMesh.MeshType = Enum.MeshType.Sphere
  1024. elseif(Shape == 'Head')then
  1025. BMesh.MeshType = Enum.MeshType.Head
  1026. elseif(Shape == 'Cylinder')then
  1027. BMesh.MeshType = Enum.MeshType.Cylinder
  1028. end
  1029.  
  1030. coroutine.wrap(function()
  1031. for i = 1, Frames do
  1032. Pos = Pos * CF.N(0,-(Drop*i),0)
  1033. local hit,pos,norm,dist = CastRay(Bullet.CFrame.p,CF.N(Pos.p,Direction)*CF.N(0,0,-(StudsPerFrame*i)).p,StudsPerFrame)
  1034. if(hit and (not hit.Parent or not hit.Parent:FindFirstChildOfClass'Humanoid' and not hit.Parent:IsA'Accessory'))then
  1035. Puddle(hit,pos,norm,data)
  1036. break;
  1037. else
  1038. Bullet.CFrame = CF.N(Pos.p,Direction)*CF.N(0,0,-(StudsPerFrame*i))
  1039. end
  1040. swait()
  1041. end
  1042. Bullet:destroy()
  1043. end)()
  1044. end
  1045.  
  1046. function SphereFX(duration,color,scale,pos,endScale,increment)
  1047. return Effect{
  1048. Effect='ResizeAndFade',
  1049. Color=color,
  1050. Size=scale,
  1051. Mesh={MeshType=Enum.MeshType.Sphere},
  1052. CFrame=pos,
  1053. FXSettings={
  1054. EndSize=endScale,
  1055. EndIsIncrement=increment
  1056. }
  1057. }
  1058. end
  1059.  
  1060. function BlastFX(duration,color,scale,pos,endScale,increment)
  1061. return Effect{
  1062. Effect='ResizeAndFade',
  1063. Color=color,
  1064. Size=scale,
  1065. Mesh={MeshType=Enum.MeshType.FileMesh,MeshId='rbxassetid://20329976'},
  1066. CFrame=pos,
  1067. FXSettings={
  1068. EndSize=endScale,
  1069. EndIsIncrement=increment
  1070. }
  1071. }
  1072. end
  1073.  
  1074. function BlockFX(duration,color,scale,pos,endScale,increment)
  1075. return Effect{
  1076. Effect='ResizeAndFade',
  1077. Color=color,
  1078. Size=scale,
  1079. CFrame=pos,
  1080. FXSettings={
  1081. EndSize=endScale,
  1082. EndIsIncrement=increment
  1083. }
  1084. }
  1085. end
  1086.  
  1087. function ShootBullet(data)
  1088. --ShootBullet{Size=V3.N(3,3,3),Shape='Ball',Frames=160,Origin=data.Circle.CFrame,Speed=10}
  1089. local Size = data.Size or V3.N(2,2,2)
  1090. local Color = data.Color or BrickColor.new'Crimson'
  1091. local StudsPerFrame = data.Speed or 10
  1092. local Shape = data.Shape or 'Ball'
  1093. local Frames = data.Frames or 160
  1094. local Pos = data.Origin or Torso.CFrame
  1095. local Direction = data.Direction or Mouse.Hit
  1096. local Material = data.Material or Enum.Material.Neon
  1097. local OnHit = data.HitFunction or function(hit,pos)
  1098. Effect{
  1099. Effect='ResizeAndFade',
  1100. Color=Color,
  1101. Size=V3.N(10,10,10),
  1102. Mesh={MeshType=Enum.MeshType.Sphere},
  1103. CFrame=CF.N(pos),
  1104. FXSettings={
  1105. EndSize=V3.N(.05,.05,.05),
  1106. EndIsIncrement=true
  1107. }
  1108. }
  1109. for i = 1, 5 do
  1110. local angles = CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180))
  1111. Effect{
  1112. Effect='Fade',
  1113. Frames=65,
  1114. Size=V3.N(5,5,10),
  1115. CFrame=CF.N(CF.N(pos)*angles*CF.N(0,0,-10).p,pos),
  1116. Mesh = {MeshType=Enum.MeshType.Sphere},
  1117. Material=Enum.Material.Neon,
  1118. Color=Color,
  1119. MoveDirection=CF.N(CF.N(pos)*angles*CF.N(0,0,-50).p,pos).p,
  1120. }
  1121. end
  1122. end
  1123.  
  1124. local Bullet = Part(Effects,Color,Material,Size,Pos,true,false)
  1125. local BMesh = Mesh(Bullet,Enum.MeshType.Brick,"","",V3.N(1,1,1),V3.N())
  1126. if(Shape == 'Ball')then
  1127. BMesh.MeshType = Enum.MeshType.Sphere
  1128. elseif(Shape == 'Head')then
  1129. BMesh.MeshType = Enum.MeshType.Head
  1130. elseif(Shape == 'Cylinder')then
  1131. BMesh.MeshType = Enum.MeshType.Cylinder
  1132. end
  1133.  
  1134. coroutine.wrap(function()
  1135. for i = 1, Frames+1 do
  1136. local hit,pos,norm,dist = CastRay(Bullet.CFrame.p,CF.N(Bullet.CFrame.p,Direction.p)*CF.N(0,0,-StudsPerFrame).p,StudsPerFrame)
  1137. if(hit)then
  1138. OnHit(hit,pos,norm,dist)
  1139. break;
  1140. else
  1141. Bullet.CFrame = CF.N(Bullet.CFrame.p,Direction.p)*CF.N(0,0,-StudsPerFrame)
  1142. end
  1143. swait()
  1144. end
  1145. Bullet:destroy()
  1146. end)()
  1147.  
  1148. end
  1149.  
  1150.  
  1151. function Zap(data)
  1152. local sCF,eCF = data.StartCFrame,data.EndCFrame
  1153. assert(sCF,"You need a start CFrame!")
  1154. assert(eCF,"You need an end CFrame!")
  1155. local parts = data.PartCount or 15
  1156. local zapRot = data.ZapRotation or {-5,5}
  1157. local startThick = data.StartSize or 3;
  1158. local endThick = data.EndSize or startThick/2;
  1159. local color = data.Color or BrickColor.new'Electric blue'
  1160. local delay = data.Delay or 35
  1161. local delayInc = data.DelayInc or 0
  1162. local lastLightning;
  1163. local MagZ = (sCF.p - eCF.p).magnitude
  1164. local thick = startThick
  1165. local inc = (startThick/parts)-(endThick/parts)
  1166.  
  1167. for i = 1, parts do
  1168. local pos = sCF.p
  1169. if(lastLightning)then
  1170. pos = lastLightning.CFrame*CF.N(0,0,MagZ/parts/2).p
  1171. end
  1172. delay = delay + delayInc
  1173. local zapPart = Part(Effects,color,Enum.Material.Neon,V3.N(thick,thick,MagZ/parts),CF.N(pos),true,false)
  1174. local posie = CF.N(pos,eCF.p)*CF.N(0,0,MagZ/parts).p+V3.N(M.RNG(unpack(zapRot)),M.RNG(unpack(zapRot)),M.RNG(unpack(zapRot)))
  1175. if(parts == i)then
  1176. local MagZ = (pos-eCF.p).magnitude
  1177. zapPart.Size = V3.N(endThick,endThick,MagZ)
  1178. zapPart.CFrame = CF.N(pos, eCF.p)*CF.N(0,0,-MagZ/2)
  1179. Effect{Effect='ResizeAndFade',Size=V3.N(thick,thick,thick),CFrame=eCF*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),Color=color,Frames=delay*2,FXSettings={EndSize=V3.N(thick*8,thick*8,thick*8)}}
  1180. else
  1181. zapPart.CFrame = CF.N(pos,posie)*CF.N(0,0,MagZ/parts/2)
  1182. end
  1183.  
  1184. lastLightning = zapPart
  1185. Effect{Effect='Fade',Manual=zapPart,Frames=delay}
  1186.  
  1187. thick=thick-inc
  1188.  
  1189. end
  1190. end
  1191.  
  1192. function Zap2(data)
  1193. local Color = data.Color or BrickColor.new'Electric blue'
  1194. local StartPos = data.Start or Torso.Position
  1195. local EndPos = data.End or Mouse.Hit.p
  1196. local SegLength = data.SegL or 2
  1197. local Thicc = data.Thickness or 0.5
  1198. local Fades = data.Fade or 45
  1199. local Parent = data.Parent or Effects
  1200. local MaxD = data.MaxDist or 200
  1201. local Branch = data.Branches or false
  1202. local Material = data.Material or Enum.Material.Neon
  1203. local Raycasts = data.Raycasts or false
  1204. local Offset = data.Offset or {0,360}
  1205. local AddMesh = (data.Mesh == nil and true or data.Mesh)
  1206. if((StartPos-EndPos).magnitude > MaxD)then
  1207. EndPos = CF.N(StartPos,EndPos)*CF.N(0,0,-MaxD).p
  1208. end
  1209. local hit,pos,norm,dist=nil,EndPos,nil,(StartPos-EndPos).magnitude
  1210. if(Raycasts)then
  1211. hit,pos,norm,dist = CastRay(StartPos,EndPos,MaxD)
  1212. end
  1213. local segments = dist/SegLength
  1214. local model = IN("Model",Parent)
  1215. model.Name = 'Lightning'
  1216. local Last;
  1217. for i = 1, segments do
  1218. local size = (segments-i)/25
  1219. local prt = Part(model,Color,Material,V3.N(Thicc+size,SegLength,Thicc+size),CF.N(),true,false)
  1220. if(AddMesh)then IN("CylinderMesh",prt) end
  1221. if(Last and math.floor(segments) == i)then
  1222. local MagZ = (Last.CFrame*CF.N(0,-SegLength/2,0).p-EndPos).magnitude
  1223. prt.Size = V3.N(Thicc+size,MagZ,Thicc+size)
  1224. prt.CFrame = CF.N(Last.CFrame*CF.N(0,-SegLength/2,0).p,EndPos)*CF.A(M.R(90),0,0)*CF.N(0,-MagZ/2,0)
  1225. elseif(not Last)then
  1226. prt.CFrame = CF.N(StartPos,pos)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  1227. else
  1228. prt.CFrame = CF.N(Last.CFrame*CF.N(0,-SegLength/2,0).p,CF.N(pos)*CF.A(M.R(M.RNG(0,360)),M.R(M.RNG(0,360)),M.R(M.RNG(0,360)))*CF.N(0,0,SegLength/3+(segments-i)).p)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  1229. end
  1230. Last = prt
  1231. if(Branch)then
  1232. local choice = M.RNG(1,7+((segments-i)*2))
  1233. if(choice == 1)then
  1234. local LastB;
  1235. for i2 = 1,M.RNG(2,5) do
  1236. local size2 = ((segments-i)/35)/i2
  1237. local prt = Part(model,Color,Material,V3.N(Thicc+size2,SegLength,Thicc+size2),CF.N(),true,false)
  1238. if(AddMesh)then IN("CylinderMesh",prt) end
  1239. if(not LastB)then
  1240. prt.CFrame = CF.N(Last.CFrame*CF.N(0,-SegLength/2,0).p,Last.CFrame*CF.N(0,-SegLength/2,0)*CF.A(0,0,M.RRNG(0,360))*CF.N(0,Thicc*7,0)*CF.N(0,0,-1).p)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  1241. else
  1242. prt.CFrame = CF.N(LastB.CFrame*CF.N(0,-SegLength/2,0).p,LastB.CFrame*CF.N(0,-SegLength/2,0)*CF.A(0,0,M.RRNG(0,360))*CF.N(0,Thicc*7,0)*CF.N(0,0,-1).p)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  1243. end
  1244. LastB = prt
  1245. end
  1246. end
  1247. end
  1248. end
  1249. if(Fades > 0)then
  1250. coroutine.wrap(function()
  1251. for i = 1, Fades do
  1252. for _,v in next, model:children() do
  1253. if(v:IsA'BasePart')then
  1254. v.Transparency = (i/Fades)
  1255. end
  1256. end
  1257. swait()
  1258. end
  1259. model:destroy()
  1260. end)()
  1261. else
  1262. S.Debris:AddItem(model,.01)
  1263. end
  1264. return {End=(Last and Last.CFrame*CF.N(0,-Last.Size.Y/2,0).p),Last=Last,Model=model}
  1265. end
  1266.  
  1267. function Tween(obj,props,time,easing,direction,repeats,backwards)
  1268. local info = TweenInfo.new(time or .5, easing or Enum.EasingStyle.Quad, direction or Enum.EasingDirection.Out, repeats or 0, backwards or false)
  1269. local tween = S.TweenService:Create(obj, info, props)
  1270.  
  1271. tween:Play()
  1272. end
  1273.  
  1274. function Effect(data)
  1275. local FX = data.Effect or 'ResizeAndFade'
  1276. local Parent = data.Parent or Effects
  1277. local Color = data.Color or C3.N(0,0,0)
  1278. local Size = data.Size or V3.N(1,1,1)
  1279. local MoveDir = data.MoveDirection or nil
  1280. local MeshData = data.Mesh or nil
  1281. local SndData = data.Sound or nil
  1282. local Frames = data.Frames or 45
  1283. local Manual = data.Manual or nil
  1284. local Material = data.Material or nil
  1285. local CFra = data.CFrame or Torso.CFrame
  1286. local Settings = data.FXSettings or {}
  1287. local Shape = data.Shape or Enum.PartType.Block
  1288. local Snd,Prt,Msh;
  1289. local RotInc = data.RotInc or {0,0,0}
  1290. if(typeof(RotInc) == 'number')then
  1291. RotInc = {RotInc,RotInc,RotInc}
  1292. end
  1293. coroutine.wrap(function()
  1294. if(Manual and typeof(Manual) == 'Instance' and Manual:IsA'BasePart')then
  1295. Prt = Manual
  1296. else
  1297. Prt = Part(Parent,Color,Material,Size,CFra,true,false)
  1298. Prt.Shape = Shape
  1299. end
  1300. if(typeof(MeshData) == 'table')then
  1301. Msh = Mesh(Prt,MeshData.MeshType,MeshData.MeshId,MeshData.TextureId,MeshData.Scale,MeshData.Offset)
  1302. elseif(typeof(MeshData) == 'Instance')then
  1303. Msh = MeshData:Clone()
  1304. Msh.Parent = Prt
  1305. elseif(Shape == Enum.PartType.Block)then
  1306. Msh = Mesh(Prt,Enum.MeshType.Brick)
  1307. end
  1308. if((typeof(SndData) == 'table' or typeof(SndData) == 'Instance') and SndData.SoundId ~= '0' and SndData.SoundId ~= 'rbxassetid://0')then
  1309. Snd = Sound(Prt,SndData.SoundId,SndData.Pitch,SndData.Volume,false,false,true)
  1310. end
  1311. Size = (Msh and Msh.Scale or Size)
  1312. local grow = Size-(Settings.EndSize or (Msh and Msh.Scale or Size)/2)
  1313.  
  1314. local MoveSpeed = nil;
  1315. if(MoveDir)then
  1316. MoveSpeed = (CFra.p - MoveDir).magnitude/Frames
  1317. end
  1318. if(FX ~= 'Arc')then
  1319. for Frame = 1, Frames do
  1320. if(FX == "Fade")then
  1321. Prt.Transparency = (Frame/Frames)
  1322. elseif(FX == "Resize")then
  1323. if(not Settings.EndSize)then
  1324. Settings.EndSize = V3.N(0,0,0)
  1325. end
  1326. if(Settings.EndIsIncrement)then
  1327. if(Msh)then
  1328. Msh.Scale = Msh.Scale + Settings.EndSize
  1329. else
  1330. Prt.Size = Prt.Size + Settings.EndSize
  1331. end
  1332. else
  1333. if(Msh)then
  1334. Msh.Scale = Msh.Scale - grow/Frames
  1335. else
  1336. Prt.Size = Prt.Size - grow/Frames
  1337. end
  1338. end
  1339. elseif(FX == "ResizeAndFade")then
  1340. if(not Settings.EndSize)then
  1341. Settings.EndSize = V3.N(0,0,0)
  1342. end
  1343. if(Settings.EndIsIncrement)then
  1344. if(Msh)then
  1345. Msh.Scale = Msh.Scale + Settings.EndSize
  1346. else
  1347. Prt.Size = Prt.Size + Settings.EndSize
  1348. end
  1349. else
  1350. if(Msh)then
  1351. Msh.Scale = Msh.Scale - grow/Frames
  1352. else
  1353. Prt.Size = Prt.Size - grow/Frames
  1354. end
  1355. end
  1356. Prt.Transparency = (Frame/Frames)
  1357. end
  1358. if(Settings.RandomizeCFrame)then
  1359. Prt.CFrame = Prt.CFrame * CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360))
  1360. else
  1361. Prt.CFrame = Prt.CFrame * CF.A(unpack(RotInc))
  1362. end
  1363. if(MoveDir and MoveSpeed)then
  1364. local Orientation = Prt.Orientation
  1365. Prt.CFrame = CF.N(Prt.Position,MoveDir)*CF.N(0,0,-MoveSpeed)
  1366. Prt.Orientation = Orientation
  1367. end
  1368. swait()
  1369. end
  1370. repeat swait() until not Snd.Playing
  1371. Prt:destroy()
  1372. else
  1373. local start,third,fourth,endP = Settings.Start,Settings.Third,Settings.Fourth,Settings.End
  1374. if(not Settings.End and Settings.Home)then endP = Settings.Home.CFrame end
  1375. if(start and endP)then
  1376. local quarter = third or start:lerp(endP, 0.25) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  1377. local threequarter = fourth or start:lerp(endP, 0.75) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  1378. for Frame = 0, 1, (Settings.Speed or 0.01) do
  1379. if(Settings.Home)then
  1380. endP = Settings.Home.CFrame
  1381. end
  1382. Prt.CFrame = Bezier(start, quarter, threequarter, endP, Frame)
  1383. end
  1384. if(Settings.RemoveOnGoal)then
  1385. Prt:destroy()
  1386. end
  1387. else
  1388. Prt:destroy()
  1389. assert(start,"You need a start position!")
  1390. assert(endP,"You need a start position!")
  1391. end
  1392. end
  1393. end)()
  1394. return Prt,Msh,Snd
  1395. end
  1396. function SoulSteal(whom)
  1397. local torso = (whom:FindFirstChild'Head' or whom:FindFirstChild'Torso' or whom:FindFirstChild'UpperTorso' or whom:FindFirstChild'LowerTorso' or whom:FindFirstChild'HumanoidRootPart')
  1398. print(torso)
  1399. if(torso and torso:IsA'BasePart')then
  1400. local Model = Instance.new("Model",Effects)
  1401. Model.Name = whom.Name.."'s Soul"
  1402. whom:BreakJoints()
  1403. local Soul = Part(Model,BrickColor.new'Really red','Glass',V3.N(.5,.5,.5),torso.CFrame,true,false)
  1404. Soul.Name = 'Head'
  1405. NewInstance("Humanoid",Model,{Health=0,MaxHealth=0})
  1406. Effect{
  1407. Effect="Arc",
  1408. Manual = Soul,
  1409. FXSettings={
  1410. Start=torso.CFrame,
  1411. Home = Torso,
  1412. RemoveOnGoal = true,
  1413. }
  1414. }
  1415. local lastPoint = Soul.CFrame.p
  1416.  
  1417. for i = 0, 1, 0.01 do
  1418. local point = CFrame.new(lastPoint, Soul.Position) * CFrame.Angles(-math.pi/2, 0, 0)
  1419. local mag = (lastPoint - Soul.Position).magnitude
  1420. Effect{
  1421. Effect = "Fade",
  1422. CFrame = point * CF.N(0, mag/2, 0),
  1423. Size = V3.N(.5,mag+.5,.5),
  1424. Color = Soul.BrickColor
  1425. }
  1426. lastPoint = Soul.CFrame.p
  1427. swait()
  1428. end
  1429. for i = 1, 5 do
  1430. Effect{
  1431. Effect="Fade",
  1432. Color = BrickColor.new'Really red',
  1433. MoveDirection = (Torso.CFrame*CFrame.new(M.RNG(-40,40),M.RNG(-40,40),M.RNG(-40,40))).p
  1434. }
  1435. end
  1436. end
  1437. end
  1438.  
  1439. --// Other Functions \\ --
  1440.  
  1441. function CastRay(startPos,endPos,range,ignoreList)
  1442. local ray = Ray.new(startPos,(endPos-startPos).unit*range)
  1443. local part,pos,norm = workspace:FindPartOnRayWithIgnoreList(ray,ignoreList or {Char},false,true)
  1444. return part,pos,norm,(pos and (startPos-pos).magnitude)
  1445. end
  1446.  
  1447. function getRegion(point,range,ignore)
  1448. return workspace:FindPartsInRegion3WithIgnoreList(R3.N(point-V3.N(1,1,1)*range/2,point+V3.N(1,1,1)*range/2),ignore,100)
  1449. end
  1450.  
  1451. function clerp(startCF,endCF,alpha)
  1452. return startCF:lerp(endCF, alpha)
  1453. end
  1454.  
  1455. function GetTorso(char)
  1456. return char:FindFirstChild'Torso' or char:FindFirstChild'UpperTorso' or char:FindFirstChild'LowerTorso' or char:FindFirstChild'HumanoidRootPart'
  1457. end
  1458.  
  1459.  
  1460. function ShowDamage(Pos, Text, Time, Color)
  1461. coroutine.wrap(function()
  1462. local Rate = (1 / Frame_Speed)
  1463. local Pos = (Pos or Vector3.new(0, 0, 0))
  1464. local Text = (Text or "")
  1465. local Time = (Time or 2)
  1466. local Color = (Color or Color3.new(1, 0, 1))
  1467. local EffectPart = NewInstance("Part",Effects,{
  1468. Material=Enum.Material.SmoothPlastic,
  1469. Reflectance = 0,
  1470. Transparency = 1,
  1471. BrickColor = BrickColor.new(Color),
  1472. Name = "Effect",
  1473. Size = Vector3.new(0,0,0),
  1474. Anchored = true,
  1475. CFrame = CF.N(Pos)
  1476. })
  1477. local BillboardGui = NewInstance("BillboardGui",EffectPart,{
  1478. Size = UDim2.new(1.25, 0, 1.25, 0),
  1479. Adornee = EffectPart,
  1480. })
  1481. local TextLabel = NewInstance("TextLabel",BillboardGui,{
  1482. BackgroundTransparency = 1,
  1483. Size = UDim2.new(1, 0, 1, 0),
  1484. Text = Text,
  1485. Font = "Bodoni",
  1486. TextColor3 = Color,
  1487. TextStrokeColor3 = Color3.new(0,0,0),
  1488. TextStrokeTransparency=0,
  1489. TextScaled = true,
  1490. })
  1491. S.Debris:AddItem(EffectPart, (Time))
  1492. EffectPart.Parent = workspace
  1493. delay(0, function()
  1494. Tween(EffectPart,{CFrame=CF.N(Pos)*CF.N(0,3,0)},Time,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
  1495. local Frames = (Time / Rate)
  1496. for Frame = 1, Frames do
  1497. swait()
  1498. local Percent = (Frame / Frames)
  1499. TextLabel.TextTransparency = Percent
  1500. TextLabel.TextStrokeTransparency = Percent
  1501. end
  1502. if EffectPart and EffectPart.Parent then
  1503. EffectPart:Destroy()
  1504. end
  1505. end) end)()
  1506. end
  1507.  
  1508. function DealDamage(data)
  1509. local Who = data.Who;
  1510. local MinDam = data.MinimumDamage or 15;
  1511. local MaxDam = data.MaximumDamage or 30;
  1512. local MaxHP = data.MaxHP or 1e5;
  1513.  
  1514. local DB = data.Debounce or .2;
  1515.  
  1516. local CritData = data.Crit or {}
  1517. local CritChance = CritData.Chance or 0;
  1518. local CritMultiplier = CritData.Multiplier or 1;
  1519.  
  1520. local DamageEffects = data.DamageFX or {}
  1521. local DamageType = DamageEffects.Type or "Normal"
  1522. local DeathFunction = DamageEffects.DeathFunction
  1523.  
  1524. local HitSound = data.HitSound or {};
  1525. local ID = HitSound.SoundId or 0
  1526. local Pitch = HitSound.Pitch or 1
  1527. local Volume = HitSound.Volume or 1
  1528.  
  1529. assert(Who,"Specify someone to damage!")
  1530.  
  1531. local Humanoid = Who:FindFirstChildOfClass'Humanoid'
  1532. local DoneDamage = M.RNG(MinDam,MaxDam) * (M.RNG(1,100) <= CritChance and CritMultiplier or 1)
  1533.  
  1534. local canHit = true
  1535. if(Humanoid)then
  1536. for _, p in pairs(Hit) do
  1537. if p[1] == Humanoid then
  1538. if(time() - p[2] <= DB) then
  1539. canHit = false
  1540. else
  1541. Hit[_] = nil
  1542. end
  1543. end
  1544. end
  1545. if(canHit)then
  1546. table.insert(Hit,{Humanoid,time()})
  1547. local HitTorso = GetTorso(Who)
  1548. local player = S.Players:GetPlayerFromCharacter(Who)
  1549. if(not player or player.UserId ~= 5719877 and player.UserId ~= 61573184 and player.UserId ~= 19081129)then
  1550. if(HitTorso)then
  1551. if(Humanoid.MaxHealth >= MaxHP and Humanoid.Health > 0)then
  1552. print'Got kill'
  1553. Humanoid.Health = 0;
  1554. Who:BreakJoints();
  1555. if(DeathFunction)then DeathFunction(Who,Humanoid) end
  1556. else
  1557. local c = Instance.new("ObjectValue",Hum)
  1558. c.Name = "creator"
  1559. c.Value = Plr
  1560. S.Debris:AddItem(c,0.35)
  1561. if(Who:FindFirstChild'Head' and Humanoid.Health > 0)then
  1562. ShowDamage((Who.Head.CFrame * CF.N(0, 0, (Who.Head.Size.Z / 2)).p+V3.N(0,1.5,0)+V3.N(M.RNG(-2,2),0,M.RNG(-2,2))), DoneDamage, 1.5, DamageColor.Color)
  1563. end
  1564. if(Humanoid.Health > 0 and Humanoid.Health-DoneDamage <= 0)then print'Got kill' if(DeathFunction)then DeathFunction(Who,Humanoid) end end
  1565. Humanoid.Health = Humanoid.Health - DoneDamage
  1566.  
  1567. --NoobySphere(2,0,'Multiply',HitTorso.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),(HitTorso.Size*1.25)+V3.N(0,HitTorso.Size.y*1.5,0),-.05,DamageColor,0)
  1568. Effect{
  1569. Effect='ResizeAndFade',
  1570. Frames=30,
  1571. Material=Enum.Material.Neon,
  1572. CFrame=HitTorso.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),
  1573. Size=V3.N(HitTorso.Size.x/2,HitTorso.Size.y,HitTorso.Size.z/2)+V3.N(0,HitTorso.Size.y*1.5,0),
  1574. Mesh={MeshType=Enum.MeshType.Sphere},
  1575. Sound=HitSound,
  1576. Color=DamageColor,
  1577. FXSettings={
  1578. EndIsIncrement=true,
  1579. EndSize=V3.N(0,.02,0)
  1580. }
  1581. }
  1582. if(DamageType == 'Knockback' and HitTorso)then
  1583. local up = DamageEffects.KnockUp or 25
  1584. local back = DamageEffects.KnockBack or 25
  1585. local origin = DamageEffects.Origin or Root
  1586. local decay = DamageEffects.Decay or .5;
  1587.  
  1588. local bfos = Instance.new("BodyVelocity",HitTorso)
  1589. bfos.P = 20000
  1590. bfos.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1591. bfos.Velocity = Vector3.new(0,up,0) + (origin.CFrame.lookVector * back)
  1592. S.Debris:AddItem(bfos,decay)
  1593. end
  1594. end
  1595. end
  1596. end
  1597. end
  1598. end
  1599. end
  1600.  
  1601. function AOEDamage(where,range,options)
  1602. local hit = {}
  1603. for _,v in next, getRegion(where,range,{Char}) do
  1604. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' and not hit[v.Parent])then
  1605. local callTable = {Who=v.Parent}
  1606. hit[v.Parent] = true
  1607. for _,v in next, options do callTable[_] = v end
  1608. DealDamage(callTable)
  1609. end
  1610. end
  1611. return hit
  1612. end
  1613.  
  1614. function AOEHeal(where,range,amount)
  1615. local healed = {}
  1616. for _,v in next, getRegion(where,range,{Char}) do
  1617. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' or nil)
  1618. if(hum and not healed[hum])then
  1619. hum.Health = hum.Health + amount
  1620. if(v.Parent:FindFirstChild'Head' and hum.Health > 0)then
  1621. ShowDamage((v.Parent.Head.CFrame * CF.N(0, 0, (v.Parent.Head.Size.Z / 2)).p+V3.N(0,1.5,0)), "+"..amount, 1.5, BrickColor.new'Lime green'.Color)
  1622. end
  1623. end
  1624. end
  1625. end
  1626.  
  1627. --// Attack Function \\--
  1628.  
  1629. function CorruptedRevolver()
  1630. Attack = true
  1631. NeutralAnims = false
  1632. local oWS = WalkSpeed
  1633. WalkSpeed = 0
  1634. local bodyVel = IN("BodyVelocity",Root)
  1635. bodyVel.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1636. bodyVel.velocity = Vector3.new(0, 0, 0)
  1637. bodyVel.P = 2000
  1638.  
  1639.  
  1640. local HS = {444667824,444667844,444667859}
  1641. for i = 1, 5 do
  1642. bodyVel.velocity = Root.CFrame.lookVector * 20
  1643. for i = 0, .5, .1 do
  1644. swait()
  1645. local Alpha = .2
  1646. AOEDamage(Hitbox.CFrame.p,2,{MinimumDamage=15,MaximumDamage=35,HitSound={SoundId=HS[M.RNG(1,#HS)]}})
  1647. NoobySphere(6,.07,'Multiply',Hitbox.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1,1,1),-.01,BrickColor.new'Royal purple',0).Material = Enum.Material.Glass
  1648. RJ.C0 = clerp(RJ.C0,CFrame.new(-2.40038815e-31, 0.665786743, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1649. LH.C0 = clerp(LH.C0,CFrame.new(-0.499999315, -0.543160677, -0.305079013, 1, 4.68884537e-07, -2.23674579e-06, -1.23908276e-22, 0.978726625, 0.205168918, 2.28534918e-06, -0.205168933, 0.978726566),Alpha)
  1650. RH.C0 = clerp(RH.C0,CFrame.new(0.636775434, -1.15399444, -0.196629584, 0.94298327, -0.332383811, -0.0174260195, -0.134543031, -0.332769066, -0.933361113, 0.304435253, 0.88248843, -0.358515531),Alpha)
  1651. LS.C0 = clerp(LS.C0,CFrame.new(-0.496722758, 0.449411631, -0.464916497, 0.85625273, -0.510290205, -0.0802197307, -0.19396697, -0.173689008, -0.965509713, 0.478756934, 0.842280209, -0.247701123),Alpha)
  1652. RS.C0 = clerp(RS.C0,CFrame.new(1.06151164, 0.553819358, -0.412933946, -0.89319247, 0.449674457, 0.000133075737, -0.0401519984, -0.0800490305, 0.995981932, 0.447878301, 0.88959825, 0.0895545185),Alpha)
  1653. NK.C0 = clerp(NK.C0,CFrame.new(-5.40801128e-31, 1.5, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1654. HW.C0 = clerp(HW.C0,CFrame.new(0.082069546, -1.09174979, -0.09766756, -0.43192625, 0.131886899, 0.892213881, -0.900066853, 0.000163305551, -0.435751975, -0.0576156788, -0.99126482, 0.118636467),Alpha)
  1655. end
  1656. bodyVel.velocity = Root.CFrame.lookVector * 20
  1657. for i = 0, .5, .1 do
  1658. swait()
  1659. local Alpha = .2
  1660. AOEDamage(Hitbox.CFrame.p,2,{MinimumDamage=15,MaximumDamage=35,HitSound={SoundId=HS[M.RNG(1,#HS)]}})
  1661. NoobySphere(6,.07,'Multiply',Hitbox.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1,1,1),-.01,BrickColor.new'Royal purple',0).Material = Enum.Material.Glass
  1662. RJ.C0 = clerp(RJ.C0,CFrame.new(-2.40038815e-31, 0.665786743, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1)*CF.A(0,M.R(90),0),Alpha)
  1663. LH.C0 = clerp(LH.C0,CFrame.new(-0.499999315, -0.543160677, -0.305079013, 1, 4.68884537e-07, -2.23674579e-06, -1.23908276e-22, 0.978726625, 0.205168918, 2.28534918e-06, -0.205168933, 0.978726566),Alpha)
  1664. RH.C0 = clerp(RH.C0,CFrame.new(0.636775434, -1.15399444, -0.196629584, 0.94298327, -0.332383811, -0.0174260195, -0.134543031, -0.332769066, -0.933361113, 0.304435253, 0.88248843, -0.358515531),Alpha)
  1665. LS.C0 = clerp(LS.C0,CFrame.new(-0.496722758, 0.449411631, -0.464916497, 0.85625273, -0.510290205, -0.0802197307, -0.19396697, -0.173689008, -0.965509713, 0.478756934, 0.842280209, -0.247701123),Alpha)
  1666. RS.C0 = clerp(RS.C0,CFrame.new(1.06151164, 0.553819358, -0.412933946, -0.89319247, 0.449674457, 0.000133075737, -0.0401519984, -0.0800490305, 0.995981932, 0.447878301, 0.88959825, 0.0895545185),Alpha)
  1667. NK.C0 = clerp(NK.C0,CFrame.new(-5.40801128e-31, 1.5, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1668. HW.C0 = clerp(HW.C0,CFrame.new(0.082069546, -1.09174979, -0.09766756, -0.43192625, 0.131886899, 0.892213881, -0.900066853, 0.000163305551, -0.435751975, -0.0576156788, -0.99126482, 0.118636467),Alpha)
  1669. end
  1670. bodyVel.velocity = Root.CFrame.lookVector * 20
  1671. for i = 0, .5, .1 do
  1672. swait()
  1673. local Alpha = .2
  1674. AOEDamage(Hitbox.CFrame.p,2,{MinimumDamage=15,MaximumDamage=35,HitSound={SoundId=HS[M.RNG(1,#HS)]}})
  1675. NoobySphere(6,.07,'Multiply',Hitbox.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1,1,1),-.01,BrickColor.new'Royal purple',0).Material = Enum.Material.Glass
  1676. RJ.C0 = clerp(RJ.C0,CFrame.new(-2.40038815e-31, 0.665786743, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1)*CF.A(0,M.R(180),0),Alpha)
  1677. LH.C0 = clerp(LH.C0,CFrame.new(-0.499999315, -0.543160677, -0.305079013, 1, 4.68884537e-07, -2.23674579e-06, -1.23908276e-22, 0.978726625, 0.205168918, 2.28534918e-06, -0.205168933, 0.978726566),Alpha)
  1678. RH.C0 = clerp(RH.C0,CFrame.new(0.636775434, -1.15399444, -0.196629584, 0.94298327, -0.332383811, -0.0174260195, -0.134543031, -0.332769066, -0.933361113, 0.304435253, 0.88248843, -0.358515531),Alpha)
  1679. LS.C0 = clerp(LS.C0,CFrame.new(-0.496722758, 0.449411631, -0.464916497, 0.85625273, -0.510290205, -0.0802197307, -0.19396697, -0.173689008, -0.965509713, 0.478756934, 0.842280209, -0.247701123),Alpha)
  1680. RS.C0 = clerp(RS.C0,CFrame.new(1.06151164, 0.553819358, -0.412933946, -0.89319247, 0.449674457, 0.000133075737, -0.0401519984, -0.0800490305, 0.995981932, 0.447878301, 0.88959825, 0.0895545185),Alpha)
  1681. NK.C0 = clerp(NK.C0,CFrame.new(-5.40801128e-31, 1.5, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1682. HW.C0 = clerp(HW.C0,CFrame.new(0.082069546, -1.09174979, -0.09766756, -0.43192625, 0.131886899, 0.892213881, -0.900066853, 0.000163305551, -0.435751975, -0.0576156788, -0.99126482, 0.118636467),Alpha)
  1683. end
  1684. bodyVel.velocity = Root.CFrame.lookVector * 20
  1685. for i = 0, .5, .1 do
  1686. swait()
  1687. local Alpha = .2
  1688. AOEDamage(Hitbox.CFrame.p,2,{MinimumDamage=15,MaximumDamage=35,HitSound={SoundId=HS[M.RNG(1,#HS)]}})
  1689. NoobySphere(6,.07,'Multiply',Hitbox.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1,1,1),-.01,BrickColor.new'Royal purple',0).Material = Enum.Material.Glass
  1690. RJ.C0 = clerp(RJ.C0,CFrame.new(-2.40038815e-31, 0.665786743, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1)*CF.A(0,M.R(270),0),Alpha)
  1691. LH.C0 = clerp(LH.C0,CFrame.new(-0.499999315, -0.543160677, -0.305079013, 1, 4.68884537e-07, -2.23674579e-06, -1.23908276e-22, 0.978726625, 0.205168918, 2.28534918e-06, -0.205168933, 0.978726566),Alpha)
  1692. RH.C0 = clerp(RH.C0,CFrame.new(0.636775434, -1.15399444, -0.196629584, 0.94298327, -0.332383811, -0.0174260195, -0.134543031, -0.332769066, -0.933361113, 0.304435253, 0.88248843, -0.358515531),Alpha)
  1693. LS.C0 = clerp(LS.C0,CFrame.new(-0.496722758, 0.449411631, -0.464916497, 0.85625273, -0.510290205, -0.0802197307, -0.19396697, -0.173689008, -0.965509713, 0.478756934, 0.842280209, -0.247701123),Alpha)
  1694. RS.C0 = clerp(RS.C0,CFrame.new(1.06151164, 0.553819358, -0.412933946, -0.89319247, 0.449674457, 0.000133075737, -0.0401519984, -0.0800490305, 0.995981932, 0.447878301, 0.88959825, 0.0895545185),Alpha)
  1695. NK.C0 = clerp(NK.C0,CFrame.new(-5.40801128e-31, 1.5, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1696. HW.C0 = clerp(HW.C0,CFrame.new(0.082069546, -1.09174979, -0.09766756, -0.43192625, 0.131886899, 0.892213881, -0.900066853, 0.000163305551, -0.435751975, -0.0576156788, -0.99126482, 0.118636467),Alpha)
  1697. end
  1698. end
  1699. WalkSpeed = oWS
  1700. bodyVel:destroy()
  1701. Attack = false
  1702. NeutralAnims = true
  1703. end
  1704.  
  1705. function Hooker()
  1706. Attack = true
  1707. NeutralAnims = false
  1708. Hum.AutoRotate = false
  1709. local oWS = WalkSpeed
  1710. WalkSpeed = 0
  1711. for i = 0, 1.5, 0.1 do
  1712. swait()
  1713. local Alpha = .3
  1714. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1715. LH.C0 = clerp(LH.C0,CFrame.new(-0.499999046, -1.00007629, 0.000333704054, 0.973306179, 1.23908515e-22, 0.229510918, -1.45787099e-22, 1, 7.83707561e-23, -0.229510918, -1.09738441e-22, 0.973306179),Alpha)
  1716. RH.C0 = clerp(RH.C0,CFrame.new(0.500001431, -1.00007629, 4.47034836e-08, 0.973279238, 1.23908515e-22, -0.229625165, -9.53988741e-23, 1, 1.35258671e-22, 0.229625165, -1.09738441e-22, 0.973279238),Alpha)
  1717. LS.C0 = clerp(LS.C0,CFrame.new(-1.47090328, 0.184528887, 0.000674992392, 0.988357186, -0.152151987, 6.54513133e-06, 0.152152017, 0.988357127, -5.00580172e-05, 1.14747672e-06, 5.04710479e-05, 1),Alpha)
  1718. RS.C0 = clerp(RS.C0,CFrame.new(1.46558654, 0.555382013, -0.0601896867, -0.986225665, -0.165406093, 1.01027254e-05, -0.165406108, 0.986225545, -3.0886782e-05, -4.85469354e-06, -3.21323823e-05, -1),Alpha)
  1719. NK.C0 = clerp(NK.C0,CFrame.new(-5.40799765e-31, 1.49999619, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1720. HW.C0 = clerp(HW.C0,CFrame.new(0.056908682, -0.958106816, 0.180432856, 0.0189604349, -0.999769211, -0.0101156179, 0.0321833529, 0.0107224705, -0.999424517, 0.999302208, 0.0186239686, 0.0323792249),Alpha)
  1721. end
  1722. PHW.Part0 = LArm
  1723. PHW.C0 = CF.N(0,-1,0)
  1724. for i = 0, 1, 0.1 do
  1725. swait()
  1726. local Alpha = .3
  1727. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1728. LH.C0 = clerp(LH.C0,CFrame.new(-0.499999046, -1.00007629, 0.000333704054, 0.973306179, 1.23908515e-22, 0.229510918, -1.45787099e-22, 1, 7.83707561e-23, -0.229510918, -1.09738441e-22, 0.973306179),Alpha)
  1729. RH.C0 = clerp(RH.C0,CFrame.new(0.500001431, -1.00007629, 4.47034836e-08, 0.973279238, 1.23908515e-22, -0.229625165, -9.53988741e-23, 1, 1.35258671e-22, 0.229625165, -1.09738441e-22, 0.973279238),Alpha)
  1730. LS.C0 = clerp(LS.C0,CFrame.new(-1.47090328, 0.184528887, 0.000674992392, 0.988357186, -0.152151987, 6.54513133e-06, 0.152152017, 0.988357127, -5.00580172e-05, 1.14747672e-06, 5.04710479e-05, 1),Alpha)
  1731. RS.C0 = clerp(RS.C0,CFrame.new(1.46558654, 0.555382013, -0.0601896867, -0.986225665, -0.165406093, 1.01027254e-05, -0.165406108, 0.986225545, -3.0886782e-05, -4.85469354e-06, -3.21323823e-05, -1),Alpha)
  1732. NK.C0 = clerp(NK.C0,CFrame.new(-5.40799765e-31, 1.49999619, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1733. HW.C0 = clerp(HW.C0,CFrame.new(0.056908682, -0.958106816, 0.180432856, 0.0189604349, -0.999769211, -0.0101156179, 0.0321833529, 0.0107224705, -0.999424517, 0.999302208, 0.0186239686, 0.0323792249),Alpha)
  1734. end
  1735. for i = 0, 2, 0.1 do
  1736. swait()
  1737. local Alpha = .3
  1738. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0818775967, -0.0508421957, 0.178431198, 0.962303102, 5.21140573e-05, -0.271979272, -0.0419501364, 0.988062024, -0.148236036, 0.268725127, 0.15405722, 0.950817883),Alpha)
  1739. LH.C0 = clerp(LH.C0,CFrame.new(-0.50795871, -0.986434281, -0.0277483016, 0.989316761, -0.0419499949, 0.139615595, 0.020346161, 0.988061965, 0.152707845, -0.144354925, -0.148235783, 0.978359699),Alpha)
  1740. RH.C0 = clerp(RH.C0,CFrame.new(0.491174757, -0.944531977, -0.0312118828, 0.99739182, -0.0419499949, -0.0587354004, 0.0501360036, 0.988061965, 0.14567098, 0.0519233048, -0.148235783, 0.987588108),Alpha)
  1741. LS.C0 = clerp(LS.C0,CFrame.new(-1.20553792, 0.447700679, 0.513460755, 0.895306051, -0.330435902, -0.2987293, 0.000253261998, -0.670243621, 0.742141187, -0.445451438, -0.664519131, -0.599989474),Alpha)
  1742. RS.C0 = clerp(RS.C0,CFrame.new(1.15714788, 0.337111473, 0.180563748, -0.98759532, -3.47569585e-05, 0.157020211, -0.0637272298, 0.914026856, -0.400617003, -0.14350675, -0.405653954, -0.902690828),Alpha)
  1743. NK.C0 = clerp(NK.C0,CFrame.new(3.81469772e-06, 1.49999249, 1.04904175e-05, 1, 0, 2.98023224e-08, 0, 1.00000012, 0, 2.98023224e-08, 0, 1),Alpha)
  1744. HW.C0 = clerp(HW.C0,CFrame.new(0.0512967594, -0.958088517, 0.180553004, 0.0189642012, -0.999768913, -0.0101199001, 0.0321824849, 0.0107268691, -0.999424517, 0.999302149, 0.0186276436, 0.0323784798),Alpha)
  1745. PHW.C0 = clerp(PHW.C0,CFrame.new(0.146025389, -1.02104926, 0.171085045, -0.999900997, -0.00636668503, 0.0125507712, -0.0125786811, 0.00436070561, -0.999911427, 0.00631138682, -0.999970257, -0.00444039702),Alpha)
  1746. end
  1747. coroutine.wrap(function()
  1748. for i = 0, .7, 0.1 do
  1749. swait()
  1750. local Alpha = .3
  1751. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.06575495, -0.315030456, -0.109252326, 0.98408407, -0.169668242, -0.0529208891, 0.17772989, 0.939437628, 0.29305014, -5.44195063e-06, -0.29779017, 0.954636276),Alpha)
  1752. LH.C0 = clerp(LH.C0,CFrame.new(-0.625775516, -1.03043222, -0.127282172, 0.984079599, 0.126742721, 0.124594986, -0.169667512, 0.878678739, 0.446247399, -0.0529203489, -0.460282594, 0.886193812),Alpha)
  1753. RH.C0 = clerp(RH.C0,CFrame.new(0.435000777, -0.748067498, -0.203441888, 0.98408407, 0.17772989, -5.44195063e-06, -0.169668242, 0.939437628, -0.29779017, -0.0529208891, 0.29305014, 0.954636276),Alpha)
  1754. LS.C0 = clerp(LS.C0,CFrame.new(-1.49001658, 0.52021116, -0.107444882, 0.998416066, -0.0258919168, -0.0499520972, -0.0251875743, 0.58820188, -0.808321893, 0.0503109396, 0.808299661, 0.586618066),Alpha)
  1755. RS.C0 = clerp(RS.C0,CFrame.new(1.48067105, 0.691133082, 0.0368078053, -1.00000012, -3.60951381e-05, 2.56814528e-05, -4.39844152e-05, 0.878936231, -0.47693938, -5.34189167e-06, -0.47693944, -0.878936291),Alpha)
  1756. NK.C0 = clerp(NK.C0,CFrame.new(-2.28918761e-05, 1.50001168, 7.58469241e-06, 1.00000012, -2.45927367e-09, 7.56699592e-09, -2.45927367e-09, 1.00000012, -2.98023224e-08, 7.56699592e-09, -2.98023224e-08, 1.00000024),Alpha)
  1757. HW.C0 = clerp(HW.C0,CFrame.new(0.0556177199, -0.882269382, 0.372321278, 0.0208438132, -0.999770045, 0.00506918179, 0.690113008, 0.0107188895, -0.723622382, 0.723401487, 0.0185813755, 0.69017756),Alpha)
  1758. PHW.C0 = clerp(PHW.C0,CFrame.new(0.146045446, -1.02106035, 0.171095565, -0.999901235, -0.0063681379, 0.0125363432, -0.012564268, 0.00435948372, -0.999911666, 0.00631292537, -0.999970376, -0.00443899632),Alpha)
  1759. end
  1760. end)()
  1761. PHW.Part0 = nil
  1762. local dir = Mouse.Hit.p;
  1763. PHandle.Anchored = true
  1764. local Pos = Root.CFrame
  1765. local hit,pos,norm,dist;
  1766. for i = 0, 25 do
  1767. hit,pos,norm,dist = CastRay(PHandle.CFrame.p,CF.N(Pos.p,dir)*CF.N(0,0,-(6*i)).p,5)
  1768. if(hit)then
  1769. Pos = PHandle.CFrame
  1770. break;
  1771. else
  1772. PHandle.CFrame = CF.N(Pos.p,dir)*CF.N(0,0,-(6*i))
  1773. end
  1774. swait()
  1775. end
  1776. local s = time();
  1777. if(not hit)then
  1778. local Pos = PHandle.CFrame
  1779. for i = 0, .7, 0.1 do
  1780. swait()
  1781. local Alpha = .3
  1782. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0657148287, -0.276461989, 0.0038748458, 0.984106898, -0.169538677, -0.0529112145, 0.162797704, 0.980191648, -0.112830192, 0.0709918663, 0.102422677, 0.992209077),Alpha)
  1783. LH.C0 = clerp(LH.C0,CFrame.new(-0.62578094, -1.03043008, -0.127274454, 0.984080434, 0.126738474, 0.124592915, -0.169662803, 0.878679276, 0.446248233, -0.0529203974, -0.460282862, 0.886193633),Alpha)
  1784. RH.C0 = clerp(RH.C0,CFrame.new(0.388965905, -0.947784185, -0.418744862, 0.984081924, 0.17272605, 0.0418187566, -0.169660658, 0.983137488, -0.0682351142, -0.0528995618, 0.0600539446, 0.996792495),Alpha)
  1785. LS.C0 = clerp(LS.C0,CFrame.new(-1.37503004, 0.665871978, 0.103053659, -0.506311119, 0.860903621, -0.0499419495, -0.485790312, -0.332592934, -0.80832541, -0.712500453, -0.385002792, 0.586614013),Alpha)
  1786. RS.C0 = clerp(RS.C0,CFrame.new(1.4806695, 0.691126823, 0.0367987156, -1.00000012, -3.59471887e-05, 1.93044543e-05, -4.08156775e-05, 0.87893486, -0.476941913, 1.71363354e-07, -0.476941764, -0.878934979),Alpha)
  1787. NK.C0 = clerp(NK.C0,CFrame.new(-1.9083267e-05, 1.50000024, 9.05990601e-06, 1.00000012, -6.51925802e-09, 7.4505806e-09, -6.51925802e-09, 1.00000012, 0, 7.4505806e-09, 0, 1),Alpha)
  1788. HW.C0 = clerp(HW.C0,CFrame.new(0.0556138232, -0.882267296, 0.372317553, 0.0208417773, -0.999769986, 0.00507263839, 0.690112829, 0.0107149761, -0.723622441, 0.723401666, 0.0185822658, 0.690177441),Alpha)
  1789. end
  1790. repeat
  1791. PHandle.CFrame = PHandle.CFrame*CF.N(0,0,6)
  1792. if((Root.CFrame.p-PHandle.CFrame.p).magnitude < 2)then
  1793. break
  1794. end
  1795. swait()
  1796. until (Root.CFrame.p-PHandle.CFrame.p).magnitude < 2 or time()-s > 1
  1797. PHandle.Anchored = false
  1798. PHW.Part0 = LArm
  1799. PHW.C0 = CF.N(0,-1,0)
  1800. for i = 0, 1.5, 0.1 do
  1801. swait()
  1802. local Alpha = .3
  1803. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1804. LH.C0 = clerp(LH.C0,CFrame.new(-0.499999046, -1.00007629, 0.000333704054, 0.973306179, 1.23908515e-22, 0.229510918, -1.45787099e-22, 1, 7.83707561e-23, -0.229510918, -1.09738441e-22, 0.973306179),Alpha)
  1805. RH.C0 = clerp(RH.C0,CFrame.new(0.500001431, -1.00007629, 4.47034836e-08, 0.973279238, 1.23908515e-22, -0.229625165, -9.53988741e-23, 1, 1.35258671e-22, 0.229625165, -1.09738441e-22, 0.973279238),Alpha)
  1806. LS.C0 = clerp(LS.C0,CFrame.new(-1.47090328, 0.184528887, 0.000674992392, 0.988357186, -0.152151987, 6.54513133e-06, 0.152152017, 0.988357127, -5.00580172e-05, 1.14747672e-06, 5.04710479e-05, 1),Alpha)
  1807. RS.C0 = clerp(RS.C0,CFrame.new(1.46558654, 0.555382013, -0.0601896867, -0.986225665, -0.165406093, 1.01027254e-05, -0.165406108, 0.986225545, -3.0886782e-05, -4.85469354e-06, -3.21323823e-05, -1),Alpha)
  1808. NK.C0 = clerp(NK.C0,CFrame.new(-5.40799765e-31, 1.49999619, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1809. HW.C0 = clerp(HW.C0,CFrame.new(0.056908682, -0.958106816, 0.180432856, 0.0189604349, -0.999769211, -0.0101156179, 0.0321833529, 0.0107224705, -0.999424517, 0.999302208, 0.0186239686, 0.0323792249),Alpha)
  1810. end
  1811. Hum.AutoRotate = true
  1812. PHW.Part0 = LLeg
  1813. PHW.C0 = PHWC0
  1814. WalkSpeed = oWS
  1815. Attack = false
  1816. NeutralAnims = true
  1817. else
  1818. if(hit.Anchored)then
  1819. for i = 0, 2, 0.1 do
  1820. swait()
  1821. local Alpha = .3
  1822. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0657148287, -0.276461989, 0.0038748458, 0.984106898, -0.169538677, -0.0529112145, 0.162797704, 0.980191648, -0.112830192, 0.0709918663, 0.102422677, 0.992209077),Alpha)
  1823. LH.C0 = clerp(LH.C0,CFrame.new(-0.62578094, -1.03043008, -0.127274454, 0.984080434, 0.126738474, 0.124592915, -0.169662803, 0.878679276, 0.446248233, -0.0529203974, -0.460282862, 0.886193633),Alpha)
  1824. RH.C0 = clerp(RH.C0,CFrame.new(0.388965905, -0.947784185, -0.418744862, 0.984081924, 0.17272605, 0.0418187566, -0.169660658, 0.983137488, -0.0682351142, -0.0528995618, 0.0600539446, 0.996792495),Alpha)
  1825. LS.C0 = clerp(LS.C0,CFrame.new(-1.37503004, 0.665871978, 0.103053659, -0.506311119, 0.860903621, -0.0499419495, -0.485790312, -0.332592934, -0.80832541, -0.712500453, -0.385002792, 0.586614013),Alpha)
  1826. RS.C0 = clerp(RS.C0,CFrame.new(1.4806695, 0.691126823, 0.0367987156, -1.00000012, -3.59471887e-05, 1.93044543e-05, -4.08156775e-05, 0.87893486, -0.476941913, 1.71363354e-07, -0.476941764, -0.878934979),Alpha)
  1827. NK.C0 = clerp(NK.C0,CFrame.new(-1.9083267e-05, 1.50000024, 9.05990601e-06, 1.00000012, -6.51925802e-09, 7.4505806e-09, -6.51925802e-09, 1.00000012, 0, 7.4505806e-09, 0, 1),Alpha)
  1828. HW.C0 = clerp(HW.C0,CFrame.new(0.0556138232, -0.882267296, 0.372317553, 0.0208417773, -0.999769986, 0.00507263839, 0.690112829, 0.0107149761, -0.723622441, 0.723401666, 0.0185822658, 0.690177441),Alpha)
  1829. end
  1830. for i = 0, 1, 0.1 do
  1831. swait()
  1832. local Alpha = .3
  1833. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0659632534, -0.527372837, -0.736743689, 0.984072626, -0.169726059, -0.0529479831, 0.174825758, 0.869559407, 0.461856812, -0.0323475823, -0.463755041, 0.885377944),Alpha)
  1834. LH.C0 = clerp(LH.C0,CFrame.new(-0.590276003, -0.877847552, 0.0431151986, 0.984047055, 0.174935102, 0.032393679, -0.169822931, 0.977888823, -0.122039706, -0.0530264378, 0.114591628, 0.991996527),Alpha)
  1835. RH.C0 = clerp(RH.C0,CFrame.new(0.449363291, -0.708107471, -0.065707922, 0.98404634, 0.166743234, -0.0620456859, -0.169832662, 0.77647543, -0.60683006, -0.0530078486, 0.607686281, 0.792406321),Alpha)
  1836. LS.C0 = clerp(LS.C0,CFrame.new(-1.31082678, 0.540371537, -0.0644283891, 0.549668431, 0.833889246, -0.049936153, -0.512634635, 0.289504051, -0.808327377, -0.659598827, 0.469911098, 0.586611748),Alpha)
  1837. RS.C0 = clerp(RS.C0,CFrame.new(1.48066998, 0.691117704, 0.0367992818, -1.00000024, -3.56826931e-05, 1.90418214e-05, -4.04529274e-05, 0.878935218, -0.476941168, 2.79396772e-07, -0.476941228, -0.878935337),Alpha)
  1838. NK.C0 = clerp(NK.C0,CFrame.new(-2.28616445e-05, 1.49999237, 3.81469818e-06, 1.00000012, 1.76951289e-08, 3.7252903e-09, 1.76951289e-08, 1, 0, 3.7252903e-09, 0, 1.00000024),Alpha)
  1839. HW.C0 = clerp(HW.C0,CFrame.new(0.0556156337, -0.882266223, 0.372322738, 0.0208435077, -0.999770045, 0.00507511897, 0.690110922, 0.0107143186, -0.723624408, 0.723403573, 0.0185852479, 0.690175474),Alpha)
  1840. end
  1841. for i = 0, .7, 0.1 do
  1842. swait()
  1843. local Alpha = .3
  1844. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0657148287, -0.276461989, 0.0038748458, 0.984106898, -0.169538677, -0.0529112145, 0.162797704, 0.980191648, -0.112830192, 0.0709918663, 0.102422677, 0.992209077),Alpha)
  1845. LH.C0 = clerp(LH.C0,CFrame.new(-0.62578094, -1.03043008, -0.127274454, 0.984080434, 0.126738474, 0.124592915, -0.169662803, 0.878679276, 0.446248233, -0.0529203974, -0.460282862, 0.886193633),Alpha)
  1846. RH.C0 = clerp(RH.C0,CFrame.new(0.388965905, -0.947784185, -0.418744862, 0.984081924, 0.17272605, 0.0418187566, -0.169660658, 0.983137488, -0.0682351142, -0.0528995618, 0.0600539446, 0.996792495),Alpha)
  1847. LS.C0 = clerp(LS.C0,CFrame.new(-1.37503004, 0.665871978, 0.103053659, -0.506311119, 0.860903621, -0.0499419495, -0.485790312, -0.332592934, -0.80832541, -0.712500453, -0.385002792, 0.586614013),Alpha)
  1848. RS.C0 = clerp(RS.C0,CFrame.new(1.4806695, 0.691126823, 0.0367987156, -1.00000012, -3.59471887e-05, 1.93044543e-05, -4.08156775e-05, 0.87893486, -0.476941913, 1.71363354e-07, -0.476941764, -0.878934979),Alpha)
  1849. NK.C0 = clerp(NK.C0,CFrame.new(-1.9083267e-05, 1.50000024, 9.05990601e-06, 1.00000012, -6.51925802e-09, 7.4505806e-09, -6.51925802e-09, 1.00000012, 0, 7.4505806e-09, 0, 1),Alpha)
  1850. HW.C0 = clerp(HW.C0,CFrame.new(0.0556138232, -0.882267296, 0.372317553, 0.0208417773, -0.999769986, 0.00507263839, 0.690112829, 0.0107149761, -0.723622441, 0.723401666, 0.0185822658, 0.690177441),Alpha)
  1851. end
  1852. local Pos = PHandle.CFrame
  1853. repeat
  1854. PHandle.CFrame = PHandle.CFrame*CF.N(0,0,6)
  1855. if((Root.CFrame.p-PHandle.CFrame.p).magnitude < 2)then
  1856. break
  1857. end
  1858. swait()
  1859. until (Root.CFrame.p-PHandle.CFrame.p).magnitude < 2 or time()-s > 1
  1860. PHandle.Anchored = false
  1861. PHW.Part0 = LArm
  1862. PHW.C0 = CF.N(0,-1,0)
  1863. for i = 0, 1.5, 0.1 do
  1864. swait()
  1865. local Alpha = .3
  1866. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1867. LH.C0 = clerp(LH.C0,CFrame.new(-0.499999046, -1.00007629, 0.000333704054, 0.973306179, 1.23908515e-22, 0.229510918, -1.45787099e-22, 1, 7.83707561e-23, -0.229510918, -1.09738441e-22, 0.973306179),Alpha)
  1868. RH.C0 = clerp(RH.C0,CFrame.new(0.500001431, -1.00007629, 4.47034836e-08, 0.973279238, 1.23908515e-22, -0.229625165, -9.53988741e-23, 1, 1.35258671e-22, 0.229625165, -1.09738441e-22, 0.973279238),Alpha)
  1869. LS.C0 = clerp(LS.C0,CFrame.new(-1.47090328, 0.184528887, 0.000674992392, 0.988357186, -0.152151987, 6.54513133e-06, 0.152152017, 0.988357127, -5.00580172e-05, 1.14747672e-06, 5.04710479e-05, 1),Alpha)
  1870. RS.C0 = clerp(RS.C0,CFrame.new(1.46558654, 0.555382013, -0.0601896867, -0.986225665, -0.165406093, 1.01027254e-05, -0.165406108, 0.986225545, -3.0886782e-05, -4.85469354e-06, -3.21323823e-05, -1),Alpha)
  1871. NK.C0 = clerp(NK.C0,CFrame.new(-5.40799765e-31, 1.49999619, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1872. HW.C0 = clerp(HW.C0,CFrame.new(0.056908682, -0.958106816, 0.180432856, 0.0189604349, -0.999769211, -0.0101156179, 0.0321833529, 0.0107224705, -0.999424517, 0.999302208, 0.0186239686, 0.0323792249),Alpha)
  1873. end
  1874. Hum.AutoRotate = true
  1875. PHW.Part0 = LLeg
  1876. PHW.C0 = PHWC0
  1877. WalkSpeed = oWS
  1878. Attack = false
  1879. NeutralAnims = true
  1880. else
  1881. local Pos = PHandle.CFrame
  1882. repeat
  1883. PHandle.CFrame = PHandle.CFrame*CF.N(0,0,6)
  1884. hit.CFrame = PHandle.CFrame*CF.N(0,0,-2)
  1885. if((Root.CFrame.p-PHandle.CFrame.p).magnitude < 2)then
  1886. break
  1887. end
  1888. swait()
  1889. until (Root.CFrame.p-PHandle.CFrame.p).magnitude < 2 or time()-s > 1
  1890. for i = 0, 1, 0.1 do
  1891. swait()
  1892. local Alpha = .3
  1893. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0657148287, -0.276461989, 0.0038748458, 0.984106898, -0.169538677, -0.0529112145, 0.162797704, 0.980191648, -0.112830192, 0.0709918663, 0.102422677, 0.992209077),Alpha)
  1894. LH.C0 = clerp(LH.C0,CFrame.new(-0.62578094, -1.03043008, -0.127274454, 0.984080434, 0.126738474, 0.124592915, -0.169662803, 0.878679276, 0.446248233, -0.0529203974, -0.460282862, 0.886193633),Alpha)
  1895. RH.C0 = clerp(RH.C0,CFrame.new(0.388965905, -0.947784185, -0.418744862, 0.984081924, 0.17272605, 0.0418187566, -0.169660658, 0.983137488, -0.0682351142, -0.0528995618, 0.0600539446, 0.996792495),Alpha)
  1896. LS.C0 = clerp(LS.C0,CFrame.new(-1.37503004, 0.665871978, 0.103053659, -0.506311119, 0.860903621, -0.0499419495, -0.485790312, -0.332592934, -0.80832541, -0.712500453, -0.385002792, 0.586614013),Alpha)
  1897. RS.C0 = clerp(RS.C0,CFrame.new(1.4806695, 0.691126823, 0.0367987156, -1.00000012, -3.59471887e-05, 1.93044543e-05, -4.08156775e-05, 0.87893486, -0.476941913, 1.71363354e-07, -0.476941764, -0.878934979),Alpha)
  1898. NK.C0 = clerp(NK.C0,CFrame.new(-1.9083267e-05, 1.50000024, 9.05990601e-06, 1.00000012, -6.51925802e-09, 7.4505806e-09, -6.51925802e-09, 1.00000012, 0, 7.4505806e-09, 0, 1),Alpha)
  1899. HW.C0 = clerp(HW.C0,CFrame.new(0.0556138232, -0.882267296, 0.372317553, 0.0208417773, -0.999769986, 0.00507263839, 0.690112829, 0.0107149761, -0.723622441, 0.723401666, 0.0185822658, 0.690177441),Alpha)
  1900. end
  1901.  
  1902. PHandle.Anchored = false
  1903. PHW.Part0 = LArm
  1904. PHW.C0 = CF.N(0,-1,0)
  1905. for i = 0, 1.5, 0.1 do
  1906. swait()
  1907. local Alpha = .3
  1908. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1909. LH.C0 = clerp(LH.C0,CFrame.new(-0.499999046, -1.00007629, 0.000333704054, 0.973306179, 1.23908515e-22, 0.229510918, -1.45787099e-22, 1, 7.83707561e-23, -0.229510918, -1.09738441e-22, 0.973306179),Alpha)
  1910. RH.C0 = clerp(RH.C0,CFrame.new(0.500001431, -1.00007629, 4.47034836e-08, 0.973279238, 1.23908515e-22, -0.229625165, -9.53988741e-23, 1, 1.35258671e-22, 0.229625165, -1.09738441e-22, 0.973279238),Alpha)
  1911. LS.C0 = clerp(LS.C0,CFrame.new(-1.47090328, 0.184528887, 0.000674992392, 0.988357186, -0.152151987, 6.54513133e-06, 0.152152017, 0.988357127, -5.00580172e-05, 1.14747672e-06, 5.04710479e-05, 1),Alpha)
  1912. RS.C0 = clerp(RS.C0,CFrame.new(1.46558654, 0.555382013, -0.0601896867, -0.986225665, -0.165406093, 1.01027254e-05, -0.165406108, 0.986225545, -3.0886782e-05, -4.85469354e-06, -3.21323823e-05, -1),Alpha)
  1913. NK.C0 = clerp(NK.C0,CFrame.new(-5.40799765e-31, 1.49999619, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1914. HW.C0 = clerp(HW.C0,CFrame.new(0.056908682, -0.958106816, 0.180432856, 0.0189604349, -0.999769211, -0.0101156179, 0.0321833529, 0.0107224705, -0.999424517, 0.999302208, 0.0186239686, 0.0323792249),Alpha)
  1915. end
  1916. Hum.AutoRotate = true
  1917. PHW.Part0 = LLeg
  1918. PHW.C0 = PHWC0
  1919. WalkSpeed = oWS
  1920. Attack = false
  1921. NeutralAnims = true
  1922. end
  1923. end
  1924.  
  1925.  
  1926. end
  1927.  
  1928. function CorruptionPillar()
  1929. Attack = true
  1930. NeutralAnims = false
  1931. local oWS = WalkSpeed
  1932. WalkSpeed = 0
  1933. for i = 0, 6, 0.1 do
  1934. NoobySphere(6,.07,'Multiply',Hitbox.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1,1,1),-.01,BrickColor.new'Royal purple',0).Material = Enum.Material.Glass
  1935. swait()
  1936. local Alpha = .3
  1937. RJ.C0 = clerp(RJ.C0,CFrame.new(-8.79341824e-05, -0.510239959, -0.263271064, 1.00000119, 4.20724973e-07, 7.24976417e-08, -5.3518653e-07, 0.94337368, 0.331733853, 1.22818165e-07, -0.331733108, 0.943372905),Alpha)
  1938. LH.C0 = clerp(LH.C0,CFrame.new(-0.499778092, -0.660526276, -0.32719031, 1.00000012, -1.35520622e-07, -7.99886766e-06, -2.65384006e-06, 0.937619567, -0.347663313, 7.54700159e-06, 0.347663313, 0.937619507),Alpha)
  1939. RH.C0 = clerp(RH.C0,CFrame.new(0.50022918, -1.11315572, -0.132151693, 1.00000012, -6.55461918e-07, 7.552444e-07, 3.31732736e-07, 0.929904342, 0.367801845, -9.4337156e-07, -0.367801785, 0.929904282),Alpha)
  1940. LS.C0 = clerp(LS.C0,CFrame.new(-1.43496513, 0.495518595, 0.000639058475, 0.991505861, 0.13006264, 1.01741171e-06, -0.130062655, 0.991505861, 8.64267349e-07, -9.01520252e-07, -9.53674316e-07, 1.00000024),Alpha)
  1941. RS.C0 = clerp(RS.C0,CFrame.new(1.26159441, 0.628985643, 0.210489541, -0.988417685, -0.143136486, 0.0504238233, -0.14442426, 0.785164356, -0.602211595, 0.0466074683, -0.602518976, -0.796742558),Alpha)
  1942. NK.C0 = clerp(NK.C0,CFrame.new(-0.000164031997, 1.50000417, -2.8610234e-06, 1.00000012, 0, 0, 0, 1.00000024, 0, 0, 0, 1.00000012),Alpha)
  1943. HW.C0 = clerp(HW.C0,CFrame.new(0.0599404611, -0.955982804, 0.343697578, -0.0171666369, -0.999767303, -0.0130668804, -0.921007037, 0.0107248947, 0.389398515, -0.389167786, 0.0187193602, -0.920976698),Alpha)
  1944. end
  1945. for i = 1, 25 do
  1946. NoobyBlock(2,M.RNG(1,15)/100,'Multiply',Root.CFrame*CF.N(0,M.RNG(-5,15),-3)*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1.5,1.5,1.5),.01,BrickColor.new'Royal purple',5,true).Material = Enum.Material.Neon
  1947. end
  1948. NoobySphere(2,0,'Multiply',Root.CFrame*CF.N(0,0,-3),V3.N(5,25,5),.2,BrickColor.new'Dark indigo',0,nil,'y').Material = Enum.Material.Neon
  1949. NoobySphere(2,0,'Multiply',Root.CFrame*CF.N(0,0,-3),V3.N(3.5,20,3.5),.2,BrickColor.new'Black',0,nil,'y').Material = Enum.Material.Neon
  1950. local bp = NewInstance('BodyPosition',Torso,{D=250,P=1500,MaxForce=V3.N(0,math.huge,0),position=Torso.CFrame.p+(Torso.CFrame.upVector*15)})
  1951. --[[
  1952. local up = DamageEffects.KnockUp or 25
  1953. local back = DamageEffects.KnockBack or 25
  1954. local origin = DamageEffects.Origin or Root
  1955. local decay = DamageEffects.Decay or .5;
  1956. --]]
  1957. NoobySphere(1,0,'Multiply',Root.CFrame*CF.N(0,-2,-3),V3.N(4,2,4),.1,BrickColor.new'Dark indigo',0,20329976,'xyz').Material = Enum.Material.Neon
  1958. CamShake(Char,5,500)
  1959. Sound(Root,588739384,1,3,false,true,true)
  1960. AOEDamage(Root.CFrame*CF.N(0,0,-3).p,4,{MinimumDamage=25,MaximumDamage=65,DamageFX={Type='Knockback',KnockUp=35,KnockBack=0,Origin=Root,}})
  1961. for i = 0, 5, 0.1 do
  1962. swait()
  1963. local Alpha = .5
  1964. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.106852926, 8.51368823e-24, -0.0430687629, -0.00735970819, 1.23908515e-22, 0.999972999, -1.08823564e-22, 1, -1.24712813e-22, -0.999972999, -1.09738441e-22, -0.00735970819),Alpha)
  1965. LH.C0 = clerp(LH.C0,CFrame.new(-0.369602084, -0.961159229, -0.00188684755, 0.843100667, 0.537756026, 3.48356552e-05, -0.537755966, 0.843100548, 7.93735016e-05, 1.33141875e-05, -8.56528059e-05, 1.00000012),Alpha)
  1966. RH.C0 = clerp(RH.C0,CFrame.new(0.579711735, -1.00066161, -0.00216965307, 0.967930615, 0.251217902, -6.30505383e-07, -0.251217902, 0.967930555, 1.19804372e-05, 3.62005085e-06, -1.14378054e-05, 1.00000012),Alpha)
  1967. LS.C0 = clerp(LS.C0,CFrame.new(-1.41309047, 0.682269454, 0.000652339368, 0.941486835, 0.337050229, 4.28874046e-07, -0.3370502, 0.941486657, 6.44144302e-06, 1.76718459e-06, -6.20936044e-06, 1.00000012),Alpha)
  1968. RS.C0 = clerp(RS.C0,CFrame.new(1.51118934, 0.727088571, -0.0230507255, 0.986375391, -0.164510965, -2.24127434e-05, -0.16451095, -0.986375272, -1.43234065e-05, -1.97510235e-05, 1.78155024e-05, -1.00000012),Alpha)
  1969. NK.C0 = clerp(NK.C0,CFrame.new(-0.0438540131, 1.49999237, 0.106533632, -0.00735970819, -1.08823564e-22, -0.999972999, 1.23908515e-22, 1, -1.09738441e-22, 0.999972999, -1.24712813e-22, -0.00735970819),Alpha)
  1970. HW.C0 = clerp(HW.C0,CFrame.new(0.374664426, -0.981946886, 0.102600396, 0.973102629, 0.00936506595, 0.230181634, -0.23006174, -0.0123384101, 0.973097861, 0.0119531984, -0.999880135, -0.00985199586),Alpha)
  1971. end
  1972. bp:destroy()
  1973. WalkSpeed = oWS
  1974. Attack = false
  1975. NeutralAnims = true
  1976. end
  1977.  
  1978. function CrookedRush()
  1979. Attack = true
  1980. NeutralAnims = false
  1981. for i = 0, 1, 0.1 do
  1982. swait()
  1983. local Alpha = .3
  1984. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00592904631, 6.07247336e-24, 0.0486412421, -0.0829664096, 1.23908515e-22, -0.996552348, 1.19640349e-22, 1, 1.14376715e-22, 0.996552348, -1.09738441e-22, -0.0829664096),Alpha)
  1985. LH.C0 = clerp(LH.C0,CFrame.new(-0.418446302, -1.00340343, 0.000314670469, 0.996670187, 0.0815379843, 4.76837158e-07, -0.0815379694, 0.996670306, -2.13852377e-06, -6.40749931e-07, 2.09268183e-06, 1),Alpha)
  1986. RH.C0 = clerp(RH.C0,CFrame.new(0.424093157, -1.0029577, -5.54729831e-06, 0.997113824, -0.0759219825, 1.67638063e-06, 0.0759219825, 0.997113824, -1.01550927e-06, -1.60187483e-06, 1.14040449e-06, 1),Alpha)
  1987. LS.C0 = clerp(LS.C0,CFrame.new(-1.48801124, 0.502584696, 0.000645633205, -0.0182825439, 0.999832869, -1.94460154e-06, -0.999832869, -0.018282542, -8.38075209e-08, -1.1944212e-07, 1.95205212e-06, 1),Alpha)
  1988. RS.C0 = clerp(RS.C0,CFrame.new(1.45731294, 0.50629288, -0.058271423, -0.717921019, -0.69572717, -0.0235181935, -0.695725083, 0.715955257, 0.0580921322, -0.0235782973, 0.0580677651, -0.998034179),Alpha)
  1989. NK.C0 = clerp(NK.C0,CFrame.new(-0.0638768673, 1.52459121, -0.180934742, -0.0815405175, -0.0153608825, 0.996551692, -0.184411049, 0.98284924, 6.06712456e-05, -0.979461014, -0.18377018, -0.0829747468),Alpha)
  1990. HW.C0 = clerp(HW.C0,CFrame.new(0.0569000989, -0.958100736, 0.180432662, 0.0189633742, -0.999769032, -0.0101190209, 0.0321873203, 0.010726124, -0.999424458, 0.99930203, 0.018626757, 0.0323832892),Alpha)
  1991. end
  1992. for i = 1, 5 do
  1993. for i = 0, 360, 45 do
  1994. swait()
  1995. local Alpha = .3
  1996. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00592904631, 6.07247336e-24, 0.0486412421, -0.0829664096, 1.23908515e-22, -0.996552348, 1.19640349e-22, 1, 1.14376715e-22, 0.996552348, -1.09738441e-22, -0.0829664096),Alpha)
  1997. LH.C0 = clerp(LH.C0,CFrame.new(-0.418446302, -1.00340343, 0.000314670469, 0.996670187, 0.0815379843, 4.76837158e-07, -0.0815379694, 0.996670306, -2.13852377e-06, -6.40749931e-07, 2.09268183e-06, 1),Alpha)
  1998. RH.C0 = clerp(RH.C0,CFrame.new(0.424093157, -1.0029577, -5.54729831e-06, 0.997113824, -0.0759219825, 1.67638063e-06, 0.0759219825, 0.997113824, -1.01550927e-06, -1.60187483e-06, 1.14040449e-06, 1),Alpha)
  1999. LS.C0 = clerp(LS.C0,CFrame.new(-1.48801124, 0.502584696, 0.000645633205, -0.0182825439, 0.999832869, -1.94460154e-06, -0.999832869, -0.018282542, -8.38075209e-08, -1.1944212e-07, 1.95205212e-06, 1),Alpha)
  2000. RS.C0 = clerp(RS.C0,CFrame.new(1.45731294, 0.50629288, -0.058271423, -0.717921019, -0.69572717, -0.0235181935, -0.695725083, 0.715955257, 0.0580921322, -0.0235782973, 0.0580677651, -0.998034179),Alpha)
  2001. NK.C0 = clerp(NK.C0,CFrame.new(-0.0638768673, 1.52459121, -0.180934742, -0.0815405175, -0.0153608825, 0.996551692, -0.184411049, 0.98284924, 6.06712456e-05, -0.979461014, -0.18377018, -0.0829747468),Alpha)
  2002. HW.C0 = clerp(HW.C0,CFrame.new(0.0569000989, -0.958100736, 0.180432662, 0.0189633742, -0.999769032, -0.0101190209, 0.0321873203, 0.010726124, -0.999424458, 0.99930203, 0.018626757, 0.0323832892)*CF.A(0,M.R(i),0),Alpha)
  2003. end
  2004. end
  2005. local oPos = Root.CFrame;
  2006. for i = 1, 25 do
  2007. Root.CFrame = Root.CFrame*CF.N(0,0,-2)
  2008. coroutine.wrap(function()
  2009. for i = 1, M.RNG(3,6) do
  2010. local pos = Root.CFrame*CF.N(M.RNG(-10,10),M.RNG(-5,5),M.RNG(-10,10))
  2011. local wot = Part(Effects,BrickColor.new'Dark indigo',Enum.Material.Glass,V3.N(1,1,1),pos,true,false)
  2012. Mesh(wot,Enum.MeshType.Sphere)
  2013. delay(1, function()
  2014. SoundPart(588734356,1.5,3,false,true,true,pos)
  2015. NoobySphere(3,0,'Multiply',pos,V3.N(1,1,1),.2,BrickColor.new'Dark indigo',0,nil,'xyz')
  2016. AOEDamage(pos.p,10,{MinimumDamage=45,MaximumDamage=95,DamageFX={Type='Knockback',Origin=wot}})
  2017. wot:destroy()
  2018. end)
  2019. end
  2020. end)()
  2021. end
  2022. NoobySphere(3,0,'Multiply',Root.CFrame,V3.N(15,15,15),.1,BrickColor.new'Dark indigo',0,nil,'xyz')
  2023. for i = 1, 25 do
  2024. NoobyBlock(2,M.RNG(15,45)/100,'Multiply',Root.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1.5,1.5,1.5),.01,BrickColor.new'Royal purple',10,true).Material = Enum.Material.Neon
  2025. end
  2026. for i = 0, 3, 0.1 do
  2027. swait()
  2028. local Alpha = 1
  2029. RJ.C0 = clerp(RJ.C0,CFrame.new(0.299226969, -3.17904287e-23, 0.0481721833, -0.0349025242, 1.23908515e-22, 0.999390841, -1.05346883e-22, 1, -1.2766319e-22, -0.999390841, -1.09738441e-22, -0.0349025205),Alpha)
  2030. LH.C0 = clerp(LH.C0,CFrame.new(-0.47668907, -1.00034404, 0.00033269127, 0.999728382, 0.0233119968, -5.99771738e-07, -0.0233119931, 0.999728262, 1.09655105e-06, 6.2212348e-07, -1.08237145e-06, 1.00000024),Alpha)
  2031. RH.C0 = clerp(RH.C0,CFrame.new(0.466488481, -1.000633, -1.50102351e-05, 0.999438524, -0.0335110053, -8.41915607e-07, 0.0335110016, 0.999438465, 7.48158391e-06, 5.88595867e-07, -7.50541221e-06, 1.00000012),Alpha)
  2032. LS.C0 = clerp(LS.C0,CFrame.new(-1.39181626, 0.383386225, 0.000647011911, 0.578584015, 0.815622985, 3.90037894e-06, -0.815622866, 0.578583896, -1.85727663e-06, -3.77185643e-06, -2.10851431e-06, 1.00000012),Alpha)
  2033. RS.C0 = clerp(RS.C0,CFrame.new(1.4629302, 0.478070498, -0.0678679422, 0.033178892, -0.999287426, 0.0180005301, -0.0785640255, 0.0153470337, 0.996790946, -0.996356905, -0.0344866104, -0.0779988468),Alpha)
  2034. NK.C0 = clerp(NK.C0,CFrame.new(0.0511025488, 1.49999619, -0.0809950903, -0.0349025242, -1.05346883e-22, -0.999390841, 1.23908515e-22, 1, -1.09738441e-22, 0.999390841, -1.2766319e-22, -0.0349025205),Alpha)
  2035. HW.C0 = clerp(HW.C0,CFrame.new(0.0440664105, -1.95277441, 0.069109045, -0.0102440836, -0.999766469, -0.0190292895, -0.999648929, 0.0107042221, -0.0242382139, 0.0244362485, 0.0187743101, -0.99952513),Alpha)
  2036. end
  2037. Attack = false
  2038. NeutralAnims = true
  2039. end
  2040.  
  2041. --// Keystrokes and Keystroke System \\--
  2042.  
  2043. -- Credit to Ace of Spades
  2044.  
  2045. function TweenTransCol(p, newCol, i)
  2046. p.TextColor3 = newCol
  2047. p:TweenPosition(UDim2.new(.03*i, 0, -3, 0),_, "Linear", .5, true)
  2048. coroutine.resume(coroutine.create(function()
  2049. for i = 0, 1, .04 do
  2050. swait()
  2051. p.TextTransparency = i
  2052. p.TextStrokeTransparency = i
  2053. end
  2054. p:destroy()
  2055. end))
  2056. end
  2057.  
  2058. local ValidInputKey = {['w']=true,['a']=true,['s']=true,['d']=true,['q']=true,['e']=true,['z']=true,['x']=true,['c']=true,['v']=true}
  2059. local InputAge = 0;
  2060. local InputFrameTable = {}
  2061.  
  2062. Mouse.KeyDown:connect(function(k)
  2063.  
  2064. if(ValidInputKey[k])then
  2065. InputAge = InputAge + 1
  2066. Input = Input..k
  2067. --[[if(Input_Time <= 0)then
  2068. Input_Time = Input_MaxTime
  2069. else
  2070. Input_Time = Input_Time + Input_Addition
  2071. end]]
  2072. Input_Time = Input_MaxTime
  2073. if(Input_Time > Input_MaxTime)then
  2074. Input_Time = Input_MaxTime
  2075. end
  2076. local newKP = Label(inputF,k:upper(),UDim2.new(.03,0,1,0),UDim2.new(.03*(#InputFrameTable+1),0,0,0),0,C3.N(1,1,1),24,true)
  2077. table.insert(InputFrameTable, newKP)
  2078.  
  2079.  
  2080. for stroke,v in next, Keystrokes do
  2081. if(Input == stroke)then
  2082. local Usable = v.Conditions()
  2083. if(Usable)then
  2084. Input_Time = 0
  2085. Input = ""
  2086. for i, p in pairs(InputFrameTable) do
  2087. if(p:IsA'TextLabel')then
  2088. TweenTransCol(p,C3.N(0,1,0),i)
  2089. end
  2090. end
  2091. InputFrameTable = {}
  2092. v.Callback()
  2093. end
  2094. break
  2095. end
  2096. end
  2097.  
  2098. if(#Input >= Max_Input)then
  2099. for i, p in pairs(InputFrameTable) do
  2100. if(p:IsA'TextLabel')then
  2101. TweenTransCol(p,C3.N(1,0,0),i)
  2102. end
  2103. end
  2104. Input_Time = 0
  2105. InputFrameTable = {}
  2106. Input = ""
  2107. end
  2108. end
  2109. end)
  2110. local Cooldowns = {revolver=0,hooker=0,pillar=0,rush=0,}
  2111. coroutine.wrap(function()
  2112. while true do
  2113. if(Input_Time > 0)then
  2114. Input_Time = Input_Time - Input_Lose
  2115. elseif(Input_Time <= 0)then
  2116. for i, p in pairs(InputFrameTable) do
  2117. if(p:IsA'TextLabel')then
  2118. TweenTransCol(p,C3.N(1,0,0), i)
  2119. end
  2120. end
  2121. InputFrameTable = {}
  2122. Input = ""
  2123. elseif Input_Time > Input_MaxTime then
  2124. Input_Time = Input_MaxTime
  2125. end
  2126. swait()
  2127. end
  2128. end)()
  2129.  
  2130. Keystrokes['z'] = {
  2131. Name = "Scourge Revolver",
  2132. Conditions = function()
  2133. print(time()-Cooldowns.revolver)
  2134. if(Cooldowns.revolver and time()-Cooldowns.revolver < 2.5)then
  2135. return false
  2136. end
  2137. Cooldowns['revolver'] = time()
  2138. return not Attack
  2139. end,
  2140. Callback = function()
  2141. CorruptedRevolver()
  2142. end
  2143. }
  2144.  
  2145. Keystrokes['x'] = {
  2146. Name = "Hook Out",
  2147. Conditions = function()
  2148. if(Cooldowns.hooker and time()-Cooldowns.hooker < 1.25)then
  2149. return false
  2150. end
  2151. Cooldowns['hooker'] = time()
  2152. return not Attack
  2153. end,
  2154. Callback = function()
  2155. Hooker()
  2156. end
  2157. }
  2158.  
  2159. Keystrokes['c'] = {
  2160. Name = "Nefarious Pillar",
  2161. Conditions = function()
  2162. if(Cooldowns.pillar and time()-Cooldowns.hooker < .5)then
  2163. return false
  2164. end
  2165. Cooldowns['pillar'] = time()
  2166. return not Attack
  2167. end,
  2168. Callback = function()
  2169. CorruptionPillar()
  2170. end
  2171. }
  2172.  
  2173. Keystrokes['v'] = {
  2174. Name = "Crooked Rush",
  2175. Conditions = function()
  2176. if(Cooldowns.rush and time()-Cooldowns.rush < 5)then
  2177. return false
  2178. end
  2179. Cooldowns['rush'] = time()
  2180. return not Attack
  2181. end,
  2182. Callback = function()
  2183. CrookedRush()
  2184. end
  2185. }
  2186.  
  2187.  
  2188. for i,v in next, Keystrokes do
  2189. print(i.." - "..(v.Name or 'An unnamed attack'))
  2190. end
  2191.  
  2192. --// Wrap it all up \\--
  2193. while true do
  2194. swait()
  2195. Sine = Sine + Change
  2196. if(not Music or not Music.Parent)then
  2197. Music = Sound(Torso,MusicID,1,3,true,false,true)
  2198. Music.Name = 'Music'
  2199. end
  2200. Music.SoundId = "rbxassetid://"..MusicID
  2201. Music.Parent = Torso
  2202. Music.Pitch = 1
  2203. Music.Volume = 3
  2204. if(not Muted)then
  2205. Music:Resume()
  2206. else
  2207. Music:Pause()
  2208. end
  2209.  
  2210.  
  2211. if(God)then
  2212. Hum.MaxHealth = 1e100
  2213. Hum.Health = 1e100
  2214. if(not Char:FindFirstChildOfClass'ForceField')then IN("ForceField",Char).Visible = false end
  2215. Hum.Name = M.RNG()*100
  2216. end
  2217.  
  2218. local hitfloor,posfloor = workspace:FindPartOnRay(Ray.new(Root.CFrame.p,((CFrame.new(Root.Position,Root.Position - Vector3.new(0,1,0))).lookVector).unit * (4*PlayerSize)), Char)
  2219.  
  2220. local Walking = (math.abs(Root.Velocity.x) > 1 or math.abs(Root.Velocity.z) > 1)
  2221. local State = (Hum.PlatformStand and 'Paralyzed' or Hum.Sit and 'Sit' or not hitfloor and Root.Velocity.y < -1 and "Fall" or not hitfloor and Root.Velocity.y > 1 and "Jump" or hitfloor and Walking and (Hum.WalkSpeed < 24 and "Walk" or "Run") or hitfloor and "Idle")
  2222. if(not Effects or not Effects.Parent)then
  2223. Effects = IN("Model",Char)
  2224. Effects.Name = "Effects"
  2225. end
  2226. if(State == 'Run')then
  2227. local wsVal = 7 / (Hum.WalkSpeed/16)
  2228. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  2229. Change = 1
  2230. RH.C1 = RH.C1:lerp(CF.N(0,1*PlayerSize-.1*M.C(Sine/wsVal),0+.2*M.C(Sine/wsVal))*CF.A(M.R(8-0*M.C(Sine/wsVal))+-M.S(Sine/wsVal)/1.5,0,0),.2)
  2231. LH.C1 = LH.C1:lerp(CF.N(0,1*PlayerSize+.1*M.C(Sine/wsVal),0-.2*M.C(Sine/wsVal))*CF.A(M.R(8+0*M.C(Sine/wsVal))+M.S(Sine/wsVal)/1.5,0,0),.2)
  2232. elseif(State == 'Walk')then
  2233. local wsVal = 7 / (Hum.WalkSpeed/16)
  2234. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  2235. Change = 1
  2236. RH.C1 = RH.C1:lerp(CF.N(0,1*PlayerSize-.5*M.C(Sine/wsVal)/2,0+.5*M.C(Sine/wsVal)/2)*CF.A(M.R(15-25*M.C(Sine/wsVal))+-M.S(Sine/wsVal)/2.5,0,0),Alpha)
  2237. LH.C1 = LH.C1:lerp(CF.N(0,1*PlayerSize+.5*M.C(Sine/wsVal)/2,0-.5*M.C(Sine/wsVal)/2)*CF.A(M.R(15+25*M.C(Sine/wsVal))+M.S(Sine/wsVal)/2.5,0,0),Alpha)
  2238. else
  2239. RH.C1 = RH.C1:lerp(CF.N(0,1,0),.2)
  2240. LH.C1 = LH.C1:lerp(CF.N(0,1,0),.2)
  2241. end
  2242. Hum.WalkSpeed = WalkSpeed
  2243. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  2244. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  2245.  
  2246. if(NeutralAnims)then
  2247. if(State == 'Idle')then
  2248. Change = 1
  2249. local Alpha = .1
  2250. RJ.C0=RJ.C0:lerp(RJC0*CF.N(0,0+.1*M.C(Sine/24),0)*CF.A(M.R(0),M.R(-5),M.R(0)),Alpha)
  2251. LH.C0=LH.C0:lerp(LHC0*CF.N(0,0-.1*M.C(Sine/24),0)*CF.A(M.R(0),M.R(5),M.R(0)),Alpha)
  2252. RH.C0=RH.C0:lerp(RHC0*CF.N(0,0-.1*M.C(Sine/24),0)*CF.A(M.R(0),M.R(-5),M.R(0)),Alpha)
  2253. LS.C0=LS.C0:lerp(LSC0*CF.N(0,.1+.1*M.S(Sine/24),0)*CF.A(M.R(0),M.R(0),M.R(-5-5*M.S(Sine/24))),Alpha)
  2254. RS.C0=RS.C0:lerp(RSC0*CF.N(0,.1+.1*M.S(Sine/24),0)*CF.A(M.R(75),M.R(-10-5*M.C(Sine/24)),M.R(5+5*M.S(Sine/24))),Alpha)
  2255. NK.C0=NK.C0:lerp(NKC0*CF.A(M.R(-5+5*M.C(Sine/24)),M.R(5),M.R(0)),Alpha)
  2256. HW.C0=HW.C0:lerp(HWC0*CF.N(.3,0,.25)*CF.A(0,M.R(-65),0),Alpha)
  2257. -- idle
  2258. elseif(State == 'Run')then
  2259. local wsVal = 7 / (Hum.WalkSpeed/16)
  2260. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  2261. RJ.C0 = RJ.C0:lerp(CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(M.R(-15+2.5*M.C(Sine/(wsVal/2))),M.R(8*M.C(Sine/wsVal)),0),Alpha)
  2262. NK.C0 = NK.C0:lerp(NKC0,Alpha)
  2263. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,0,0-.3*M.S(Sine/wsVal))*CF.A(M.R(0+45*M.S(Sine/wsVal)),0,M.R(-5)),Alpha)
  2264. --RS.C0 = RS.C0:lerp(RSC0*CF.N(0,0,0+.3*M.S(Sine/wsVal))*CF.A(M.R(0-45*M.S(Sine/wsVal)),0,M.R(5)),Alpha)
  2265. RS.C0=RS.C0:lerp(RSC0*CF.N(0,0,0)*CF.A(M.R(75),M.R(-10),M.R(5)),Alpha)
  2266. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  2267. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  2268. HW.C0=HW.C0:lerp(HWC0*CF.N(.3,0,.25)*CF.A(0,M.R(-65),0),Alpha)
  2269. elseif(State == 'Walk')then
  2270. local wsVal = 7 / (Hum.WalkSpeed/16)
  2271. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  2272. local Alpha2 = math.min(.15 * (Hum.WalkSpeed/16),1)
  2273. RJ.C0 = RJ.C0:lerp(CF.N(0,-.075+.1*M.C(Sine/(wsVal/2)+-M.S(Sine/(wsVal/2))/7),0)*CF.A(M.R(-9-2.5*M.C(Sine/(wsVal/2))),M.R(10*M.C(Sine/wsVal)),Root.RotVelocity.y/75),Alpha2)
  2274. NK.C0 = NK.C0:lerp(NKC0*CF.A(0,-Head.RotVelocity.y/75,0),Alpha)
  2275. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,0,-.27*M.C(Sine/wsVal))*CF.A(M.R(45*M.C(Sine/wsVal)),0,M.R(-5)+LArm.RotVelocity.y/75),Alpha)
  2276. --RS.C0 = RS.C0:lerp(RSC0*CF.N(0,0,.27*M.C(Sine/wsVal))*CF.A(M.R(-45*M.C(Sine/wsVal)),0,M.R(5)-RArm.RotVelocity.y/75),Alpha)
  2277. RS.C0=RS.C0:lerp(RSC0*CF.N(0,0,0)*CF.A(M.R(75),M.R(-10),M.R(5)),Alpha)
  2278. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,0,0),Alpha)
  2279. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,0,0),Alpha)
  2280. HW.C0=HW.C0:lerp(HWC0*CF.N(.3,0,.25)*CF.A(0,M.R(-65),0),Alpha)
  2281. elseif(State == 'Jump')then
  2282. local Alpha = .1
  2283. local idk = math.min(math.max(Root.Velocity.Y/50,-M.R(90)),M.R(90))
  2284. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(-5),0,M.R(-90)),Alpha)
  2285. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(-5),0,M.R(90)),Alpha)
  2286. RJ.C0 = RJ.C0:lerp(RJC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  2287. NK.C0 = NK.C0:lerp(NKC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  2288. LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,M.R(-5)),Alpha)
  2289. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,1,-1)*CF.A(M.R(-5),0,M.R(5)),Alpha)
  2290. HW.C0=HW.C0:lerp(HWC0,Alpha)
  2291. elseif(State == 'Fall')then
  2292. local Alpha = .1
  2293. local idk = math.min(math.max(Root.Velocity.Y/50,-M.R(90)),M.R(90))
  2294. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(-5),0,M.R(-90)+idk),Alpha)
  2295. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(-5),0,M.R(90)-idk),Alpha)
  2296. RJ.C0 = RJ.C0:lerp(RJC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  2297. NK.C0 = NK.C0:lerp(NKC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  2298. LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,M.R(-5)),Alpha)
  2299. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,1,-1)*CF.A(M.R(-5),0,M.R(5)),Alpha)
  2300. HW.C0=HW.C0:lerp(HWC0,Alpha)
  2301. elseif(State == 'Paralyzed')then
  2302. -- paralyzed
  2303. elseif(State == 'Sit')then
  2304. -- sit
  2305. end
  2306. end
  2307.  
  2308. for i,v in next, BloodPuddles do
  2309. local mesh = i:FindFirstChild'CylinderMesh'
  2310. BloodPuddles[i] = v + 1
  2311. if(not mesh or i.Transparency >= 1)then
  2312. i:destroy()
  2313. BloodPuddles[i] = nil
  2314. elseif(v >= Frame_Speed*4)then
  2315. local trans = (v-Frame_Speed*4)/(Frame_Speed*2)
  2316. i.Transparency = trans
  2317. if(mesh.Scale.Z > 0)then
  2318. mesh.Scale = mesh.Scale-V3.N(.05,0,.05)
  2319. end
  2320. else
  2321. i.Transparency = 0
  2322. end
  2323. end
  2324. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement