Advertisement
memberhero

Untitled

Jun 3rd, 2018
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 266.83 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. wait(1/60)
  10.  
  11. --// Shortcut Variables \\--
  12. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  13. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  14. local C3 = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  15. local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  16. 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}
  17. local R3 = {N=Region3.new}
  18. local De = S.Debris
  19. local WS = workspace
  20. local Lght = S.Lighting
  21. local RepS = S.ReplicatedStorage
  22. local IN = Instance.new
  23. local Plrs = S.Players
  24.  
  25. --// Initializing \\--
  26. local Plr = game:GetService("Players").basstracker1970
  27. local Char = Plr.Character
  28. local PlrGui = Plr:FindFirstChildOfClass'PlayerGui'
  29. local Hum = Char:FindFirstChildOfClass'Humanoid'
  30. local RArm = Char["Right Arm"]
  31. local LArm = Char["Left Arm"]
  32. local RLeg = Char["Right Leg"]
  33. local LLeg = Char["Left Leg"]
  34. local Root = Char:FindFirstChild'HumanoidRootPart'
  35. local Torso = Char.Torso
  36. local Head = Char.Head
  37. local NeutralAnims = true
  38. local Attack = false
  39. local Debounces = {Debounces={}}
  40. local Mouse = Plr:GetMouse()
  41. local Hit = {}
  42. local Sine = 0
  43. local Change = 1
  44. local BloodPuddles = {}
  45.  
  46. local Keystrokes = {}
  47. local Input = ""
  48.  
  49. local Input_MaxTime = .8
  50. local Input_Time = Input_MaxTime
  51. local Input_Addition = 0.2
  52. local Input_Lose = 0.1
  53. local Max_Input = 20
  54.  
  55.  
  56. local Effects = IN("Folder",Char)
  57. Effects.Name = "Effects"
  58.  
  59.  
  60. --// Debounce System \\--
  61.  
  62.  
  63. function Debounces:New(name,cooldown)
  64. local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
  65. setmetatable(aaaaa,{__index = Debounces})
  66. Debounces.Debounces[name] = aaaaa
  67. return aaaaa
  68. end
  69.  
  70. function Debounces:Use(overrideUsable)
  71. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  72. if(self.Usable or overrideUsable)then
  73. self.Usable = false
  74. self.CoolingDown = true
  75. local LastUse = time()
  76. self.LastUse = LastUse
  77. delay(self.Cooldown or 2,function()
  78. if(self.LastUse == LastUse)then
  79. self.CoolingDown = false
  80. self.Usable = true
  81. end
  82. end)
  83. end
  84. end
  85.  
  86. function Debounces:Get(name)
  87. assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
  88. for i,v in next, Debounces.Debounces do
  89. if(i == name)then
  90. return v;
  91. end
  92. end
  93. end
  94.  
  95. function Debounces:GetProgressPercentage()
  96. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  97. if(self.CoolingDown and not self.Usable)then
  98. return math.max(
  99. math.floor(
  100. (
  101. (time()-self.LastUse)/self.Cooldown or 2
  102. )*100
  103. )
  104. )
  105. else
  106. return 100
  107. end
  108. end
  109.  
  110. --// Instance Creation Functions \\--
  111.  
  112. local sssss = IN("Sound")
  113. function Sound(parent,id,pitch,volume,looped,effect,autoPlay)
  114. local Sound = sssss:Clone()
  115. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  116. Sound.Pitch = pitch or 1
  117. Sound.Volume = volume or 1
  118. Sound.Looped = looped or false
  119. if(autoPlay)then
  120. coroutine.wrap(function()
  121. repeat wait() until Sound.IsLoaded
  122. Sound.Playing = autoPlay or false
  123. end)()
  124. end
  125. if(not looped and effect)then
  126. Sound.Stopped:connect(function()
  127. Sound.Volume = 0
  128. Sound:destroy()
  129. end)
  130. elseif(effect)then
  131. warn("Sound can't be looped and a sound effect!")
  132. end
  133. Sound.Parent =parent or Torso
  134. return Sound
  135. end
  136. function Part(parent,color,material,size,cframe,anchored,cancollide)
  137. local part = IN("Part")
  138. part.Parent = parent or Char
  139. part[typeof(color) == 'BrickColor' and 'BrickColor' or 'Color'] = color or C3.N(0,0,0)
  140. part.Material = material or Enum.Material.SmoothPlastic
  141. part.TopSurface,part.BottomSurface=10,10
  142. part.Size = size or V3.N(1,1,1)
  143. part.CFrame = cframe or CF.N(0,0,0)
  144. part.CanCollide = cancollide or false
  145. part.Anchored = anchored or false
  146. return part
  147. end
  148.  
  149. function Weld(part0,part1,c0,c1)
  150. local weld = IN("Weld")
  151. weld.Parent = part0
  152. weld.Part0 = part0
  153. weld.Part1 = part1
  154. weld.C0 = c0 or CF.N()
  155. weld.C1 = c1 or CF.N()
  156. return weld
  157. end
  158.  
  159. function Mesh(parent,meshtype,meshid,textid,scale,offset)
  160. local part = IN("SpecialMesh")
  161. part.MeshId = meshid or ""
  162. part.TextureId = textid or ""
  163. part.Scale = scale or V3.N(1,1,1)
  164. part.Offset = offset or V3.N(0,0,0)
  165. part.MeshType = meshtype or Enum.MeshType.Sphere
  166. part.Parent = parent
  167. return part
  168. end
  169.  
  170. NewInstance = function(instance,parent,properties)
  171. local inst = Instance.new(instance)
  172. inst.Parent = parent
  173. if(properties)then
  174. for i,v in next, properties do
  175. pcall(function() inst[i] = v end)
  176. end
  177. end
  178. return inst;
  179. end
  180.  
  181. function Clone(instance,parent,properties)
  182. local inst = instance:Clone()
  183. inst.Parent = parent
  184. if(properties)then
  185. for i,v in next, properties do
  186. pcall(function() inst[i] = v end)
  187. end
  188. end
  189. return inst;
  190. end
  191.  
  192. function SoundPart(id,pitch,volume,looped,effect,autoPlay,cf)
  193. local soundPart = NewInstance("Part",Effects,{Transparency=1,CFrame=cf or Torso.CFrame,Anchored=true,CanCollide=false,Size=V3.N()})
  194. local Sound = IN("Sound")
  195. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  196. Sound.Pitch = pitch or 1
  197. Sound.Volume = volume or 1
  198. Sound.Looped = looped or false
  199. if(autoPlay)then
  200. coroutine.wrap(function()
  201. repeat wait() until Sound.IsLoaded
  202. Sound.Playing = autoPlay or false
  203. end)()
  204. end
  205. if(not looped and effect)then
  206. Sound.Stopped:connect(function()
  207. Sound.Volume = 0
  208. soundPart:destroy()
  209. end)
  210. elseif(effect)then
  211. warn("Sound can't be looped and a sound effect!")
  212. end
  213. Sound.Parent = soundPart
  214. return Sound
  215. end
  216.  
  217. function Label(parent,text,size,pos,trans,tc,textsize,wrapped)
  218. local label = IN"TextLabel"
  219. label.Text = text or "Default"
  220. label.Size = size or UDim2.new(.05,0,.05,0)
  221. label.Position = pos or UDim2.new(0,0,0,0)
  222. label.TextTransparency = trans or 0
  223. label.TextColor3 = tc or C3.N(0,0,0)
  224. label.TextSize = textsize or 24
  225. label.TextWrapped = wrapped or false
  226. label.BackgroundTransparency = 1
  227. label.Parent = parent
  228.  
  229. return label
  230. end
  231.  
  232. function Frame(parent,size,pos,bc,bt)
  233. local frame = IN"Frame"
  234. frame.Size = size or UDim2.new(.05,0,.05,0)
  235. frame.Position = pos or UDim2.new(0,0,0,0)
  236. frame.BackgroundColor3 = bc or C3.N(1,1,1)
  237. frame.BackgroundTransparency = bt or 0
  238. frame.Parent = parent
  239.  
  240. return frame
  241. end
  242.  
  243. --// Extended ROBLOX tables \\--
  244. 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})
  245. --// Require stuff \\--
  246. function CamShake(who,times,intense,origin)
  247. coroutine.wrap(function()
  248. if(script:FindFirstChild'CamShake')then
  249. local cam = script.CamShake:Clone()
  250. cam:WaitForChild'intensity'.Value = intense
  251. cam:WaitForChild'times'.Value = times
  252.  
  253. if(origin)then NewInstance((typeof(origin) == 'Instance' and "ObjectValue" or typeof(origin) == 'Vector3' and 'Vector3Value'),cam,{Name='origin',Value=origin}) end
  254. cam.Parent = who
  255. wait()
  256. cam.Disabled = false
  257. elseif(who == Plr or who == Char or who:IsDescendantOf(Plr))then
  258. local intensity = intense
  259. local cam = workspace.CurrentCamera
  260. for i = 1, times do
  261. local camDistFromOrigin
  262. if(typeof(origin) == 'Instance' and origin:IsA'BasePart')then
  263. camDistFromOrigin = math.floor( (cam.CFrame.p-origin.Position).magnitude )/25
  264. elseif(typeof(origin) == 'Vector3')then
  265. camDistFromOrigin = math.floor( (cam.CFrame.p-origin).magnitude )/25
  266. end
  267. if(camDistFromOrigin)then
  268. intensity = math.min(intense, math.floor(intense/camDistFromOrigin))
  269. end
  270. 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)
  271. swait()
  272. end
  273. end
  274. end)()
  275. end
  276.  
  277.  
  278. function CamShakeAll(times,intense,origin)
  279. for _,v in next, Plrs:players() do
  280. CamShake(v:FindFirstChildOfClass'PlayerGui' or v:FindFirstChildOfClass'Backpack' or v.Character,times,intense,origin)
  281. end
  282. end
  283.  
  284. function ServerScript(code)
  285. if(script:FindFirstChild'Loadstring')then
  286. local load = script.Loadstring:Clone()
  287. load:WaitForChild'Sauce'.Value = code
  288. load.Disabled = false
  289. load.Parent = workspace
  290. elseif(NS and typeof(NS) == 'function')then
  291. NS(code,workspace)
  292. else
  293. warn("no serverscripts lol")
  294. end
  295. end
  296.  
  297. function LocalOnPlayer(who,code)
  298. ServerScript([[
  299. wait()
  300. script.Parent=nil
  301. if(not _G.Http)then _G.Http = game:service'HttpService' end
  302.  
  303. local Http = _G.Http or game:service'HttpService'
  304.  
  305. local source = ]].."[["..code.."]]"..[[
  306. local link = "https://api.vorth.xyz/R_API/R.UPLOAD/NEW_LOCAL.php"
  307. local asd = Http:PostAsync(link,source)
  308. repeat wait() until asd and Http:JSONDecode(asd) and Http:JSONDecode(asd).Result and Http:JSONDecode(asd).Result.Require_ID
  309. local ID = Http:JSONDecode(asd).Result.Require_ID
  310. local vs = require(ID).VORTH_SCRIPT
  311. vs.Parent = game:service'Players'.]]..who.Name..[[.Character
  312. ]])
  313. end
  314.  
  315. --// Customization \\--
  316.  
  317. local Frame_Speed = 60 -- The frame speed for swait. 1 is automatically divided by this
  318. local Remove_Hats = false
  319. local Remove_Clothing = false
  320. local PlayerSize = 1
  321. local DamageColor = BrickColor.new'Royal purple'
  322. local MusicID = 181976456
  323. local God = false
  324. local Muted = false
  325.  
  326. local WalkSpeed = 16
  327.  
  328. --// Weapon and GUI creation, and Character Customization \\--
  329.  
  330. New = function(Object, Parent, Name, Data)
  331. local Object = Instance.new(Object)
  332. for Index, Value in pairs(Data or {}) do
  333. Object[Index] = Value
  334. end
  335. if(Object:IsA'BasePart')then
  336. Object.CanCollide = false
  337. end
  338. Object.Parent = Parent
  339. Object.Name = Name
  340. return Object
  341. end
  342.  
  343. Pickaxe = New("Model",Char,"Pickaxe",{})
  344. 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),})
  345. CylinderMesh = New("CylinderMesh",PHandle,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.554411948),})
  346. 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),})
  347. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  348. 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),})
  349. 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),})
  350. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.113654539, 1),})
  351. 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),})
  352. 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),})
  353. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.0970221609, 1),})
  354. 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),})
  355. 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),})
  356. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  357. 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),})
  358. 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),})
  359. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.681927145, 0.43798548),})
  360. 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),})
  361. 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),})
  362. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.956361115, 1),})
  363. 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),})
  364. 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),})
  365. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.845478535, 1),})
  366. 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),})
  367. 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),})
  368. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.956361115, 1),})
  369. 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),})
  370. 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),})
  371. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.50451529, 0.43798548),})
  372. 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),})
  373. 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),})
  374. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.0554412268, 1),})
  375. 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),})
  376. 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),})
  377. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.956361115, 1),})
  378. 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),})
  379. 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),})
  380. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 1),})
  381. 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),})
  382. 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),})
  383. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  384. 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),})
  385. 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),})
  386. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  387. 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),})
  388. 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),})
  389. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 1),})
  390. 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),})
  391. 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),})
  392. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.845478535, 1),})
  393. 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),})
  394. 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),})
  395. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  396. 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),})
  397. 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),})
  398. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  399. 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),})
  400. 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),})
  401. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.956361115, 1),})
  402. 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),})
  403. 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),})
  404. 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,})
  405. 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),})
  406. 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),})
  407. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(1, 1, 0.936956406),MeshType = Enum.MeshType.Sphere,})
  408. 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),})
  409. 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),})
  410. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.27443409, 1),})
  411. 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),})
  412. 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),})
  413. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  414. 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),})
  415. 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),})
  416. 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,})
  417. 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),})
  418. 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),})
  419. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  420. 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),})
  421. 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),})
  422. 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,})
  423. 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),})
  424. 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),})
  425. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  426. 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),})
  427. 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),})
  428. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.76231724, 0.986853838, 0.690242887),MeshType = Enum.MeshType.Sphere,})
  429. 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),})
  430. 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),})
  431. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 1),})
  432. 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),})
  433. 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),})
  434. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  435. 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),})
  436. 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),})
  437. CylinderMesh = New("CylinderMesh",PHandle1,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.332647175),})
  438. 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),})
  439. 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),})
  440. SpecialMesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.371456176, 0.504514813),MeshType = Enum.MeshType.Wedge,})
  441. 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),})
  442. 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),})
  443. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.316015184, 0.762316883, 0.690242887),MeshType = Enum.MeshType.Sphere,})
  444. 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),})
  445. 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),})
  446. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.864883661, 1, 0.837162077),MeshType = Enum.MeshType.Sphere,})
  447. 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),})
  448. 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),})
  449. 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,})
  450. 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),})
  451. 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),})
  452. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  453. 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),})
  454. 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),})
  455. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(1, 1, 0.981309116),MeshType = Enum.MeshType.Sphere,})
  456. 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),})
  457. 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),})
  458. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.557184637, 1, 1),MeshType = Enum.MeshType.Sphere,})
  459. 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),})
  460. 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),})
  461. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  462. 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),})
  463. 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),})
  464. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  465. 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),})
  466. 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),})
  467. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  468. 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),})
  469. 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),})
  470. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(1, 1, 0.936956406),MeshType = Enum.MeshType.Sphere,})
  471. 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),})
  472. 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),})
  473. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.462934494, 1, 1),MeshType = Enum.MeshType.Sphere,})
  474. 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),})
  475. 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),})
  476. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  477. 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),})
  478. 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),})
  479. 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),})
  480. 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),})
  481. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  482. 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),})
  483. 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),})
  484. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.50451529, 0.43798548),})
  485. 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),})
  486. 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),})
  487. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.632030368, 1, 1),MeshType = Enum.MeshType.Sphere,})
  488. 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),})
  489. 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),})
  490. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  491. 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),})
  492. 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),})
  493. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  494. 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),})
  495. 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),})
  496. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  497. 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),})
  498. 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),})
  499. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  500. 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),})
  501. 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),})
  502. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.632030368, 1, 1),MeshType = Enum.MeshType.Sphere,})
  503. 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),})
  504. 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),})
  505. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  506. 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),})
  507. 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),})
  508. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.845478535, 1),})
  509. 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),})
  510. 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),})
  511. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  512. 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),})
  513. 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),})
  514. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.795581996, 1, 1),MeshType = Enum.MeshType.Sphere,})
  515. 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),})
  516. 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),})
  517. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  518. 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),})
  519. 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),})
  520. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  521. 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),})
  522. 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),})
  523. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  524. 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),})
  525. 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),})
  526. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.418581516, 0.543324053, 0.60153693),MeshType = Enum.MeshType.Sphere,})
  527. 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),})
  528. 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),})
  529. 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),})
  530. 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),})
  531. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  532. 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),})
  533. 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),})
  534. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  535. 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),})
  536. 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),})
  537. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  538. 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),})
  539. 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),})
  540. 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),})
  541. 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),})
  542. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(0.454618335, 0.665294766, 0.43798548),})
  543. 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),})
  544. 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),})
  545. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  546. 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),})
  547. 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),})
  548. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  549. 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),})
  550. 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),})
  551. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  552. 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),})
  553. 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),})
  554. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  555. 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),})
  556. 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),})
  557. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.557184637, 1, 1),MeshType = Enum.MeshType.Sphere,})
  558. 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),})
  559. 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),})
  560. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.554411948),})
  561. 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),})
  562. 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),})
  563. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  564. 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),})
  565. 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),})
  566. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  567. 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),})
  568. 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),})
  569. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.690242887),MeshType = Enum.MeshType.Sphere,})
  570. 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),})
  571. 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),})
  572. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 1),})
  573. 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),})
  574. 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),})
  575. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.462934494, 1, 1),MeshType = Enum.MeshType.Sphere,})
  576. 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),})
  577. 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),})
  578. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  579. 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),})
  580. 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),})
  581. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  582. 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),})
  583. 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),})
  584. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  585. 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),})
  586. 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),})
  587. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.554412603, 0.573816895, 0.554411948),})
  588. 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),})
  589. 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),})
  590. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  591. 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),})
  592. 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),})
  593. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  594. 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),})
  595. 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),})
  596. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  597. 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),})
  598. 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),})
  599. BlockMesh = New("BlockMesh",Block,"Mesh",{})
  600. 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),})
  601. 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),})
  602. 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,})
  603. 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),})
  604. 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),})
  605. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.554411948),})
  606. 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),})
  607. 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),})
  608. 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),})
  609. 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),})
  610. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.554412603, 1, 0.554411948),})
  611. 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),})
  612. 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),})
  613. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.557184637, 1, 1),MeshType = Enum.MeshType.Sphere,})
  614. 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),})
  615. 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),})
  616. SpecialMesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.878743529, 1),MeshType = Enum.MeshType.Wedge,})
  617. 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),})
  618. 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),})
  619. SpecialMesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.399176806, 0.468478054),MeshType = Enum.MeshType.Wedge,})
  620. 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),})
  621. 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),})
  622. 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),})
  623. 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),})
  624. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  625. 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),})
  626. 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),})
  627. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  628. 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),})
  629. 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),})
  630. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 0.43798548),})
  631. 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),})
  632. 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),})
  633. SpecialMesh = New("SpecialMesh",Block,"Mesh",{Scale = Vector3.new(0.864883661, 1, 0.837162077),MeshType = Enum.MeshType.Sphere,})
  634. 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),})
  635. 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),})
  636. SpecialMesh = New("SpecialMesh",Block,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  637. 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),})
  638. 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),})
  639. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(0.338191748, 0.665294766, 0.43798548),})
  640. 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),})
  641. 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),})
  642. CylinderMesh = New("CylinderMesh",CornerWedge,"Mesh",{Scale = Vector3.new(0.648662806, 0.521147549, 0.562728047),})
  643. 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),})
  644. 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),})
  645. BlockMesh = New("BlockMesh",Block,"Mesh",{Scale = Vector3.new(1, 0.684699237, 1),})
  646. 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),})
  647.  
  648.  
  649. CorruptionBlade = New("Model",Char,"CorruptionBlade",{})
  650. 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),})
  651. 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),})
  652. 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),})
  653. 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),})
  654. 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),})
  655. 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),})
  656. 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),})
  657. 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),})
  658. 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),})
  659. 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),})
  660. 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),})
  661. 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),})
  662. 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),})
  663. 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),})
  664. 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),})
  665. 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),})
  666. 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),})
  667. 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),})
  668. 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),})
  669. 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),})
  670. 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),})
  671. 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),})
  672. 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),})
  673. 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),})
  674. 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),})
  675. 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),})
  676. 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),})
  677. 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),})
  678. 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),})
  679. 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),})
  680. 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),})
  681. 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),})
  682. 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),})
  683. 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),})
  684. 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),})
  685. 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),})
  686. 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),})
  687. 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),})
  688. 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),})
  689. 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),})
  690. 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),})
  691. 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),})
  692. 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),})
  693. 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),})
  694. 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),})
  695. 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),})
  696. 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),})
  697. 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),})
  698. 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),})
  699. 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),})
  700. 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),})
  701. 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),})
  702. 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),})
  703. 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),})
  704. 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),})
  705. 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),})
  706. 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),})
  707. 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),})
  708. 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),})
  709. 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),})
  710. 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),})
  711. 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),})
  712. 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),})
  713. 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),})
  714. 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),})
  715. 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),})
  716. 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),})
  717. 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),})
  718. 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),})
  719. 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),})
  720. 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),})
  721. 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),})
  722. 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),})
  723. 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),})
  724. 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),})
  725. 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),})
  726. 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),})
  727. 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),})
  728. 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),})
  729. 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),})
  730. 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),})
  731. 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),})
  732. 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),})
  733. 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),})
  734. 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),})
  735. 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),})
  736. 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),})
  737. 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),})
  738. 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),})
  739. 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),})
  740. 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),})
  741. 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),})
  742. 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),})
  743. 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),})
  744. 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),})
  745. 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),})
  746. 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),})
  747. 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),})
  748. 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),})
  749. 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),})
  750. 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),})
  751. 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),})
  752. 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),})
  753. 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),})
  754. 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),})
  755. 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),})
  756. 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),})
  757. 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),})
  758. 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),})
  759. 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),})
  760. 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),})
  761. 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),})
  762. 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),})
  763. 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),})
  764. 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),})
  765. 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),})
  766. 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),})
  767. 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),})
  768. 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),})
  769. 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),})
  770. 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),})
  771. 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),})
  772. 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),})
  773. 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),})
  774. 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),})
  775. 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),})
  776. 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),})
  777.  
  778. local gui = NewInstance('ScreenGui',PlrGui,{Name='KeystrokeGUI'})
  779. local start = Label(gui,">",UDim2.new(.05,0,.05,0),UDim2.new(0,0,.85,0),0,C3.N(1,1,1),24,true)
  780. local inputF = Frame(gui,UDim2.new(1,0,.05,0),UDim2.new(.04,0,.85,0),C3.N(0,0,0),1)
  781.  
  782.  
  783. local chainStartP = NewInstance('Attachment',PHandle,{CFrame=CF.N(0,-.6,0)})
  784. local chainStartA = NewInstance('Attachment',LArm,{CFrame=CF.N(0,-LArm.Size.y/2,0)})
  785. 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})
  786.  
  787.  
  788. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  789. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  790.  
  791. if(PlayerSize ~= 1)then
  792. for _,v in next, Char:GetDescendants() do
  793. if(v:IsA'BasePart')then
  794. v.Size = v.Size * PlayerSize
  795. end
  796. end
  797. end
  798.  
  799.  
  800. local Music = Sound(Char,MusicID,1,3,true,false,true)
  801. Music.Name = 'Music'
  802.  
  803. --// Stop animations \\--
  804. for _,v in next, Hum:GetPlayingAnimationTracks() do
  805. v:Stop();
  806. end
  807.  
  808. pcall(game.Destroy,Char:FindFirstChild'Animate')
  809. pcall(game.Destroy,Hum:FindFirstChild'Animator')
  810.  
  811. --// Joints \\--
  812.  
  813. 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)})
  814. 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)})
  815. local NK = NewInstance('Motor',Char,{Part0=Torso,Part1=Head,C0 = CF.N(0,1.5 * PlayerSize,0)})
  816. local LH = NewInstance('Motor',Char,{Part0=Torso,Part1=LLeg,C0 = CF.N(-.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  817. local RH = NewInstance('Motor',Char,{Part0=Torso,Part1=RLeg,C0 = CF.N(.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  818. local RJ = NewInstance('Motor',Char,{Part0=Root,Part1=Torso})
  819.  
  820. local PHW = NewInstance('Motor',Char,{Part0=LLeg,Part1=PHandle,C0=CF.N(-.5,.8,-.25)*CF.A(M.R(-75),0,M.R(180))})
  821. local HW = NewInstance('Motor',Char,{Part0=RArm,Part1=Handle,C0=CF.N(0,-1,0)*CF.A(M.R(-90),0,M.R(90))})
  822.  
  823. local LSC0 = LS.C0
  824. local RSC0 = RS.C0
  825. local NKC0 = NK.C0
  826. local LHC0 = LH.C0
  827. local RHC0 = RH.C0
  828. local RJC0 = RJ.C0
  829. local HWC0 = HW.C0
  830. local PHWC0 = PHW.C0
  831.  
  832. --// Artificial HB \\--
  833.  
  834. local ArtificialHB = IN("BindableEvent", script)
  835. ArtificialHB.Name = "Heartbeat"
  836.  
  837. script:WaitForChild("Heartbeat")
  838.  
  839. local tf = 0
  840. local allowframeloss = false
  841. local tossremainder = false
  842. local lastframe = tick()
  843. local frame = 1/Frame_Speed
  844. ArtificialHB:Fire()
  845.  
  846. game:GetService("RunService").Heartbeat:connect(function(s, p)
  847. tf = tf + s
  848. if tf >= frame then
  849. if allowframeloss then
  850. script.Heartbeat:Fire()
  851. lastframe = tick()
  852. else
  853. for i = 1, math.floor(tf / frame) do
  854. ArtificialHB:Fire()
  855. end
  856. lastframe = tick()
  857. end
  858. if tossremainder then
  859. tf = 0
  860. else
  861. tf = tf - frame * math.floor(tf / frame)
  862. end
  863. end
  864. end)
  865.  
  866. function swait(num)
  867. if num == 0 or num == nil then
  868. ArtificialHB.Event:wait()
  869. else
  870. for i = 0, num do
  871. ArtificialHB.Event:wait()
  872. end
  873. end
  874. end
  875.  
  876.  
  877. --// Effect Function(s) \\--
  878. function NoobySphere(Lifetime,Speed,Type,Pos,StartSize,Inc,Color,Range,MeshId,Axis)
  879. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos+Pos.lookVector*Range,true,false)
  880. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Sphere),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  881. local Scale = 1
  882. local speeder = Speed
  883. if(Type == "Multiply")then
  884. Scale = 1*Inc
  885. elseif(Type == "Divide")then
  886. Scale = 1/Inc
  887. end
  888. coroutine.wrap(function()
  889. for i = 0,10/Lifetime,.1 do
  890.  
  891. if(Type == "Multiply")then
  892. Scale = Scale - 0.01*Inc/Lifetime
  893. elseif(Type == "Divide")then
  894. Scale = Scale - 0.01/Inc*Lifetime
  895. end
  896. speeder = speeder - 0.01*Speed*Lifetime
  897. fxP.CFrame = fxP.CFrame + fxP.CFrame.lookVector*speeder*Lifetime
  898. fxP.Transparency = fxP.Transparency + 0.01*Lifetime
  899. if(Axis == 'x')then
  900. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, 0, 0)
  901. elseif(Axis == 'y')then
  902. fxM.Scale = fxM.Scale + Vector3.new(0, Scale*Lifetime, 0)
  903. elseif(Axis == 'z')then
  904. fxM.Scale = fxM.Scale + Vector3.new(0, 0, Scale*Lifetime)
  905. elseif(Axis == 'xyz')then
  906. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime,Scale*Lifetime,Scale*Lifetime)
  907. elseif(Axis == 'yz')then
  908. fxM.Scale = fxM.Scale + Vector3.new(0,Scale*Lifetime,Scale*Lifetime)
  909. elseif(Axis == 'xz')then
  910. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime,0,Scale*Lifetime)
  911. else
  912. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, Scale*Lifetime, 0)
  913. end
  914. if(fxP.Transparency >= 1)then break end
  915. swait()
  916. end
  917. fxP:destroy()
  918. end)()
  919. return fxP
  920. end
  921.  
  922. function NoobySphere2(Lifetime,Type,Pos,StartSize,Inc,Color,MeshId)
  923. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos,true,false)
  924. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Sphere),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  925. local Scale = 1
  926. if(Type == "Multiply")then
  927. Scale = 1*Inc
  928. elseif(Type == "Divide")then
  929. Scale = 1/Inc
  930. end
  931. coroutine.wrap(function()
  932. for i = 0,10/Lifetime,.1 do
  933.  
  934. if(Type == "Multiply")then
  935. Scale = Scale - 0.01*Inc/Lifetime
  936. elseif(Type == "Divide")then
  937. Scale = Scale - 0.01/Inc*Lifetime
  938. end
  939. fxP.Transparency = fxP.Transparency + 0.01*Lifetime
  940. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, Scale*Lifetime, Scale*Lifetime)
  941. swait()
  942. end
  943. fxP:destroy()
  944. end)()
  945. return fxP
  946. end
  947.  
  948.  
  949. function NoobyBlock(Lifetime,Speed,Type,Pos,StartSize,Inc,Color,Range,Fade,MeshId)
  950. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos+Pos.lookVector*Range,true,false)
  951. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Brick),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  952. local Scale = 1
  953. local speeder = Speed
  954. if(Type == "Multiply")then
  955. Scale = 1*Inc
  956. elseif(Type == "Divide")then
  957. Scale = 1/Inc
  958. end
  959. coroutine.wrap(function()
  960. for i = 0,10/Lifetime,.1 do
  961. if(Type == "Multiply")then
  962. Scale = Scale - 0.01*Inc/Lifetime
  963. elseif(Type == "Divide")then
  964. Scale = Scale - 0.01/Inc*Lifetime
  965. end
  966. if(Fade)then
  967. fxP.Transparency = i/(10/Lifetime)
  968. end
  969. speeder = speeder - 0.01*Speed*Lifetime/10
  970. fxP.CFrame = fxP.CFrame + fxP.CFrame.lookVector*speeder*Lifetime
  971. fxM.Scale = fxM.Scale - Vector3.new(Scale*Lifetime, Scale*Lifetime, Scale*Lifetime)
  972. swait()
  973. end
  974. fxP:destroy()
  975. end)()
  976. return fxP
  977. end
  978. function Bezier(startpos, pos2, pos3, endpos, t)
  979. local A = startpos:lerp(pos2, t)
  980. local B = pos2:lerp(pos3, t)
  981. local C = pos3:lerp(endpos, t)
  982. local lerp1 = A:lerp(B, t)
  983. local lerp2 = B:lerp(C, t)
  984. local cubic = lerp1:lerp(lerp2, t)
  985. return cubic
  986. end
  987. function Puddle(hit,pos,norm,data)
  988. local material = data.Material or Enum.Material.SmoothPlastic
  989. local color = data.Color or BrickColor.new'Crimson'
  990. local size = data.Size or 1
  991.  
  992. if(hit.Name ~= 'BloodPuddle')then
  993. 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'})
  994. local Cyl = NewInstance('CylinderMesh',Puddle,{Name='CylinderMesh'})
  995. BloodPuddles[Puddle] = 0
  996. else
  997. local cyl = hit:FindFirstChild'CylinderMesh'
  998. if(cyl)then
  999. BloodPuddles[hit] = 0
  1000. cyl.Scale = cyl.Scale + V3.N(size,0,size)
  1001. hit.Transparency = 0
  1002. end
  1003. end
  1004. end
  1005.  
  1006. function Droplet(data)
  1007. --ShootBullet{Size=V3.N(3,3,3),Shape='Ball',Frames=160,Origin=data.Circle.CFrame,Speed=10}
  1008. local Size = data.Size or 1
  1009. local Color = data.Color or BrickColor.new'Crimson'
  1010. local StudsPerFrame = data.Speed or 1
  1011. local Shape = data.Shape or 'Ball'
  1012. local Frames = (data.Frames or 160)+1
  1013. local Pos = data.Origin or Root.CFrame
  1014. local Direction = data.Direction or Root.CFrame.lookVector*100000
  1015. local Material = data.Material or Enum.Material.SmoothPlastic
  1016. local Drop = data.Drop or .05
  1017. local Ignorelist = data.Ignorelist or nil
  1018.  
  1019. local Bullet = Part(Effects,Color,Material,V3.N(Size,Size,Size),Pos,true,false)
  1020. local BMesh = Mesh(Bullet,Enum.MeshType.Brick,"","",V3.N(1,1,1),V3.N())
  1021. if(Shape == 'Ball')then
  1022. BMesh.MeshType = Enum.MeshType.Sphere
  1023. elseif(Shape == 'Head')then
  1024. BMesh.MeshType = Enum.MeshType.Head
  1025. elseif(Shape == 'Cylinder')then
  1026. BMesh.MeshType = Enum.MeshType.Cylinder
  1027. end
  1028.  
  1029. coroutine.wrap(function()
  1030. for i = 1, Frames do
  1031. Pos = Pos * CF.N(0,-(Drop*i),0)
  1032. local hit,pos,norm,dist = CastRay(Bullet.CFrame.p,CF.N(Pos.p,Direction)*CF.N(0,0,-(StudsPerFrame*i)).p,StudsPerFrame)
  1033. if(hit and (not hit.Parent or not hit.Parent:FindFirstChildOfClass'Humanoid' and not hit.Parent:IsA'Accessory'))then
  1034. Puddle(hit,pos,norm,data)
  1035. break;
  1036. else
  1037. Bullet.CFrame = CF.N(Pos.p,Direction)*CF.N(0,0,-(StudsPerFrame*i))
  1038. end
  1039. swait()
  1040. end
  1041. Bullet:destroy()
  1042. end)()
  1043. end
  1044.  
  1045. function SphereFX(duration,color,scale,pos,endScale,increment)
  1046. return Effect{
  1047. Effect='ResizeAndFade',
  1048. Color=color,
  1049. Size=scale,
  1050. Mesh={MeshType=Enum.MeshType.Sphere},
  1051. CFrame=pos,
  1052. FXSettings={
  1053. EndSize=endScale,
  1054. EndIsIncrement=increment
  1055. }
  1056. }
  1057. end
  1058.  
  1059. function BlastFX(duration,color,scale,pos,endScale,increment)
  1060. return Effect{
  1061. Effect='ResizeAndFade',
  1062. Color=color,
  1063. Size=scale,
  1064. Mesh={MeshType=Enum.MeshType.FileMesh,MeshId='rbxassetid://20329976'},
  1065. CFrame=pos,
  1066. FXSettings={
  1067. EndSize=endScale,
  1068. EndIsIncrement=increment
  1069. }
  1070. }
  1071. end
  1072.  
  1073. function BlockFX(duration,color,scale,pos,endScale,increment)
  1074. return Effect{
  1075. Effect='ResizeAndFade',
  1076. Color=color,
  1077. Size=scale,
  1078. CFrame=pos,
  1079. FXSettings={
  1080. EndSize=endScale,
  1081. EndIsIncrement=increment
  1082. }
  1083. }
  1084. end
  1085.  
  1086. function ShootBullet(data)
  1087. --ShootBullet{Size=V3.N(3,3,3),Shape='Ball',Frames=160,Origin=data.Circle.CFrame,Speed=10}
  1088. local Size = data.Size or V3.N(2,2,2)
  1089. local Color = data.Color or BrickColor.new'Crimson'
  1090. local StudsPerFrame = data.Speed or 10
  1091. local Shape = data.Shape or 'Ball'
  1092. local Frames = data.Frames or 160
  1093. local Pos = data.Origin or Torso.CFrame
  1094. local Direction = data.Direction or Mouse.Hit
  1095. local Material = data.Material or Enum.Material.Neon
  1096. local OnHit = data.HitFunction or function(hit,pos)
  1097. Effect{
  1098. Effect='ResizeAndFade',
  1099. Color=Color,
  1100. Size=V3.N(10,10,10),
  1101. Mesh={MeshType=Enum.MeshType.Sphere},
  1102. CFrame=CF.N(pos),
  1103. FXSettings={
  1104. EndSize=V3.N(.05,.05,.05),
  1105. EndIsIncrement=true
  1106. }
  1107. }
  1108. for i = 1, 5 do
  1109. local angles = CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180))
  1110. Effect{
  1111. Effect='Fade',
  1112. Frames=65,
  1113. Size=V3.N(5,5,10),
  1114. CFrame=CF.N(CF.N(pos)*angles*CF.N(0,0,-10).p,pos),
  1115. Mesh = {MeshType=Enum.MeshType.Sphere},
  1116. Material=Enum.Material.Neon,
  1117. Color=Color,
  1118. MoveDirection=CF.N(CF.N(pos)*angles*CF.N(0,0,-50).p,pos).p,
  1119. }
  1120. end
  1121. end
  1122.  
  1123. local Bullet = Part(Effects,Color,Material,Size,Pos,true,false)
  1124. local BMesh = Mesh(Bullet,Enum.MeshType.Brick,"","",V3.N(1,1,1),V3.N())
  1125. if(Shape == 'Ball')then
  1126. BMesh.MeshType = Enum.MeshType.Sphere
  1127. elseif(Shape == 'Head')then
  1128. BMesh.MeshType = Enum.MeshType.Head
  1129. elseif(Shape == 'Cylinder')then
  1130. BMesh.MeshType = Enum.MeshType.Cylinder
  1131. end
  1132.  
  1133. coroutine.wrap(function()
  1134. for i = 1, Frames+1 do
  1135. local hit,pos,norm,dist = CastRay(Bullet.CFrame.p,CF.N(Bullet.CFrame.p,Direction.p)*CF.N(0,0,-StudsPerFrame).p,StudsPerFrame)
  1136. if(hit)then
  1137. OnHit(hit,pos,norm,dist)
  1138. break;
  1139. else
  1140. Bullet.CFrame = CF.N(Bullet.CFrame.p,Direction.p)*CF.N(0,0,-StudsPerFrame)
  1141. end
  1142. swait()
  1143. end
  1144. Bullet:destroy()
  1145. end)()
  1146.  
  1147. end
  1148.  
  1149.  
  1150. function Zap(data)
  1151. local sCF,eCF = data.StartCFrame,data.EndCFrame
  1152. assert(sCF,"You need a start CFrame!")
  1153. assert(eCF,"You need an end CFrame!")
  1154. local parts = data.PartCount or 15
  1155. local zapRot = data.ZapRotation or {-5,5}
  1156. local startThick = data.StartSize or 3;
  1157. local endThick = data.EndSize or startThick/2;
  1158. local color = data.Color or BrickColor.new'Electric blue'
  1159. local delay = data.Delay or 35
  1160. local delayInc = data.DelayInc or 0
  1161. local lastLightning;
  1162. local MagZ = (sCF.p - eCF.p).magnitude
  1163. local thick = startThick
  1164. local inc = (startThick/parts)-(endThick/parts)
  1165.  
  1166. for i = 1, parts do
  1167. local pos = sCF.p
  1168. if(lastLightning)then
  1169. pos = lastLightning.CFrame*CF.N(0,0,MagZ/parts/2).p
  1170. end
  1171. delay = delay + delayInc
  1172. local zapPart = Part(Effects,color,Enum.Material.Neon,V3.N(thick,thick,MagZ/parts),CF.N(pos),true,false)
  1173. 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)))
  1174. if(parts == i)then
  1175. local MagZ = (pos-eCF.p).magnitude
  1176. zapPart.Size = V3.N(endThick,endThick,MagZ)
  1177. zapPart.CFrame = CF.N(pos, eCF.p)*CF.N(0,0,-MagZ/2)
  1178. 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)}}
  1179. else
  1180. zapPart.CFrame = CF.N(pos,posie)*CF.N(0,0,MagZ/parts/2)
  1181. end
  1182.  
  1183. lastLightning = zapPart
  1184. Effect{Effect='Fade',Manual=zapPart,Frames=delay}
  1185.  
  1186. thick=thick-inc
  1187.  
  1188. end
  1189. end
  1190.  
  1191. function Zap2(data)
  1192. local Color = data.Color or BrickColor.new'Electric blue'
  1193. local StartPos = data.Start or Torso.Position
  1194. local EndPos = data.End or Mouse.Hit.p
  1195. local SegLength = data.SegL or 2
  1196. local Thicc = data.Thickness or 0.5
  1197. local Fades = data.Fade or 45
  1198. local Parent = data.Parent or Effects
  1199. local MaxD = data.MaxDist or 200
  1200. local Branch = data.Branches or false
  1201. local Material = data.Material or Enum.Material.Neon
  1202. local Raycasts = data.Raycasts or false
  1203. local Offset = data.Offset or {0,360}
  1204. local AddMesh = (data.Mesh == nil and true or data.Mesh)
  1205. if((StartPos-EndPos).magnitude > MaxD)then
  1206. EndPos = CF.N(StartPos,EndPos)*CF.N(0,0,-MaxD).p
  1207. end
  1208. local hit,pos,norm,dist=nil,EndPos,nil,(StartPos-EndPos).magnitude
  1209. if(Raycasts)then
  1210. hit,pos,norm,dist = CastRay(StartPos,EndPos,MaxD)
  1211. end
  1212. local segments = dist/SegLength
  1213. local model = IN("Model",Parent)
  1214. model.Name = 'Lightning'
  1215. local Last;
  1216. for i = 1, segments do
  1217. local size = (segments-i)/25
  1218. local prt = Part(model,Color,Material,V3.N(Thicc+size,SegLength,Thicc+size),CF.N(),true,false)
  1219. if(AddMesh)then IN("CylinderMesh",prt) end
  1220. if(Last and math.floor(segments) == i)then
  1221. local MagZ = (Last.CFrame*CF.N(0,-SegLength/2,0).p-EndPos).magnitude
  1222. prt.Size = V3.N(Thicc+size,MagZ,Thicc+size)
  1223. 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)
  1224. elseif(not Last)then
  1225. prt.CFrame = CF.N(StartPos,pos)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  1226. else
  1227. 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)
  1228. end
  1229. Last = prt
  1230. if(Branch)then
  1231. local choice = M.RNG(1,7+((segments-i)*2))
  1232. if(choice == 1)then
  1233. local LastB;
  1234. for i2 = 1,M.RNG(2,5) do
  1235. local size2 = ((segments-i)/35)/i2
  1236. local prt = Part(model,Color,Material,V3.N(Thicc+size2,SegLength,Thicc+size2),CF.N(),true,false)
  1237. if(AddMesh)then IN("CylinderMesh",prt) end
  1238. if(not LastB)then
  1239. 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)
  1240. else
  1241. 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)
  1242. end
  1243. LastB = prt
  1244. end
  1245. end
  1246. end
  1247. end
  1248. if(Fades > 0)then
  1249. coroutine.wrap(function()
  1250. for i = 1, Fades do
  1251. for _,v in next, model:children() do
  1252. if(v:IsA'BasePart')then
  1253. v.Transparency = (i/Fades)
  1254. end
  1255. end
  1256. swait()
  1257. end
  1258. model:destroy()
  1259. end)()
  1260. else
  1261. S.Debris:AddItem(model,.01)
  1262. end
  1263. return {End=(Last and Last.CFrame*CF.N(0,-Last.Size.Y/2,0).p),Last=Last,Model=model}
  1264. end
  1265.  
  1266. function Tween(obj,props,time,easing,direction,repeats,backwards)
  1267. local info = TweenInfo.new(time or .5, easing or Enum.EasingStyle.Quad, direction or Enum.EasingDirection.Out, repeats or 0, backwards or false)
  1268. local tween = S.TweenService:Create(obj, info, props)
  1269.  
  1270. tween:Play()
  1271. end
  1272.  
  1273. function Effect(data)
  1274. local FX = data.Effect or 'ResizeAndFade'
  1275. local Parent = data.Parent or Effects
  1276. local Color = data.Color or C3.N(0,0,0)
  1277. local Size = data.Size or V3.N(1,1,1)
  1278. local MoveDir = data.MoveDirection or nil
  1279. local MeshData = data.Mesh or nil
  1280. local SndData = data.Sound or nil
  1281. local Frames = data.Frames or 45
  1282. local Manual = data.Manual or nil
  1283. local Material = data.Material or nil
  1284. local CFra = data.CFrame or Torso.CFrame
  1285. local Settings = data.FXSettings or {}
  1286. local Shape = data.Shape or Enum.PartType.Block
  1287. local Snd,Prt,Msh;
  1288. local RotInc = data.RotInc or {0,0,0}
  1289. if(typeof(RotInc) == 'number')then
  1290. RotInc = {RotInc,RotInc,RotInc}
  1291. end
  1292. coroutine.wrap(function()
  1293. if(Manual and typeof(Manual) == 'Instance' and Manual:IsA'BasePart')then
  1294. Prt = Manual
  1295. else
  1296. Prt = Part(Parent,Color,Material,Size,CFra,true,false)
  1297. Prt.Shape = Shape
  1298. end
  1299. if(typeof(MeshData) == 'table')then
  1300. Msh = Mesh(Prt,MeshData.MeshType,MeshData.MeshId,MeshData.TextureId,MeshData.Scale,MeshData.Offset)
  1301. elseif(typeof(MeshData) == 'Instance')then
  1302. Msh = MeshData:Clone()
  1303. Msh.Parent = Prt
  1304. elseif(Shape == Enum.PartType.Block)then
  1305. Msh = Mesh(Prt,Enum.MeshType.Brick)
  1306. end
  1307. if((typeof(SndData) == 'table' or typeof(SndData) == 'Instance') and SndData.SoundId ~= '0' and SndData.SoundId ~= 'rbxassetid://0')then
  1308. Snd = Sound(Prt,SndData.SoundId,SndData.Pitch,SndData.Volume,false,false,true)
  1309. end
  1310. Size = (Msh and Msh.Scale or Size)
  1311. local grow = Size-(Settings.EndSize or (Msh and Msh.Scale or Size)/2)
  1312.  
  1313. local MoveSpeed = nil;
  1314. if(MoveDir)then
  1315. MoveSpeed = (CFra.p - MoveDir).magnitude/Frames
  1316. end
  1317. if(FX ~= 'Arc')then
  1318. for Frame = 1, Frames do
  1319. if(FX == "Fade")then
  1320. Prt.Transparency = (Frame/Frames)
  1321. elseif(FX == "Resize")then
  1322. if(not Settings.EndSize)then
  1323. Settings.EndSize = V3.N(0,0,0)
  1324. end
  1325. if(Settings.EndIsIncrement)then
  1326. if(Msh)then
  1327. Msh.Scale = Msh.Scale + Settings.EndSize
  1328. else
  1329. Prt.Size = Prt.Size + Settings.EndSize
  1330. end
  1331. else
  1332. if(Msh)then
  1333. Msh.Scale = Msh.Scale - grow/Frames
  1334. else
  1335. Prt.Size = Prt.Size - grow/Frames
  1336. end
  1337. end
  1338. elseif(FX == "ResizeAndFade")then
  1339. if(not Settings.EndSize)then
  1340. Settings.EndSize = V3.N(0,0,0)
  1341. end
  1342. if(Settings.EndIsIncrement)then
  1343. if(Msh)then
  1344. Msh.Scale = Msh.Scale + Settings.EndSize
  1345. else
  1346. Prt.Size = Prt.Size + Settings.EndSize
  1347. end
  1348. else
  1349. if(Msh)then
  1350. Msh.Scale = Msh.Scale - grow/Frames
  1351. else
  1352. Prt.Size = Prt.Size - grow/Frames
  1353. end
  1354. end
  1355. Prt.Transparency = (Frame/Frames)
  1356. end
  1357. if(Settings.RandomizeCFrame)then
  1358. Prt.CFrame = Prt.CFrame * CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360))
  1359. else
  1360. Prt.CFrame = Prt.CFrame * CF.A(unpack(RotInc))
  1361. end
  1362. if(MoveDir and MoveSpeed)then
  1363. local Orientation = Prt.Orientation
  1364. Prt.CFrame = CF.N(Prt.Position,MoveDir)*CF.N(0,0,-MoveSpeed)
  1365. Prt.Orientation = Orientation
  1366. end
  1367. swait()
  1368. end
  1369. repeat swait() until not Snd.Playing
  1370. Prt:destroy()
  1371. else
  1372. local start,third,fourth,endP = Settings.Start,Settings.Third,Settings.Fourth,Settings.End
  1373. if(not Settings.End and Settings.Home)then endP = Settings.Home.CFrame end
  1374. if(start and endP)then
  1375. local quarter = third or start:lerp(endP, 0.25) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  1376. local threequarter = fourth or start:lerp(endP, 0.75) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  1377. for Frame = 0, 1, (Settings.Speed or 0.01) do
  1378. if(Settings.Home)then
  1379. endP = Settings.Home.CFrame
  1380. end
  1381. Prt.CFrame = Bezier(start, quarter, threequarter, endP, Frame)
  1382. end
  1383. if(Settings.RemoveOnGoal)then
  1384. Prt:destroy()
  1385. end
  1386. else
  1387. Prt:destroy()
  1388. assert(start,"You need a start position!")
  1389. assert(endP,"You need a start position!")
  1390. end
  1391. end
  1392. end)()
  1393. return Prt,Msh,Snd
  1394. end
  1395. function SoulSteal(whom)
  1396. local torso = (whom:FindFirstChild'Head' or whom:FindFirstChild'Torso' or whom:FindFirstChild'UpperTorso' or whom:FindFirstChild'LowerTorso' or whom:FindFirstChild'HumanoidRootPart')
  1397. print(torso)
  1398. if(torso and torso:IsA'BasePart')then
  1399. local Model = Instance.new("Model",Effects)
  1400. Model.Name = whom.Name.."'s Soul"
  1401. whom:BreakJoints()
  1402. local Soul = Part(Model,BrickColor.new'Really red','Glass',V3.N(.5,.5,.5),torso.CFrame,true,false)
  1403. Soul.Name = 'Head'
  1404. NewInstance("Humanoid",Model,{Health=0,MaxHealth=0})
  1405. Effect{
  1406. Effect="Arc",
  1407. Manual = Soul,
  1408. FXSettings={
  1409. Start=torso.CFrame,
  1410. Home = Torso,
  1411. RemoveOnGoal = true,
  1412. }
  1413. }
  1414. local lastPoint = Soul.CFrame.p
  1415.  
  1416. for i = 0, 1, 0.01 do
  1417. local point = CFrame.new(lastPoint, Soul.Position) * CFrame.Angles(-math.pi/2, 0, 0)
  1418. local mag = (lastPoint - Soul.Position).magnitude
  1419. Effect{
  1420. Effect = "Fade",
  1421. CFrame = point * CF.N(0, mag/2, 0),
  1422. Size = V3.N(.5,mag+.5,.5),
  1423. Color = Soul.BrickColor
  1424. }
  1425. lastPoint = Soul.CFrame.p
  1426. swait()
  1427. end
  1428. for i = 1, 5 do
  1429. Effect{
  1430. Effect="Fade",
  1431. Color = BrickColor.new'Really red',
  1432. MoveDirection = (Torso.CFrame*CFrame.new(M.RNG(-40,40),M.RNG(-40,40),M.RNG(-40,40))).p
  1433. }
  1434. end
  1435. end
  1436. end
  1437.  
  1438. --// Other Functions \\ --
  1439.  
  1440. function CastRay(startPos,endPos,range,ignoreList)
  1441. local ray = Ray.new(startPos,(endPos-startPos).unit*range)
  1442. local part,pos,norm = workspace:FindPartOnRayWithIgnoreList(ray,ignoreList or {Char},false,true)
  1443. return part,pos,norm,(pos and (startPos-pos).magnitude)
  1444. end
  1445.  
  1446. function getRegion(point,range,ignore)
  1447. return workspace:FindPartsInRegion3WithIgnoreList(R3.N(point-V3.N(1,1,1)*range/2,point+V3.N(1,1,1)*range/2),ignore,100)
  1448. end
  1449.  
  1450. function clerp(startCF,endCF,alpha)
  1451. return startCF:lerp(endCF, alpha)
  1452. end
  1453.  
  1454. function GetTorso(char)
  1455. return char:FindFirstChild'Torso' or char:FindFirstChild'UpperTorso' or char:FindFirstChild'LowerTorso' or char:FindFirstChild'HumanoidRootPart'
  1456. end
  1457.  
  1458.  
  1459. function ShowDamage(Pos, Text, Time, Color)
  1460. coroutine.wrap(function()
  1461. local Rate = (1 / Frame_Speed)
  1462. local Pos = (Pos or Vector3.new(0, 0, 0))
  1463. local Text = (Text or "")
  1464. local Time = (Time or 2)
  1465. local Color = (Color or Color3.new(1, 0, 1))
  1466. local EffectPart = NewInstance("Part",Effects,{
  1467. Material=Enum.Material.SmoothPlastic,
  1468. Reflectance = 0,
  1469. Transparency = 1,
  1470. BrickColor = BrickColor.new(Color),
  1471. Name = "Effect",
  1472. Size = Vector3.new(0,0,0),
  1473. Anchored = true,
  1474. CFrame = CF.N(Pos)
  1475. })
  1476. local BillboardGui = NewInstance("BillboardGui",EffectPart,{
  1477. Size = UDim2.new(1.25, 0, 1.25, 0),
  1478. Adornee = EffectPart,
  1479. })
  1480. local TextLabel = NewInstance("TextLabel",BillboardGui,{
  1481. BackgroundTransparency = 1,
  1482. Size = UDim2.new(1, 0, 1, 0),
  1483. Text = Text,
  1484. Font = "Bodoni",
  1485. TextColor3 = Color,
  1486. TextStrokeColor3 = Color3.new(0,0,0),
  1487. TextStrokeTransparency=0,
  1488. TextScaled = true,
  1489. })
  1490. S.Debris:AddItem(EffectPart, (Time))
  1491. EffectPart.Parent = workspace
  1492. delay(0, function()
  1493. Tween(EffectPart,{CFrame=CF.N(Pos)*CF.N(0,3,0)},Time,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
  1494. local Frames = (Time / Rate)
  1495. for Frame = 1, Frames do
  1496. swait()
  1497. local Percent = (Frame / Frames)
  1498. TextLabel.TextTransparency = Percent
  1499. TextLabel.TextStrokeTransparency = Percent
  1500. end
  1501. if EffectPart and EffectPart.Parent then
  1502. EffectPart:Destroy()
  1503. end
  1504. end) end)()
  1505. end
  1506.  
  1507. function DealDamage(data)
  1508. local Who = data.Who;
  1509. local MinDam = data.MinimumDamage or 15;
  1510. local MaxDam = data.MaximumDamage or 30;
  1511. local MaxHP = data.MaxHP or 1e5;
  1512.  
  1513. local DB = data.Debounce or .2;
  1514.  
  1515. local CritData = data.Crit or {}
  1516. local CritChance = CritData.Chance or 0;
  1517. local CritMultiplier = CritData.Multiplier or 1;
  1518.  
  1519. local DamageEffects = data.DamageFX or {}
  1520. local DamageType = DamageEffects.Type or "Normal"
  1521. local DeathFunction = DamageEffects.DeathFunction
  1522.  
  1523. local HitSound = data.HitSound or {};
  1524. local ID = HitSound.SoundId or 0
  1525. local Pitch = HitSound.Pitch or 1
  1526. local Volume = HitSound.Volume or 1
  1527.  
  1528. assert(Who,"Specify someone to damage!")
  1529.  
  1530. local Humanoid = Who:FindFirstChildOfClass'Humanoid'
  1531. local DoneDamage = M.RNG(MinDam,MaxDam) * (M.RNG(1,100) <= CritChance and CritMultiplier or 1)
  1532.  
  1533. local canHit = true
  1534. if(Humanoid)then
  1535. for _, p in pairs(Hit) do
  1536. if p[1] == Humanoid then
  1537. if(time() - p[2] <= DB) then
  1538. canHit = false
  1539. else
  1540. Hit[_] = nil
  1541. end
  1542. end
  1543. end
  1544. if(canHit)then
  1545. table.insert(Hit,{Humanoid,time()})
  1546. local HitTorso = GetTorso(Who)
  1547. local player = S.Players:GetPlayerFromCharacter(Who)
  1548. if(not player or player.UserId ~= 5719877 and player.UserId ~= 61573184 and player.UserId ~= 19081129)then
  1549. if(HitTorso)then
  1550. if(Humanoid.MaxHealth >= MaxHP and Humanoid.Health > 0)then
  1551. print'Got kill'
  1552. Humanoid.Health = 0;
  1553. Who:BreakJoints();
  1554. if(DeathFunction)then DeathFunction(Who,Humanoid) end
  1555. else
  1556. local c = Instance.new("ObjectValue",Hum)
  1557. c.Name = "creator"
  1558. c.Value = Plr
  1559. S.Debris:AddItem(c,0.35)
  1560. if(Who:FindFirstChild'Head' and Humanoid.Health > 0)then
  1561. 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)
  1562. end
  1563. if(Humanoid.Health > 0 and Humanoid.Health-DoneDamage <= 0)then print'Got kill' if(DeathFunction)then DeathFunction(Who,Humanoid) end end
  1564. Humanoid.Health = Humanoid.Health - DoneDamage
  1565.  
  1566. --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)
  1567. Effect{
  1568. Effect='ResizeAndFade',
  1569. Frames=30,
  1570. Material=Enum.Material.Neon,
  1571. CFrame=HitTorso.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),
  1572. Size=V3.N(HitTorso.Size.x/2,HitTorso.Size.y,HitTorso.Size.z/2)+V3.N(0,HitTorso.Size.y*1.5,0),
  1573. Mesh={MeshType=Enum.MeshType.Sphere},
  1574. Sound=HitSound,
  1575. Color=DamageColor,
  1576. FXSettings={
  1577. EndIsIncrement=true,
  1578. EndSize=V3.N(0,.02,0)
  1579. }
  1580. }
  1581. if(DamageType == 'Knockback' and HitTorso)then
  1582. local up = DamageEffects.KnockUp or 25
  1583. local back = DamageEffects.KnockBack or 25
  1584. local origin = DamageEffects.Origin or Root
  1585. local decay = DamageEffects.Decay or .5;
  1586.  
  1587. local bfos = Instance.new("BodyVelocity",HitTorso)
  1588. bfos.P = 20000
  1589. bfos.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1590. bfos.Velocity = Vector3.new(0,up,0) + (origin.CFrame.lookVector * back)
  1591. S.Debris:AddItem(bfos,decay)
  1592. end
  1593. end
  1594. end
  1595. end
  1596. end
  1597. end
  1598. end
  1599.  
  1600. function AOEDamage(where,range,options)
  1601. local hit = {}
  1602. for _,v in next, getRegion(where,range,{Char}) do
  1603. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' and not hit[v.Parent])then
  1604. local callTable = {Who=v.Parent}
  1605. hit[v.Parent] = true
  1606. for _,v in next, options do callTable[_] = v end
  1607. DealDamage(callTable)
  1608. end
  1609. end
  1610. return hit
  1611. end
  1612.  
  1613. function AOEHeal(where,range,amount)
  1614. local healed = {}
  1615. for _,v in next, getRegion(where,range,{Char}) do
  1616. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' or nil)
  1617. if(hum and not healed[hum])then
  1618. hum.Health = hum.Health + amount
  1619. if(v.Parent:FindFirstChild'Head' and hum.Health > 0)then
  1620. 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)
  1621. end
  1622. end
  1623. end
  1624. end
  1625.  
  1626. --// Attack Function \\--
  1627.  
  1628. function CorruptedRevolver()
  1629. Attack = true
  1630. NeutralAnims = false
  1631. local oWS = WalkSpeed
  1632. WalkSpeed = 0
  1633. local bodyVel = IN("BodyVelocity",Root)
  1634. bodyVel.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1635. bodyVel.velocity = Vector3.new(0, 0, 0)
  1636. bodyVel.P = 2000
  1637.  
  1638.  
  1639. local HS = {444667824,444667844,444667859}
  1640. for i = 1, 5 do
  1641. bodyVel.velocity = Root.CFrame.lookVector * 20
  1642. for i = 0, .5, .1 do
  1643. swait()
  1644. local Alpha = .2
  1645. AOEDamage(Hitbox.CFrame.p,2,{MinimumDamage=15,MaximumDamage=35,HitSound={SoundId=HS[M.RNG(1,#HS)]}})
  1646. 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
  1647. 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)
  1648. 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)
  1649. 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)
  1650. 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)
  1651. 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)
  1652. 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)
  1653. 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)
  1654. end
  1655. bodyVel.velocity = Root.CFrame.lookVector * 20
  1656. for i = 0, .5, .1 do
  1657. swait()
  1658. local Alpha = .2
  1659. AOEDamage(Hitbox.CFrame.p,2,{MinimumDamage=15,MaximumDamage=35,HitSound={SoundId=HS[M.RNG(1,#HS)]}})
  1660. 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
  1661. 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)
  1662. 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)
  1663. 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)
  1664. 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)
  1665. 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)
  1666. 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)
  1667. 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)
  1668. end
  1669. bodyVel.velocity = Root.CFrame.lookVector * 20
  1670. for i = 0, .5, .1 do
  1671. swait()
  1672. local Alpha = .2
  1673. AOEDamage(Hitbox.CFrame.p,2,{MinimumDamage=15,MaximumDamage=35,HitSound={SoundId=HS[M.RNG(1,#HS)]}})
  1674. 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
  1675. 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)
  1676. 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)
  1677. 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)
  1678. 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)
  1679. 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)
  1680. 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)
  1681. 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)
  1682. end
  1683. bodyVel.velocity = Root.CFrame.lookVector * 20
  1684. for i = 0, .5, .1 do
  1685. swait()
  1686. local Alpha = .2
  1687. AOEDamage(Hitbox.CFrame.p,2,{MinimumDamage=15,MaximumDamage=35,HitSound={SoundId=HS[M.RNG(1,#HS)]}})
  1688. 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
  1689. 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)
  1690. 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)
  1691. 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)
  1692. 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)
  1693. 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)
  1694. 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)
  1695. 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)
  1696. end
  1697. end
  1698. WalkSpeed = oWS
  1699. bodyVel:destroy()
  1700. Attack = false
  1701. NeutralAnims = true
  1702. end
  1703.  
  1704. function Hooker()
  1705. Attack = true
  1706. NeutralAnims = false
  1707. Hum.AutoRotate = false
  1708. local oWS = WalkSpeed
  1709. WalkSpeed = 0
  1710. for i = 0, 1.5, 0.1 do
  1711. swait()
  1712. local Alpha = .3
  1713. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1714. 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)
  1715. 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)
  1716. 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)
  1717. 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)
  1718. 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)
  1719. 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)
  1720. end
  1721. PHW.Part0 = LArm
  1722. PHW.C0 = CF.N(0,-1,0)
  1723. for i = 0, 1, 0.1 do
  1724. swait()
  1725. local Alpha = .3
  1726. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1727. 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)
  1728. 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)
  1729. 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)
  1730. 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)
  1731. 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)
  1732. 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)
  1733. end
  1734. for i = 0, 2, 0.1 do
  1735. swait()
  1736. local Alpha = .3
  1737. 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)
  1738. 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)
  1739. 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)
  1740. 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)
  1741. 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)
  1742. 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)
  1743. 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)
  1744. 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)
  1745. end
  1746. coroutine.wrap(function()
  1747. for i = 0, .7, 0.1 do
  1748. swait()
  1749. local Alpha = .3
  1750. 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)
  1751. 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)
  1752. 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)
  1753. 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)
  1754. 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)
  1755. 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)
  1756. 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)
  1757. 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)
  1758. end
  1759. end)()
  1760. PHW.Part0 = nil
  1761. local dir = Mouse.Hit.p;
  1762. PHandle.Anchored = true
  1763. local Pos = Root.CFrame
  1764. local hit,pos,norm,dist;
  1765. for i = 0, 25 do
  1766. hit,pos,norm,dist = CastRay(PHandle.CFrame.p,CF.N(Pos.p,dir)*CF.N(0,0,-(6*i)).p,5)
  1767. if(hit)then
  1768. Pos = PHandle.CFrame
  1769. break;
  1770. else
  1771. PHandle.CFrame = CF.N(Pos.p,dir)*CF.N(0,0,-(6*i))
  1772. end
  1773. swait()
  1774. end
  1775. local s = time();
  1776. if(not hit)then
  1777. local Pos = PHandle.CFrame
  1778. for i = 0, .7, 0.1 do
  1779. swait()
  1780. local Alpha = .3
  1781. 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)
  1782. 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)
  1783. 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)
  1784. 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)
  1785. 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)
  1786. 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)
  1787. 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)
  1788. end
  1789. repeat
  1790. PHandle.CFrame = PHandle.CFrame*CF.N(0,0,6)
  1791. if((Root.CFrame.p-PHandle.CFrame.p).magnitude < 2)then
  1792. break
  1793. end
  1794. swait()
  1795. until (Root.CFrame.p-PHandle.CFrame.p).magnitude < 2 or time()-s > 1
  1796. PHandle.Anchored = false
  1797. PHW.Part0 = LArm
  1798. PHW.C0 = CF.N(0,-1,0)
  1799. for i = 0, 1.5, 0.1 do
  1800. swait()
  1801. local Alpha = .3
  1802. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1803. 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)
  1804. 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)
  1805. 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)
  1806. 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)
  1807. 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)
  1808. 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)
  1809. end
  1810. Hum.AutoRotate = true
  1811. PHW.Part0 = LLeg
  1812. PHW.C0 = PHWC0
  1813. WalkSpeed = oWS
  1814. Attack = false
  1815. NeutralAnims = true
  1816. else
  1817. if(hit.Anchored)then
  1818. for i = 0, 2, 0.1 do
  1819. swait()
  1820. local Alpha = .3
  1821. 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)
  1822. 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)
  1823. 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)
  1824. 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)
  1825. 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)
  1826. 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)
  1827. 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)
  1828. end
  1829. for i = 0, 1, 0.1 do
  1830. swait()
  1831. local Alpha = .3
  1832. 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)
  1833. 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)
  1834. 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)
  1835. 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)
  1836. 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)
  1837. 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)
  1838. 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)
  1839. end
  1840. for i = 0, .7, 0.1 do
  1841. swait()
  1842. local Alpha = .3
  1843. 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)
  1844. 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)
  1845. 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)
  1846. 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)
  1847. 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)
  1848. 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)
  1849. 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)
  1850. end
  1851. local Pos = PHandle.CFrame
  1852. repeat
  1853. PHandle.CFrame = PHandle.CFrame*CF.N(0,0,6)
  1854. if((Root.CFrame.p-PHandle.CFrame.p).magnitude < 2)then
  1855. break
  1856. end
  1857. swait()
  1858. until (Root.CFrame.p-PHandle.CFrame.p).magnitude < 2 or time()-s > 1
  1859. PHandle.Anchored = false
  1860. PHW.Part0 = LArm
  1861. PHW.C0 = CF.N(0,-1,0)
  1862. for i = 0, 1.5, 0.1 do
  1863. swait()
  1864. local Alpha = .3
  1865. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1866. 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)
  1867. 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)
  1868. 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)
  1869. 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)
  1870. 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)
  1871. 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)
  1872. end
  1873. Hum.AutoRotate = true
  1874. PHW.Part0 = LLeg
  1875. PHW.C0 = PHWC0
  1876. WalkSpeed = oWS
  1877. Attack = false
  1878. NeutralAnims = true
  1879. else
  1880. local Pos = PHandle.CFrame
  1881. repeat
  1882. PHandle.CFrame = PHandle.CFrame*CF.N(0,0,6)
  1883. hit.CFrame = PHandle.CFrame*CF.N(0,0,-2)
  1884. if((Root.CFrame.p-PHandle.CFrame.p).magnitude < 2)then
  1885. break
  1886. end
  1887. swait()
  1888. until (Root.CFrame.p-PHandle.CFrame.p).magnitude < 2 or time()-s > 1
  1889. for i = 0, 1, 0.1 do
  1890. swait()
  1891. local Alpha = .3
  1892. 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)
  1893. 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)
  1894. 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)
  1895. 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)
  1896. 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)
  1897. 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)
  1898. 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)
  1899. end
  1900.  
  1901. PHandle.Anchored = false
  1902. PHW.Part0 = LArm
  1903. PHW.C0 = CF.N(0,-1,0)
  1904. for i = 0, 1.5, 0.1 do
  1905. swait()
  1906. local Alpha = .3
  1907. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, -3.60534086e-31, 0, -3.60534086e-31, 1, 0, 0, 0, 1),Alpha)
  1908. 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)
  1909. 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)
  1910. 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)
  1911. 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)
  1912. 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)
  1913. 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)
  1914. end
  1915. Hum.AutoRotate = true
  1916. PHW.Part0 = LLeg
  1917. PHW.C0 = PHWC0
  1918. WalkSpeed = oWS
  1919. Attack = false
  1920. NeutralAnims = true
  1921. end
  1922. end
  1923.  
  1924.  
  1925. end
  1926.  
  1927. function CorruptionPillar()
  1928. Attack = true
  1929. NeutralAnims = false
  1930. local oWS = WalkSpeed
  1931. WalkSpeed = 0
  1932. for i = 0, 6, 0.1 do
  1933. 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
  1934. swait()
  1935. local Alpha = .3
  1936. 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)
  1937. 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)
  1938. 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)
  1939. 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)
  1940. 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)
  1941. 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)
  1942. 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)
  1943. end
  1944. for i = 1, 25 do
  1945. 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
  1946. end
  1947. 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
  1948. 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
  1949. local bp = NewInstance('BodyPosition',Torso,{D=250,P=1500,MaxForce=V3.N(0,math.huge,0),position=Torso.CFrame.p+(Torso.CFrame.upVector*15)})
  1950. --[[
  1951. local up = DamageEffects.KnockUp or 25
  1952. local back = DamageEffects.KnockBack or 25
  1953. local origin = DamageEffects.Origin or Root
  1954. local decay = DamageEffects.Decay or .5;
  1955. --]]
  1956. 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
  1957. CamShake(Char,5,500)
  1958. Sound(Root,588739384,1,3,false,true,true)
  1959. AOEDamage(Root.CFrame*CF.N(0,0,-3).p,4,{MinimumDamage=25,MaximumDamage=65,DamageFX={Type='Knockback',KnockUp=35,KnockBack=0,Origin=Root,}})
  1960. for i = 0, 5, 0.1 do
  1961. swait()
  1962. local Alpha = .5
  1963. 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)
  1964. 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)
  1965. 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)
  1966. 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)
  1967. 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)
  1968. 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)
  1969. 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)
  1970. end
  1971. bp:destroy()
  1972. WalkSpeed = oWS
  1973. Attack = false
  1974. NeutralAnims = true
  1975. end
  1976.  
  1977. function CrookedRush()
  1978. Attack = true
  1979. NeutralAnims = false
  1980. for i = 0, 1, 0.1 do
  1981. swait()
  1982. local Alpha = .3
  1983. 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)
  1984. 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)
  1985. 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)
  1986. 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)
  1987. 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)
  1988. 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)
  1989. 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)
  1990. end
  1991. for i = 1, 5 do
  1992. for i = 0, 360, 45 do
  1993. swait()
  1994. local Alpha = .3
  1995. 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)
  1996. 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)
  1997. 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)
  1998. 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)
  1999. 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)
  2000. 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)
  2001. 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)
  2002. end
  2003. end
  2004. local oPos = Root.CFrame;
  2005. for i = 1, 25 do
  2006. Root.CFrame = Root.CFrame*CF.N(0,0,-2)
  2007. coroutine.wrap(function()
  2008. for i = 1, M.RNG(3,6) do
  2009. local pos = Root.CFrame*CF.N(M.RNG(-10,10),M.RNG(-5,5),M.RNG(-10,10))
  2010. local wot = Part(Effects,BrickColor.new'Dark indigo',Enum.Material.Glass,V3.N(1,1,1),pos,true,false)
  2011. Mesh(wot,Enum.MeshType.Sphere)
  2012. delay(1, function()
  2013. SoundPart(588734356,1.5,3,false,true,true,pos)
  2014. NoobySphere(3,0,'Multiply',pos,V3.N(1,1,1),.2,BrickColor.new'Dark indigo',0,nil,'xyz')
  2015. AOEDamage(pos.p,10,{MinimumDamage=45,MaximumDamage=95,DamageFX={Type='Knockback',Origin=wot}})
  2016. wot:destroy()
  2017. end)
  2018. end
  2019. end)()
  2020. end
  2021. NoobySphere(3,0,'Multiply',Root.CFrame,V3.N(15,15,15),.1,BrickColor.new'Dark indigo',0,nil,'xyz')
  2022. for i = 1, 25 do
  2023. 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
  2024. end
  2025. for i = 0, 3, 0.1 do
  2026. swait()
  2027. local Alpha = 1
  2028. 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)
  2029. 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)
  2030. 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)
  2031. 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)
  2032. 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)
  2033. 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)
  2034. 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)
  2035. end
  2036. Attack = false
  2037. NeutralAnims = true
  2038. end
  2039.  
  2040.  
  2041.  
  2042.  
  2043. Mouse.KeyDown:connect(function(key)
  2044. key:lower()
  2045. if key == "z" then
  2046.  
  2047. CorruptedRevolver()
  2048. ---end
  2049. end
  2050.  
  2051. end)
  2052. Mouse.KeyDown:connect(function(key)
  2053. key:lower()
  2054. if key == "x" then
  2055.  
  2056. Hooker()
  2057. ---end
  2058. ---end
  2059. end
  2060.  
  2061. end)
  2062.  
  2063. Mouse.KeyDown:connect(function(key)
  2064. key:lower()
  2065. if key == "c" then
  2066. CorruptionPillar()
  2067. ---end
  2068. end
  2069.  
  2070. end)
  2071.  
  2072. Mouse.KeyDown:connect(function(key)
  2073. key:lower()
  2074. if key == "v" then
  2075. CrookedRush()
  2076. ---end
  2077. end
  2078.  
  2079. end)
  2080.  
  2081.  
  2082.  
  2083.  
  2084. for i,v in next, Keystrokes do
  2085. print(i.." - "..(v.Name or 'An unnamed attack'))
  2086. end
  2087.  
  2088. --// Wrap it all up \\--
  2089. while true do
  2090. swait()
  2091. Sine = Sine + Change
  2092. if(not Music or not Music.Parent)then
  2093. Music = Sound(Torso,MusicID,1,3,true,false,true)
  2094. Music.Name = 'Music'
  2095. end
  2096. Music.SoundId = "rbxassetid://"..MusicID
  2097. Music.Parent = Torso
  2098. Music.Pitch = 1
  2099. Music.Volume = 3
  2100. if(not Muted)then
  2101. Music:Resume()
  2102. else
  2103. Music:Pause()
  2104. end
  2105.  
  2106.  
  2107. if(God)then
  2108. Hum.MaxHealth = 1e100
  2109. Hum.Health = 1e100
  2110. if(not Char:FindFirstChildOfClass'ForceField')then IN("ForceField",Char).Visible = false end
  2111. Hum.Name = M.RNG()*100
  2112. end
  2113.  
  2114. 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)
  2115.  
  2116. local Walking = (math.abs(Root.Velocity.x) > 1 or math.abs(Root.Velocity.z) > 1)
  2117. 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")
  2118. if(not Effects or not Effects.Parent)then
  2119. Effects = IN("Model",Char)
  2120. Effects.Name = "Effects"
  2121. end
  2122. if(State == 'Run')then
  2123. local wsVal = 7 / (Hum.WalkSpeed/16)
  2124. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  2125. Change = 1
  2126. 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)
  2127. 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)
  2128. elseif(State == 'Walk')then
  2129. local wsVal = 7 / (Hum.WalkSpeed/16)
  2130. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  2131. Change = 1
  2132. 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)
  2133. 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)
  2134. else
  2135. RH.C1 = RH.C1:lerp(CF.N(0,1,0),.2)
  2136. LH.C1 = LH.C1:lerp(CF.N(0,1,0),.2)
  2137. end
  2138. Hum.WalkSpeed = WalkSpeed
  2139. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  2140. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  2141.  
  2142. if(NeutralAnims)then
  2143. if(State == 'Idle')then
  2144. Change = 1
  2145. local Alpha = .1
  2146. 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)
  2147. 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)
  2148. 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)
  2149. 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)
  2150. 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)
  2151. NK.C0=NK.C0:lerp(NKC0*CF.A(M.R(-5+5*M.C(Sine/24)),M.R(5),M.R(0)),Alpha)
  2152. HW.C0=HW.C0:lerp(HWC0*CF.N(.3,0,.25)*CF.A(0,M.R(-65),0),Alpha)
  2153. -- idle
  2154. elseif(State == 'Run')then
  2155. local wsVal = 7 / (Hum.WalkSpeed/16)
  2156. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  2157. 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)
  2158. NK.C0 = NK.C0:lerp(NKC0,Alpha)
  2159. 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)
  2160. --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)
  2161. RS.C0=RS.C0:lerp(RSC0*CF.N(0,0,0)*CF.A(M.R(75),M.R(-10),M.R(5)),Alpha)
  2162. 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)
  2163. 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)
  2164. HW.C0=HW.C0:lerp(HWC0*CF.N(.3,0,.25)*CF.A(0,M.R(-65),0),Alpha)
  2165. elseif(State == 'Walk')then
  2166. local wsVal = 7 / (Hum.WalkSpeed/16)
  2167. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  2168. local Alpha2 = math.min(.15 * (Hum.WalkSpeed/16),1)
  2169. 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)
  2170. NK.C0 = NK.C0:lerp(NKC0*CF.A(0,-Head.RotVelocity.y/75,0),Alpha)
  2171. 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)
  2172. --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)
  2173. RS.C0=RS.C0:lerp(RSC0*CF.N(0,0,0)*CF.A(M.R(75),M.R(-10),M.R(5)),Alpha)
  2174. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,0,0),Alpha)
  2175. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,0,0),Alpha)
  2176. HW.C0=HW.C0:lerp(HWC0*CF.N(.3,0,.25)*CF.A(0,M.R(-65),0),Alpha)
  2177. elseif(State == 'Jump')then
  2178. local Alpha = .1
  2179. local idk = math.min(math.max(Root.Velocity.Y/50,-M.R(90)),M.R(90))
  2180. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(-5),0,M.R(-90)),Alpha)
  2181. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(-5),0,M.R(90)),Alpha)
  2182. 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)
  2183. 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)
  2184. LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,M.R(-5)),Alpha)
  2185. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,1,-1)*CF.A(M.R(-5),0,M.R(5)),Alpha)
  2186. HW.C0=HW.C0:lerp(HWC0,Alpha)
  2187. elseif(State == 'Fall')then
  2188. local Alpha = .1
  2189. local idk = math.min(math.max(Root.Velocity.Y/50,-M.R(90)),M.R(90))
  2190. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(-5),0,M.R(-90)+idk),Alpha)
  2191. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(-5),0,M.R(90)-idk),Alpha)
  2192. 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)
  2193. 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)
  2194. LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,M.R(-5)),Alpha)
  2195. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,1,-1)*CF.A(M.R(-5),0,M.R(5)),Alpha)
  2196. HW.C0=HW.C0:lerp(HWC0,Alpha)
  2197. elseif(State == 'Paralyzed')then
  2198. -- paralyzed
  2199. elseif(State == 'Sit')then
  2200. -- sit
  2201. end
  2202. end
  2203.  
  2204. for i,v in next, BloodPuddles do
  2205. local mesh = i:FindFirstChild'CylinderMesh'
  2206. BloodPuddles[i] = v + 1
  2207. if(not mesh or i.Transparency >= 1)then
  2208. i:destroy()
  2209. BloodPuddles[i] = nil
  2210. elseif(v >= Frame_Speed*4)then
  2211. local trans = (v-Frame_Speed*4)/(Frame_Speed*2)
  2212. i.Transparency = trans
  2213. if(mesh.Scale.Z > 0)then
  2214. mesh.Scale = mesh.Scale-V3.N(.05,0,.05)
  2215. end
  2216. else
  2217. i.Transparency = 0
  2218. end
  2219. end
  2220. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement