Advertisement
Sheckles

gfcnhka,gfskl,jmfmasgh,ksljfnd

Jul 3rd, 2018
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 136.72 KB | None | 0 0
  1. local expcounter = false
  2. local exp = "??????"
  3. local sprint = false
  4. local done = false
  5. local canheal = false
  6. local deathchat1 = false
  7. local once = true
  8. local breakjoints = true
  9. local dead = false
  10. local candie = true
  11. local deathchat = false
  12. local canattack = true
  13. local colorred = 0
  14. local lala = true
  15. local idleon = true
  16. local walking = true
  17. local idle1 = true
  18. local canchange = false
  19. local idle = true
  20. local Player = game.Players.localPlayer
  21. local Character = Player.Character
  22. local LeftArm = Character["Left Arm"]
  23. local RightArm = Character["Right Arm"]
  24. local m = Instance.new("Model", Character)
  25. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  26. local Plrs = S.Players
  27. local p = Plrs.LocalPlayer
  28. local char = p.Character
  29. local mouse = p:GetMouse()
  30. local larm = char["Left Arm"]
  31. local rarm = char["Right Arm"]
  32. local lleg = char["Left Leg"]
  33. local rleg = char["Right Leg"]
  34. local hed = char.Head
  35. local torso = char.Torso
  36. local hum = char.Humanoid
  37.  
  38. um = Instance.new("Part",char)
  39. um.Name = "Immune"
  40. um.CanCollide = false
  41. um.Anchored = true
  42. um.Transparency = 1
  43. dead = true
  44. local cam = game.Workspace.CurrentCamera
  45. local root = char.HumanoidRootPart
  46. local deb = false
  47. local shot = 0
  48. local debris=game:service"Debris"
  49. local l = game:GetService("Lighting")
  50. local rs = game:GetService("RunService").RenderStepped
  51. local Create = LoadLibrary("RbxUtility").Create
  52. ff = Instance.new("ForceField",char)
  53. ff.Visible = false
  54. ArtificialHB = Create("BindableEvent", script){
  55. Parent = script,
  56. Name = "Heartbeat",
  57. }
  58. CFuncs = {
  59.  
  60.  
  61. ["Sound"] = {
  62. Create = function(id, par, vol, pit)
  63. coroutine.resume(coroutine.create(function()
  64. local S = Create("Sound"){
  65. Volume = vol,
  66. Pitch = pit or 1,
  67. SoundId = id,
  68. Parent = par or workspace,
  69. }
  70. wait()
  71. S:play()
  72. game:GetService("Debris"):AddItem(S, 6)
  73. end))
  74. end;
  75. };
  76.  
  77.  
  78.  
  79. CreateTemplate = {
  80.  
  81. };
  82. }
  83. function swait(num)
  84. if num == 0 or num == nil then
  85. ArtificialHB.Event:wait()
  86. else
  87. for i = 0, num do
  88. ArtificialHB.Event:wait()
  89. end
  90. end
  91. end
  92. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  93. function lerp(a, b, t) -- Linear interpolation
  94. return a + (b - a)*t
  95. end
  96.  
  97. function slerp(a, b, t) --Spherical interpolation
  98. dot = a:Dot(b)
  99. if dot > 0.99999 or dot < -0.99999 then
  100. return t <= 0.5 and a or b
  101. else
  102. r = math.acos(dot)
  103. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  104. end
  105. end
  106. function matrixInterpolate(a, b, t)
  107. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  108. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  109. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  110. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  111. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  112. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  113. local t = v1:Dot(v2)
  114. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  115. return CFrame.new()
  116. end
  117. return CFrame.new(
  118. v0.x, v0.y, v0.z,
  119. v1.x, v1.y, v1.z,
  120. v2.x, v2.y, v2.z,
  121. v3.x, v3.y, v3.z)
  122. end
  123. ----------------------------------------------------
  124. function genWeld(a,b)
  125. local w = Instance.new("Weld",a)
  126. w.Part0 = a
  127. w.Part1 = b
  128. return w
  129. end
  130. function weld(a, b)
  131. local weld = Instance.new("Weld")
  132. weld.Name = "W"
  133. weld.Part0 = a
  134. weld.Part1 = b
  135. weld.C0 = a.CFrame:inverse() * b.CFrame
  136. weld.Parent = a
  137. return weld;
  138. end
  139. ----------------------------------------------------
  140. function Lerp(c1,c2,al)
  141. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  142. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  143. for i,v in pairs(com1) do
  144. com1[i] = v+(com2[i]-v)*al
  145. end
  146. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  147. end
  148. ----------------------------------------------------
  149. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  150. local wld = Instance.new("Weld", wp1)
  151. wld.Part0 = wp0
  152. wld.Part1 = wp1
  153.  
  154. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  155. end
  156. ----------------------------------------------------
  157. function weld5(part0, part1, c0, c1)
  158. weeld=Instance.new("Weld", part0)
  159. weeld.Part0=part0
  160. weeld.Part1=part1
  161. weeld.C0=c0
  162. weeld.C1=c1
  163. return weeld
  164. end
  165. ----------------------------------------------------
  166. function HasntTouched(plrname)
  167. local ret = true
  168. for _, v in pairs(Touche) do
  169. if v == plrname then
  170. ret = false
  171. end
  172. end
  173. return ret
  174. end
  175. newWeld(torso, larm, -1.5, 0.5, 0)
  176. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  177. newWeld(torso, rarm, 1.5, 0.5, 0)
  178. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  179. newWeld(torso, hed, 0, 1.5, 0)
  180. newWeld(torso, lleg, -0.5, -1, 0)
  181. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  182. newWeld(torso, rleg, 0.5, -1, 0)
  183. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  184. newWeld(root, torso, 0, -1, 0)
  185. torso.Weld.C1 = CFrame.new(0, -1, 0)
  186.  
  187. function chatfunc(text)
  188. local chat = coroutine.wrap(function()
  189. if char:FindFirstChild("TalkingBillBoard")~= nil then
  190. char:FindFirstChild("TalkingBillBoard"):destroy()
  191. end
  192. local naeeym2 = Instance.new("BillboardGui",char)
  193. naeeym2.Size = UDim2.new(0,0,0,0)
  194. naeeym2.StudsOffset = Vector3.new(0,3,0)
  195. naeeym2.Adornee = hed
  196. naeeym2.Name = "TalkingBillBoard"
  197. local tecks2 = Instance.new("TextLabel",naeeym2)
  198. tecks2.BackgroundTransparency = 1
  199. tecks2.BorderSizePixel = 0
  200. tecks2.Text = ""
  201. tecks2.Font = "Arcade"
  202. tecks2.TextSize = 30
  203. tecks2.TextStrokeTransparency = 0
  204. tecks2.TextColor3 = Color3.fromRGB(100,100,100)
  205. tecks2.TextStrokeColor3 = Color3.new(0,0,150)
  206. tecks2.Size = UDim2.new(1,0,0.5,0)
  207.  
  208. for i = 1,string.len(text),1 do
  209. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=565939471", hed, 0, .8)
  210. tecks2.Text = string.sub(text,1,i)
  211.  
  212. wait(0.01)
  213. end
  214. wait()
  215. for i = 1, 50 do
  216. swait()
  217. tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  218. tecks2.Rotation = tecks2.Rotation - .8
  219. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  220. tecks2.TextTransparency = tecks2.TextTransparency + .04
  221.  
  222. end
  223. naeeym2:Destroy()
  224. end)
  225. chat()
  226. end
  227. function onChatted(msg)
  228. chatfunc(msg)
  229. end
  230. p.Chatted:connect(onChatted)
  231. hed.face.Texture = "http://www.roblox.com/asset/?id=508723120"
  232. ypcall(function()
  233. shirt = Instance.new("Shirt", char)
  234. shirt.Name = "Shirt"
  235. pants = Instance.new("Pants", char)
  236. pants.Name = "Pants"
  237. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=2036915590"
  238. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=2036915590"
  239. end)
  240. char["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
  241. char["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
  242. char["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
  243. char["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
  244.  
  245. CF = CFrame.new
  246. local C3 = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  247. local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  248. 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}
  249. local R3 = {N=Region3.new}
  250. local De = S.Debris
  251. local WS = workspace
  252. local Lght = S.Lighting
  253. local RepS = S.ReplicatedStorage
  254. local IN = Instance.new
  255. local CSK = ColorSequenceKeypoint.new
  256. local CS = ColorSequence.new
  257. VT = Vector3.new
  258. IT = Instance.new
  259.  
  260. local function weldBetween(a, b)
  261. local weldd = Instance.new("ManualWeld")
  262. weldd.Part0 = a
  263. weldd.Part1 = b
  264. weldd.C0 = CFrame.new()
  265. weldd.C1 = b.CFrame:inverse() * a.CFrame
  266. weldd.Parent = a
  267. return weldd
  268. end
  269.  
  270. for _,v in next, char:children() do
  271. if(v:IsA'Accessory')then
  272. v:destroy()
  273. end
  274. end
  275. local Hat = char:FindFirstChild("Hat_F") or Instance.new("Hat")
  276. Hat.AttachmentPos = Vector3.new(0, -.05, -.1)
  277. Hat.Name = "Hat_F"
  278. local Handle = Hat:FindFirstChild("Handle") or Instance.new("Part", Hat)
  279. if Handle.Name ~= "Handle" then
  280. Handle.Size = Vector3.new(1, 1, 1)
  281. end
  282. Handle.BottomSurface = 0
  283. Handle.Name = "Handle"
  284. Handle.TopSurface = 0
  285. Handle.Locked = 1
  286. local Mesh = Hat:FindFirstChild("Mesh") or Instance.new("SpecialMesh", Handle)
  287. Mesh.TextureId = "http://www.roblox.com/asset/?id=2036915908"
  288. Mesh.MeshId = "http://www.roblox.com/asset/?id=85132027"
  289. Mesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  290. Hat.Parent = char
  291.  
  292. MegaloStrikesBack = Instance.new("Sound", torso)
  293. MegaloStrikesBack.Looped = true
  294. MegaloStrikesBack.SoundId = "http://www.roblox.com/asset?id=916597745"
  295. MegaloStrikesBack.Volume = 6
  296. MegaloStrikesBack:Play()
  297.  
  298. local particleemitter = Instance.new('ParticleEmitter', LeftArm)
  299. particleemitter.VelocitySpread = 350
  300. particleemitter.Lifetime = NumberRange.new(1)
  301. particleemitter.Speed = NumberRange.new(0)
  302. cringememe= {}
  303. for i=0, 19 do
  304. cringememe[#cringememe + 1] = NumberSequenceKeypoint.new(i/19, math.random(0.5, 0.9))
  305. end
  306. cringememe4= {}
  307. for i=0, 19 do
  308. cringememe4[#cringememe4 + 1] = NumberSequenceKeypoint.new(i/19, math.random(0.5, 0.9))
  309. end
  310. particleemitter.Size = NumberSequence.new(cringememe4)
  311. particleemitter.Rate = 50
  312. particleemitter.LockedToPart = true
  313. particleemitter.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(0.8, 0), NumberSequenceKeypoint.new(1, 1)})
  314. particleemitter.LightEmission = 3
  315. particleemitter.Texture = "rbxassetid://341277531"
  316. particleemitter.Color = ColorSequence.new(BrickColor.new("Dark indigo").Color)
  317. cringememe3= {}
  318. for i=0, 19 do
  319. cringememe3[#cringememe3 + 1] = NumberSequenceKeypoint.new(i/19, math.random(0.5, 0.9))
  320. end
  321. particleemitter.Size = NumberSequence.new(cringememe4)
  322. particleemitter.Rate = 50
  323. particleemitter.LockedToPart = true
  324. particleemitter.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(0.8, 0), NumberSequenceKeypoint.new(1, 1)})
  325. particleemitter.LightEmission = 3
  326. particleemitter.Texture = "rbxassetid://341277531"
  327. particleemitter.Color = ColorSequence.new(BrickColor.new("Dark indigo").Color)
  328.  
  329. local MAGICPARTICLE = "341277531"
  330.  
  331. local EyeSizes={
  332. NumberSequenceKeypoint.new(0,0.5,0),
  333. NumberSequenceKeypoint.new(1,0.2,0)
  334. }
  335. local EyeTrans={
  336. NumberSequenceKeypoint.new(0,0,0),
  337. NumberSequenceKeypoint.new(1,1,0)
  338. }
  339. local PE=Instance.new("ParticleEmitter")
  340. PE.LightEmission=0.3
  341. PE.Size=NumberSequence.new(EyeSizes)
  342. PE.Transparency=NumberSequence.new(EyeTrans)
  343. PE.Rotation=NumberRange.new(0,360)
  344. PE.LockedToPart = false
  345. PE.Speed = NumberRange.new(0,0,0)
  346. PE.ZOffset = 0.3
  347. PE.Rate = 999
  348. PE.Name = "Particles"
  349.  
  350. function CreateParticles(art,text,accel,drag,lifetime,type,isenabledbydefault,locked)
  351. local particle = nil
  352. coroutine.resume(coroutine.create(function(PART)
  353. particle = PE:Clone()
  354. Swait()
  355. particle.Rate = 999
  356. particle.Parent = art
  357. particle.Acceleration = accel
  358. if type == "Fire" then
  359. local EyeSizes={
  360. NumberSequenceKeypoint.new(0,0.5,0.3),
  361. NumberSequenceKeypoint.new(1,0.2,0.2)
  362. }
  363. particle.Size = NumberSequence.new(EyeSizes)
  364. elseif type == "Smoke" then
  365. local EyeSizes={
  366. NumberSequenceKeypoint.new(0,0.5,0),
  367. NumberSequenceKeypoint.new(1,5,0.5)
  368. }
  369. particle.Size = NumberSequence.new(EyeSizes)
  370. elseif type == "Solid" then
  371. local EyeSizes={
  372. NumberSequenceKeypoint.new(0,0.5,0),
  373. NumberSequenceKeypoint.new(1,0.5,0)
  374. }
  375. particle.Size = NumberSequence.new(EyeSizes)
  376. end
  377. particle.Lifetime=NumberRange.new(lifetime)
  378. particle.Drag = drag
  379. if locked == true then
  380. particle.LockedToPart = true
  381. end
  382. particle.Texture = "http://www.roblox.com/asset/?id="..text
  383. particle.Enabled = isenabledbydefault
  384. end))
  385. return particle
  386. end
  387.  
  388. local EyeSizes={
  389. NumberSequenceKeypoint.new(0,0.5,0),
  390. NumberSequenceKeypoint.new(1,0.2,0)
  391. }
  392. local EyeTrans={
  393. NumberSequenceKeypoint.new(0,0,0),
  394. NumberSequenceKeypoint.new(1,1,0)
  395. }
  396. local PE2=Instance.new("ParticleEmitter")
  397. PE2.LightEmission=0.8
  398. PE2.Size=NumberSequence.new(EyeSizes)
  399. PE2.Transparency=NumberSequence.new(EyeTrans)
  400. PE2.Rotation=NumberRange.new(0,360)
  401. PE2.LockedToPart = false
  402. PE2.Speed = NumberRange.new(0,0,0)
  403. PE2.ZOffset = 0.3
  404. PE2.Rate = 999
  405. PE2.VelocitySpread = 90000
  406. PE2.Name = "Particles"
  407.  
  408. function CreateParticles2(art,accel,drag,lifetime,type,isenabledbydefault,locked,size,speed)
  409. local particle = nil
  410. coroutine.resume(coroutine.create(function(PART)
  411. particle = PE2:Clone()
  412. Swait()
  413. particle.Rate = 999
  414. particle.Parent = art
  415. particle.Acceleration = accel
  416. if type == "Fire" then
  417. local EyeSizes={
  418. NumberSequenceKeypoint.new(0,size,size/2),
  419. NumberSequenceKeypoint.new(1,size/4,size/8)
  420. }
  421. particle.Size = NumberSequence.new(EyeSizes)
  422. elseif type == "Smoke" then
  423. local EyeSizes={
  424. NumberSequenceKeypoint.new(0,0.5,0),
  425. NumberSequenceKeypoint.new(1,5,0.5)
  426. }
  427. particle.Size = NumberSequence.new(EyeSizes)
  428. elseif type == "Solid" then
  429. local EyeSizes={
  430. NumberSequenceKeypoint.new(0,0.5,0),
  431. NumberSequenceKeypoint.new(1,0.5,0)
  432. }
  433. particle.Size = NumberSequence.new(EyeSizes)
  434. end
  435. particle.Lifetime=NumberRange.new(lifetime)
  436. particle.Drag = drag
  437. if locked == true then
  438. particle.LockedToPart = true
  439. end
  440. particle.Speed = NumberRange.new(speed,speed,speed)
  441. particle.Texture = "http://www.roblox.com/asset/?id="..MAGICPARTICLE
  442. particle.Enabled = isenabledbydefault
  443. --particle.Color = ColorSequence.new(Color3.new(255, 255, 255))
  444. end))
  445. return particle
  446. end
  447.  
  448. local Plate = IT("Part",Weapon)
  449. Plate.Size = VT(1,0.1,1)
  450. Plate.Transparency = 1
  451. Plate.CanCollide = false
  452. Plate.CFrame = LeftArm.CFrame * CF(0,-1.1,0)
  453. CreateParticles(Plate,MAGICPARTICLE,VT(0,2,0),2,2,"Fire",true,true)
  454. weldBetween(LeftArm,Plate)
  455.  
  456.  
  457. handle = Instance.new("Part", char)
  458. handle.TopSurface = "Smooth"
  459. handle.BottomSurface = "Smooth"
  460. handle.Material = "Neon"
  461.  
  462. handle.Size = Vector3.new(0.2, 0.5, 0.5)
  463. handle.CanCollide = false
  464.  
  465. handle.FormFactor = "Custom"
  466. local Weldb = Instance.new("Weld", char)
  467. Weldb.Part0 = char["Right Arm"]
  468. Weldb.Part1 = handle
  469. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  470. local KnifeMesh = Instance.new("SpecialMesh", handle)
  471. KnifeMesh.MeshType = "FileMesh"
  472. KnifeMesh.MeshId = "http://www.roblox.com/asset/?id=0"
  473. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=0"
  474.  
  475. CreateWeld = function(Parent, Part0, Part1, C0, C1)
  476.  
  477. local Weld = Create("Weld")({Parent = Parent, Part0 = Part0, Part1 = Part1, C0 = C0, C1 = C1})
  478. return Weld
  479. end
  480.  
  481. RemoveOutlines = function(part)
  482. part.TopSurface = 10
  483. end
  484.  
  485. CreatePart = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  486.  
  487. local Part = Create("Part")({Parent = Parent, Reflectance = Reflectance, Transparency = Transparency, CanCollide = false, Locked = true, BrickColor = BrickColor.new(tostring(BColor)), Name = Name, Size = Size, Material = Material})
  488. RemoveOutlines(Part)
  489. return Part
  490. end
  491.  
  492. CreateMesh = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  493.  
  494. local Msh = Create(Mesh)({Parent = Part, Offset = OffSet, Scale = Scale})
  495. if Mesh == "SpecialMesh" then
  496. Msh.MeshType = MeshType
  497. Msh.MeshId = MeshId
  498. end
  499. return Msh
  500. end
  501.  
  502. CreatePart2 = function(Parent, Material, Reflectance, Transparency, PartType, BColor, Name, Size)
  503.  
  504. if PartType == "Part" then
  505. local Part = Create("Part")({Parent = Parent, Reflectance = Reflectance, Transparency = Transparency, CanCollide = false, Locked = true, BrickColor = BrickColor.new(tostring(BColor)), Name = Name, Size = Size, Material = Material})
  506. RemoveOutlines(Part)
  507. return Part
  508. else
  509. do
  510. if PartType == "WedgePart" then
  511. local Part = Create("WedgePart")({Parent = Parent, Reflectance = Reflectance, Transparency = Transparency, CanCollide = false, Locked = true, BrickColor = BrickColor.new(tostring(BColor)), Name = Name, Size = Size, Material = Material})
  512. RemoveOutlines(Part)
  513. return Part
  514. end
  515. end
  516. end
  517. end
  518.  
  519. Handle = CreatePart(m, Enum.Material.SmoothPlastic, 0, 1, "Dark indigo", "Handle", Vector3.new(1, 2, 1))
  520. HandleWeld = CreateWeld(m, Character["Right Arm"], Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  521. Claw = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Claw", Vector3.new(1, 1, 1))
  522. ClawWeld = CreateWeld(m, Handle, Claw, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142869996, -0.598956585, -0.401195407, 0, 0, 1, 0.25881803, -0.965926111, 0, 0.965926111, 0.25881803, 0))
  523. CreateMesh("SpecialMesh", Claw, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(1, 0.709999979, 0.150000006))
  524. Claw = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Claw", Vector3.new(1, 1, 1))
  525. ClawWeld = CreateWeld(m, Handle, Claw, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.858075142, -0.276378155, -0.49209857, 0.353552133, -0.866025269, 0.353555113, 0.707108736, -9.03335206e-07, -0.707104981, 0.612371027, 0.500000358, 0.61237365))
  526. CreateMesh("SpecialMesh", Claw, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(1, 0.709999979, 0.100000001))
  527. Claw = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Claw", Vector3.new(1, 1, 1))
  528. ClawWeld = CreateWeld(m, Handle, Claw, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142959999, -0.79026103, -0.577523232, 0, 0, 1, 0.0581610166, -0.998307228, 0, 0.998307228, 0.0581610166, 0))
  529. CreateMesh("SpecialMesh", Claw, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.400000006, 1, 0.100000001))
  530. Claw = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Claw", Vector3.new(1, 1, 1))
  531. ClawWeld = CreateWeld(m, Handle, Claw, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.857914209, 0.258751988, -0.512362957, 0.353553236, -0.866025567, -0.353553236, -0.707106471, 3.09715034e-07, -0.707107246, 0.612372994, 0.499999791, -0.6123721))
  532. CreateMesh("SpecialMesh", Claw, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(1, 0.709999979, 0.100000001))
  533. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.210449979, 0.210449979, 0.200000003))
  534. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.508293927, 0.581420183, 0.355297565, -1, 0, 0, 0, -0.694275975, -0.719708979, 0, -0.719708979, 0.694275975))
  535. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(0.207726225, 0.473494887, 1))
  536. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.210449979, 0.210449979, 0.200000003))
  537. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.508293927, -0.605236769, -0.322324991, 1, 0, 0, 0, 0.719708979, -0.694275975, 0, 0.694275975, 0.719708979))
  538. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(0.207726225, 0.473494887, 1))
  539. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.210449979, 0.210449979, 0.200000003))
  540. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.508293927, 0.0117408261, -0.729162693, 1, 0, 0, 0, -0.0252030101, -0.999682367, 0, 0.999682367, -0.0252030101))
  541. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(0.208000004, 0.47299999, 0.47299999))
  542. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.210449979, 0.210449979, 1.04200566))
  543. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.123879015, -0.278857708, -0.00617899979, 0.965925336, -0.2588211, 0, 0.2588211, 0.965925336, 0, 0, 0, 1))
  544. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(0.821169853, 0.388499111, 1.00999999))
  545. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.445813209, 0.210449979, 1.04200566))
  546. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.223450184, 0.0305250883, -0.00618699985, -0.25881803, 0.965926111, 0, -0.965926111, -0.25881803, 0, 0, 0, 1))
  547. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.388499111, 1.00999999))
  548. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.210449979, 0.210449979, 1.04200566))
  549. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.407537222, 0.0663063526, -0.00618699985, 0.707106352, -0.707107365, 0, 0.707107365, 0.707106352, 0, 0, 0, 1))
  550. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(0.821169853, 0.388499111, 1.00999999))
  551. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.664211631, 0.210449979, 1.04200566))
  552. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0544009209, 0.0101571083, -0.00617499975, 0.499998987, 0.866025984, 0, -0.866025984, 0.499998987, 0, 0, 0, 1))
  553. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.388499111, 1.00999999))
  554. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.210449979, 0.210449979, 1.04200566))
  555. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.212381959, -0.663311005, -0.00618499983, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  556. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(0.730365157, 0.388499111, 1.00999999))
  557. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.210449979, 0.210449979, 1.04200566))
  558. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0184851885, 0.339620829, -0.0061809998, 0.715359032, -0.698757052, 0, 0.698757052, 0.715359032, 0, 0, 0, 1))
  559. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(0.834142029, 0.388499111, 1.00999999))
  560. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.627083898, 0.210449979, 1.04200566))
  561. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.280005217, -0.363016367, -0.00617299974, 0.707106352, 0.707107365, 0, -0.707107365, 0.707106352, 0, 0, 0, 1))
  562. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.388499111, 1.00999999))
  563. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.210449979, 0.210449979, 0.329999983))
  564. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.508293927, 0.00543988496, -0.414242506, 1, 0, 0, 0, -0.0252030101, -0.999682367, 0, 0.999682367, -0.0252030101))
  565. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(0.207726225, 0.473494887, 1))
  566. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "Part", "Really black", "ClawMaterial", Vector3.new(0.210449979, 0.210449979, 1.04200566))
  567. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.453824013, -0.291407824, -0.00616900017, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  568. CreateMesh("BlockMesh", ClawMaterial, "", "", Vector3.new(0, 0, 0), Vector3.new(0.83414197, 0.388499111, 1.00999999))
  569. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.210450009))
  570. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.51018995, -0.50767684, 0.297928989, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  571. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.225887179, 0.543544471, 0.369591445))
  572. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.796189725))
  573. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0117785633, -0.903934956, 0.39272213, 0.707106352, 0, 0.707107365, 0, 1, 0, -0.707107365, 0, 0.707106352))
  574. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.961425304, 0.961427808, 1))
  575. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.210450009))
  576. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.51076597, -0.677359819, -0.295575023, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  577. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.231076032, 0.543544471, 0.369591445))
  578. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.524428368))
  579. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0118038058, 0.689624906, 0.570050001, 0.707103848, 0, 0.707109809, -0.707109809, 0, 0.707103848, 0, -1, 0))
  580. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.961425304, 0.961427808, 1))
  581. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.210450009))
  582. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.510767996, -0.508222818, -0.295575023, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  583. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.231076032, 0.543544471, 0.369591445))
  584. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 1.06329954))
  585. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.285520971, -0.664801836, -0.00591700012, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  586. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.311503083, 0.543544471, 1))
  587. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.728394926, 0.35408181, 1.04200566))
  588. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.159419954, -0.695495844, -0.00616900017, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  589. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  590. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.796342552, 0.65287286, 1.04582763))
  591. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.144507021, 0.270431995, -0.00702500017, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  592. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  593. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 1.04200566))
  594. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0228680372, -0.903097868, -0.00617699977, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  595. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.961425304, 0.961427808, 1))
  596. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.210450009))
  597. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.51076597, -0.157143831, -0.295579016, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  598. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.231076032, 0.543544471, 0.369591445))
  599. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.475480139, 0.404664904, 1.04200566))
  600. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.236273766, -0.56151557, -0.0061809998, 0.707106352, 0.707107365, 0, -0.707107365, 0.707106352, 0, 0, 0, 1))
  601. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  602. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.796189725))
  603. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000811070204, -0.902295828, 0.381639034, -0.707106829, 0, 0.707106829, 0, 1, 0, -0.707106829, 0, -0.707106829))
  604. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.961425304, 0.961427808, 1))
  605. Part = CreatePart2(m, Enum.Material.Neon, 0, 0, "Part", "Dark indigo", "Part", Vector3.new(1, 1, 1))
  606. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0142869996, -0.618730307, -0.382281303, 0, 0, 1, 0.36670509, -0.93033725, 0, 0.93033725, 0.36670509, 0))
  607. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.5, 0.709999979, 0.100000001))
  608. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.524428368))
  609. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000812500715, 0.678554535, 0.570062876, -0.707106829, 0, 0.707106829, -0.707106829, 0, -0.707106829, 0, -1, 0))
  610. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.961425304, 0.961427808, 1))
  611. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.274916351, 0.495625556, 1.04582763))
  612. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.386464, 0.349603176, -0.00702300016, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  613. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  614. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 1.06329954))
  615. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.285515964, -0.215442896, -0.00591900013, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  616. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.311503083, 0.543544471, 1))
  617. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.210450009))
  618. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.51019901, -0.156597853, 0.297930986, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  619. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.225887179, 0.543544471, 0.369591445))
  620. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(1.06224263, 1.11860847, 1.04200566))
  621. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00774800777, 0.0171630383, -0.0061809998, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  622. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  623. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "Part", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.210450009))
  624. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.510194004, -0.67681098, 0.297922999, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  625. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.225887179, 0.543544471, 0.369591445))
  626. ClawMaterial = CreatePart2(m, Enum.Material.SmoothPlastic, 0.30000001192093, 0, "WedgePart", "Really black", "ClawMaterial", Vector3.new(1.0507766, 0.342107773, 0.210450009))
  627. ClawMaterialWeld = CreateWeld(m, Handle, ClawMaterial, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00591100007, -0.468749046, 0.193565369, 0, 0, 1, -0.700001419, -0.714141428, 0, 0.714141428, -0.700001419, 0))
  628. CreateMesh("SpecialMesh", ClawMaterial, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.961421788))
  629. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.210450009))
  630. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00134065747, 0.207813978, 0.709334135, 0.707106829, 0, -0.707106829, 0, -1, 0, -0.707106829, 0, -0.707106829))
  631. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.961425304, 0.961427808, 0.961421788))
  632. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(1.05023062, 0.210449979, 0.210450009))
  633. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00947299972, -0.114370823, -0.440932035, 0, 0, 1, 0, 1, 0, -1, 0, 0))
  634. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.561885834, 0.961421788))
  635. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(1.05023062, 0.411995441, 0.210450009))
  636. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00891099963, -0.798730135, 0.476718009, 0, 0, 1, 0, -1, 0, 1, 0, 0))
  637. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.644903481))
  638. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(1.04586256, 0.210449979, 0.27767837))
  639. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00726700015, 0.0232260227, 0.391721964, 0, 0, 1, 0, 1, 0, -1, 0, 0))
  640. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.764251173, 1))
  641. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(1.05023062, 0.385787576, 0.210450009))
  642. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00509499991, -0.792718172, 0.456955969, 0, 0, -1, 0, -1, 0, -1, 0, 0))
  643. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.644903481))
  644. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(1.05023062, 0.210449979, 0.210450009))
  645. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00509600015, -0.696686029, 0.42363596, 0, 0, -1, 0, -1, 0, -1, 0, 0))
  646. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.961427808, 0.961421788))
  647. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.210449979, 0.210449979, 0.210450009))
  648. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.012203753, 0.206679821, 0.707822442, -0.707106352, 0, -0.707107365, 0, -1, 0, -0.707107365, 0, 0.707106352))
  649. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.961425304, 0.961427808, 0.961421788))
  650. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(1.05023062, 0.210449979, 0.210450009))
  651. PartWeld = CreateWeld(m, Handle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00947900023, -0.695355177, 0.440928012, 0, 0, 1, 0, -1, 0, 1, 0, 0))
  652. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(1, 0.961427808, 0.961421788))
  653. MotorOne = CreatePart(m, Enum.Material.Neon, 0.30000001192093, 1, "Dark indigo", "MotorOne", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  654. MotorOneWeld = CreateWeld(m, Handle, MotorOne, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.165818453, -0.00628910959, -0.978227913, -0.0732169896, -0.996971905, -0.0261989962, -0.542171299, 0.0618378855, -0.83798945, 0.837072074, -0.0471507274, -0.545057178))
  655. Shard = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Shard", Vector3.new(1, 1, 1))
  656. ShardWeld = CreateWeld(m, MotorOne, Shard, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.413149118, -0.00709122419, -1.08955288, 0.90752846, 5.51342964e-07, -0.419990718, -1.73971057e-06, 1, -2.44379044e-06, 0.419990718, 2.95042992e-06, 0.90752852))
  657. CreateMesh("SpecialMesh", Shard, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(1.20000005, 0.200000003, 0.200000003))
  658. Shard = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Shard", Vector3.new(1, 1, 1))
  659. ShardWeld = CreateWeld(m, MotorOne, Shard, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.205875158, -0.00710588694, -1.48987699, 0.747897685, -5.36441803e-07, -0.663814127, -1.66893005e-06, 1, -2.68220901e-06, 0.663814127, 3.12924385e-06, 0.747897744))
  660. CreateMesh("SpecialMesh", Shard, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.800000012, 0.200000003, 0.200000003))
  661. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.28999996, 0.319999993))
  662. PartWeld = CreateWeld(m, MotorOne, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0151987076, 0.549069643, -0.614215612, -1.19581819e-06, 1, 1.37090683e-06, -0.999459982, -1.24052167e-06, 0.0328635052, 0.0328635164, -1.31130219e-06, 0.999459982))
  663. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 2.73999977, 0.339999974))
  664. PartWeld = CreateWeld(m, MotorOne, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0151856542, -0.490994453, -0.295432806, -1.19581819e-06, 1, 1.37090683e-06, -0.961226821, -7.5250864e-07, -0.27575928, -0.27575931, -1.57952309e-06, 0.96122694))
  665. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.28999996, 0.479999989))
  666. PartWeld = CreateWeld(m, MotorOne, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.015198648, 0.650615692, -0.406500697, -1.19581819e-06, 1, 1.37090683e-06, -0.978774786, -8.94069672e-07, -0.204939544, -0.204939514, -1.51991844e-06, 0.978774667))
  667. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.28999996, 0.339999974))
  668. PartWeld = CreateWeld(m, MotorOne, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0152282119, 0.624634504, 0.129744053, -1.19581819e-06, 1, 1.37090683e-06, -0.832109034, -2.5331974e-07, -0.554612279, -0.554612339, -1.78813934e-06, 0.832108974))
  669. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.03999996, 0.480000019))
  670. PartWeld = CreateWeld(m, MotorOne, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0152042508, 0.944105864, 0.894237399, 1.19581819e-06, -1, -1.37090683e-06, -0.999459982, -1.24052167e-06, 0.0328635052, -0.0328635164, 1.31130219e-06, -0.999459982))
  671. Claw = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Claw", Vector3.new(1, 1, 1))
  672. ClawWeld = CreateWeld(m, MotorOne, Claw, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.86121058, -0.0170745254, -0.650540829, 1.00000012, 0, 3.7252903e-09, 0, 1, 0, 3.7252903e-09, 0, 1.00000024))
  673. CreateMesh("SpecialMesh", Claw, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(2.5, 0.300000012, 0.519999981))
  674. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 0.370000005, 0.200000003))
  675. PartWeld = CreateWeld(m, MotorOne, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0151966214, -1.64906764, 1.03426063, -1.19581819e-06, 1, 1.37090683e-06, 0.999459982, 1.24052167e-06, -0.0328635052, -0.0328635164, 1.31130219e-06, -0.999459982))
  676. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 0.200000003, 0.200000003))
  677. PartWeld = CreateWeld(m, MotorOne, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0252064466, -1.54980397, -0.844281435, 1.19581819e-06, -1, -1.37090683e-06, 0.999459982, 1.24052167e-06, -0.0328635052, 0.0328635164, -1.31130219e-06, 0.999459982))
  678. MotorTwo = CreatePart(m, Enum.Material.Neon, 0.30000001192093, 1, "Dark indigo", "MotorTwo", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  679. MotorTwoWeld = CreateWeld(m, Handle, MotorTwo, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0479729176, -0.503670454, -0.786706924, 0.0261989962, -0.996971905, -0.0732169896, 0.83798945, 0.0618378855, -0.542171299, 0.545057178, -0.0471507274, 0.837072074))
  680. Shard = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Shard", Vector3.new(1, 1, 1))
  681. ShardWeld = CreateWeld(m, MotorTwo, Shard, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.413152218, -0.00709152222, -1.08955348, 0.90752846, 5.66244125e-07, -0.419990689, -1.74157321e-06, 1, -2.47359276e-06, 0.419990718, 2.98023224e-06, 0.907528639))
  682. CreateMesh("SpecialMesh", Shard, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(1.20000005, 0.200000003, 0.200000003))
  683. Shard = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Shard", Vector3.new(1, 1, 1))
  684. ShardWeld = CreateWeld(m, MotorTwo, Shard, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.20587635, -0.00710582733, -1.4898783, 0.747897685, -5.36441803e-07, -0.663814127, -1.6707927e-06, 1, -2.68220901e-06, 0.663814127, 3.12924385e-06, 0.747897804))
  685. CreateMesh("SpecialMesh", Shard, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.800000012, 0.200000003, 0.200000003))
  686. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.28999996, 0.319999993))
  687. PartWeld = CreateWeld(m, MotorTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0151982307, 0.549069643, -0.614216566, -1.19395554e-06, 1, 1.37090683e-06, -0.999459982, -1.24005601e-06, 0.0328635052, 0.0328635164, -1.31130219e-06, 0.999459982))
  688. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 2.73999977, 0.339999974))
  689. PartWeld = CreateWeld(m, MotorTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0151848793, -0.490990877, -0.295432806, -1.19395554e-06, 1, 1.37090683e-06, -0.961226821, -7.74860382e-07, -0.27575931, -0.27575925, -1.63912773e-06, 0.961226881))
  690. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.28999996, 0.479999989))
  691. PartWeld = CreateWeld(m, MotorTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0151979923, 0.650617838, -0.406501412, -1.19395554e-06, 1, 1.37090683e-06, -0.978774786, -8.94069672e-07, -0.204939544, -0.204939514, -1.51991844e-06, 0.978774667))
  692. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.28999996, 0.339999974))
  693. PartWeld = CreateWeld(m, MotorTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0152257681, 0.624636889, 0.129745722, -1.19395554e-06, 1, 1.37090683e-06, -0.832109034, -2.38418579e-07, -0.554612279, -0.554612339, -1.78813934e-06, 0.832108974))
  694. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.03999996, 0.480000019))
  695. PartWeld = CreateWeld(m, MotorTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.015203476, 0.944107533, 0.894238472, 1.19395554e-06, -1, -1.37090683e-06, -0.999459982, -1.24005601e-06, 0.0328635052, -0.0328635164, 1.31130219e-06, -0.999459982))
  696. Claw = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Claw", Vector3.new(1, 1, 1))
  697. ClawWeld = CreateWeld(m, MotorTwo, Claw, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.86121142, -0.0170750618, -0.650540113, 1.00000012, -1.86264515e-09, 4.65661287e-09, -1.86264515e-09, 1, 0, 4.65661287e-09, 0, 1.00000024))
  698. CreateMesh("SpecialMesh", Claw, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(2.5, 0.300000012, 0.519999981))
  699. CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 0.370000005, 0.200000003))
  700. PartWeld = CreateWeld(m, MotorTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0151972771, -1.64906967, 1.03426158, -1.19395554e-06, 1, 1.37090683e-06, 0.999459982, 1.24005601e-06, -0.0328635052, -0.0328635164, 1.31130219e-06, -0.999459982))
  701. CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 0.200000003, 0.200000003))
  702. PartWeld = CreateWeld(m, MotorTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0252062082, -1.54980803, -0.844281912, 1.19395554e-06, -1, -1.37090683e-06, 0.999459982, 1.24005601e-06, -0.0328635052, 0.0328635164, -1.31130219e-06, 0.999459982))
  703. MotorThumb = CreatePart(m, Enum.Material.Neon, 0.30000001192093, 0, "Dark indigo", "MotorThumb", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  704. MotorThumbWeld = CreateWeld(m, Handle, MotorThumb, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.436262846, -0.542311668, -0.983556807, -0.068211019, -0.995336354, 0.0682120249, -0.707106829, -7.08211871e-07, -0.707106709, 0.703809023, -0.0964656472, -0.703809083))
  705. Claw = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Claw", Vector3.new(1, 1, 1))
  706. ClawWeld = CreateWeld(m, MotorThumb, Claw, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.607737899, 0.0110911727, 0.0515184402, 0.925057888, -4.47034836e-08, 0.379826128, -5.96046448e-08, 0.99999994, 2.68220901e-07, -0.379826188, -2.98023224e-07, 0.925057888))
  707. CreateMesh("SpecialMesh", Claw, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(2, 0.300000012, 0.370000005))
  708. Shard = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Shard", Vector3.new(1, 1, 1))
  709. ShardWeld = CreateWeld(m, MotorThumb, Shard, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.414689064, 0.0210665464, 0.175723732, 0.990283549, 1.41561031e-06, -0.13906303, -1.4193356e-06, 0.99999994, 1.49011612e-07, 0.13906303, 8.94069672e-08, 0.990283489))
  710. CreateMesh("SpecialMesh", Shard, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.800000012, 0.200000003, 0.200000003))
  711. Shard = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Shard", Vector3.new(1, 1, 1))
  712. ShardWeld = CreateWeld(m, MotorThumb, Shard, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.222025633, 0.0210601687, -0.0396541655, 0.908135235, 2.08616257e-06, -0.418677092, -1.47148967e-06, 1.00000012, 1.75833702e-06, 0.418677121, -9.23871994e-07, 0.908135176))
  713. CreateMesh("SpecialMesh", Shard, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.800000012, 0.200000003, 0.200000003))
  714. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 0.370000005, 0.200000003))
  715. PartWeld = CreateWeld(m, MotorThumb, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0129690766, -0.393394113, 0.191975117, -7.11530447e-07, 1, 2.98023224e-08, 0.966118932, 6.85453415e-07, 0.258097559, 0.258097589, 2.08616257e-07, -0.966118932))
  716. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.28999996, 0.200000003))
  717. PartWeld = CreateWeld(m, MotorThumb, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0129775405, -0.706632137, 0.168079853, -7.11530447e-07, 1, 2.98023224e-08, -0.966118932, -6.85453415e-07, -0.258097559, -0.258097589, -2.08616257e-07, 0.966118932))
  718. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 0.200000003, 0.200000003))
  719. PartWeld = CreateWeld(m, MotorThumb, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00299531221, -0.294105291, -0.00194394588, 7.11530447e-07, -1, -2.98023224e-08, 0.966118932, 6.85453415e-07, 0.258097559, -0.258097589, -2.08616257e-07, 0.966118932))
  720. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.03999996, 0.390000015))
  721. PartWeld = CreateWeld(m, MotorThumb, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.012973249, -0.311598301, 0.0969114304, 7.11530447e-07, -1, -2.98023224e-08, -0.966118932, -6.85453415e-07, -0.258097559, 0.258097589, 2.08616257e-07, -0.966118932))
  722. MotorThumbTwo = CreatePart(m, Enum.Material.Neon, 0.30000001192093, 0, "Dark indigo", "MotorThumbTwo", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  723. MotorThumbTwoWeld = CreateWeld(m, Handle, MotorThumbTwo, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.444597721, 0.423756033, -0.897562623, -0.0682120249, -0.995336354, -0.068211019, 0.707106709, -7.08211871e-07, -0.707106829, 0.703809083, -0.0964656621, 0.703809023))
  724. Claw = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Claw", Vector3.new(1, 1, 1))
  725. ClawWeld = CreateWeld(m, MotorThumbTwo, Claw, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.607738018, 0.0110911727, 0.0515185595, 0.925057888, -4.47034836e-08, 0.379826128, -5.96046448e-08, 0.99999994, 2.68220901e-07, -0.379826188, -2.98023224e-07, 0.925057888))
  726. CreateMesh("SpecialMesh", Claw, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(2, 0.300000012, 0.370000005))
  727. Shard = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Shard", Vector3.new(1, 1, 1))
  728. ShardWeld = CreateWeld(m, MotorThumbTwo, Shard, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.414689064, 0.0210665464, 0.175723612, 0.990283549, 1.42306089e-06, -0.139062777, -1.4193356e-06, 0.99999994, 1.49011612e-07, 0.139062807, 1.1920929e-07, 0.990283608))
  729. CreateMesh("SpecialMesh", Shard, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.800000012, 0.200000003, 0.200000003))
  730. Shard = CreatePart2(m, Enum.Material.Neon, 0.30000001192093, 0, "Part", "Dark indigo", "Shard", Vector3.new(1, 1, 1))
  731. ShardWeld = CreateWeld(m, MotorThumbTwo, Shard, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.222025394, 0.0210601091, -0.0396541059, 0.908135235, 2.08616257e-06, -0.418677092, -1.72480941e-06, 1, 1.16229057e-06, 0.418677121, -3.57627869e-07, 0.908135176))
  732. CreateMesh("SpecialMesh", Shard, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.800000012, 0.200000003, 0.200000003))
  733. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 0.370000005, 0.200000003))
  734. PartWeld = CreateWeld(m, MotorThumbTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.012969017, -0.393394232, 0.191974878, -7.11530447e-07, 1, 2.98023224e-08, 0.966118932, 6.85453415e-07, 0.258097589, 0.258097559, 1.78813934e-07, -0.966118813))
  735. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.28999996, 0.200000003))
  736. PartWeld = CreateWeld(m, MotorThumbTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0129775107, -0.706632137, 0.168079972, -7.11530447e-07, 1, 2.98023224e-08, -0.966118932, -6.85453415e-07, -0.258097589, -0.258097559, -1.78813934e-07, 0.966118813))
  737. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 0.200000003, 0.200000003))
  738. PartWeld = CreateWeld(m, MotorThumbTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00299596786, -0.29410553, -0.00194442272, 7.11530447e-07, -1, -2.98023224e-08, 0.966118932, 6.85453415e-07, 0.258097589, -0.258097559, -1.78813934e-07, 0.966118813))
  739. Part = CreatePart2(m, Enum.Material.SmoothPlastic, 0, 0, "WedgePart", "Really black", "Part", Vector3.new(0.329999983, 1.03999996, 0.390000015))
  740. PartWeld = CreateWeld(m, MotorThumbTwo, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.012973249, -0.311598063, 0.0969111919, 7.11530447e-07, -1, -2.98023224e-08, -0.966118932, -6.85453415e-07, -0.258097589, 0.258097559, 1.78813934e-07, -0.966118813))
  741. MagniHit = CreatePart(m, Enum.Material.Neon, 0, 1, "Dark indigo", "MagniHit", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  742. MagniHitWeld = CreateWeld(m, Character.HumanoidRootPart, MagniHit, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-4.01003361, -0.230025291, 0.070048213, 0, 0, -1, 0, 1, 0, 1, 0, 0))
  743. local CBlade = {}
  744. local CBladeWelds = {}
  745. for _,c in pairs(m:children()) do
  746. if c.className == "Part" then
  747. table.insert(CBlade, R67_PC6072)
  748. end
  749. end
  750. for _,c in pairs(m:children()) do
  751. if c.className == "Weld" then
  752. table.insert(CBladeWelds, R67_PC6072)
  753. print(R66_PC6093)
  754. end
  755. end
  756.  
  757.  
  758. New = function(Object, Parent, Name, Data)
  759. local Object = Instance.new(Object)
  760. for Index, Value in pairs(Data or {}) do
  761. Object[Index] = Value
  762. end
  763. Object.Parent = Parent
  764. Object.Name = Name
  765. return Object
  766. end
  767.  
  768. RightPad = New("Model",Character,"RightPad",{})
  769. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 1.00999999),CFrame = CFrame.new(-25.0149879, 8.87999916, 5.47998381, -1.00000644, 0, -6.00519388e-06, 0, 1, 0, 5.40169412e-06, 0, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  770. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  771. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),C1 = CFrame.new(0, 0.989999294, 0, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  772. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 0.200000003, 1),CFrame = CFrame.new(-25.0149879, 8.81000042, 5.47998381, -1.00000644, 0, -6.00519388e-06, 0, 1, 0, 5.40169412e-06, 0, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  773. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.5, 1),MeshType = Enum.MeshType.Brick,})
  774. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),C1 = CFrame.new(0, 0.920000553, 0, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  775. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 1.01100004),CFrame = CFrame.new(-25.5049896, 8.3999958, 5.48000431, 1.36342328e-06, -1.00000644, -5.82637949e-06, -1, -1.36341475e-06, -1.53262684e-13, -6.95197762e-12, 5.22287974e-06, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  776. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  777. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.36341737e-06, -1, -7.22621962e-12, -1.00000215, -1.36341475e-06, 5.42402267e-06, -5.62518835e-06, -1.53262684e-13, -1.00000215),C1 = CFrame.new(0.489999771, 0.509995937, -1.76429749e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  778. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.579999983, 0.519999981),CFrame = CFrame.new(-25.2649937, 9.15999889, 5.4800005, 8.51605091e-06, 0, -1.00000644, 0, 1, 0, 1.00000644, 0, 7.92000174e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  779. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  780. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 8.31484795e-06, 0, 1.00000215, 0, 1, 0, -1.00000215, 0, 8.12113285e-06),C1 = CFrame.new(0.250005722, 1.26999903, -1.52587891e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  781. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.590000033, 0.200000003),CFrame = CFrame.new(-25.2549915, 9.16499805, 5.4799962, 8.51605091e-06, 0, -1.00000644, 0, 1, 0, 1.00000644, 0, 7.92000174e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  782. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  783. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 8.31484795e-06, 0, 1.00000215, 0, 1, 0, -1.00000215, 0, 8.12113285e-06),C1 = CFrame.new(0.240003586, 1.27499819, -1.09672546e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  784. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.450000018, 0.200000003),CFrame = CFrame.new(-25.0749931, 9.09499836, 5.47999191, 8.51605091e-06, 0, -1.00000644, 0, 1, 0, 1.00000644, 0, 7.92000174e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  785. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  786. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 8.31484795e-06, 0, 1.00000215, 0, 1, 0, -1.00000215, 0, 8.12113285e-06),C1 = CFrame.new(0.060005188, 1.20499849, -7.62939453e-06, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  787. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.350000024, 0.329999983),CFrame = CFrame.new(-25.0099907, 9.04499817, 5.47999001, 8.51605091e-06, 0, -1.00000644, 0, 1, 0, 1.00000644, 0, 7.92000174e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  788. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  789. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 8.31484795e-06, 0, 1.00000215, 0, 1, 0, -1.00000215, 0, 8.12113285e-06),C1 = CFrame.new(-0.00499725342, 1.1549983, -6.19888306e-06, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  790. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.610000014),CFrame = CFrame.new(-24.8700027, 8.96999836, 5.47999477, 8.51605091e-06, 0, -1.00000644, 0, 1, 0, 1.00000644, 0, 7.92000174e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  791. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  792. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 8.31484795e-06, 0, 1.00000215, 0, 1, 0, -1.00000215, 0, 8.12113285e-06),C1 = CFrame.new(-0.144985199, 1.07999849, -1.1920929e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  793. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.75999999, 0.459999979),CFrame = CFrame.new(-25.7549934, 9.05999756, 5.48000765, -1.12206235e-05, 0, 1.00000644, 0, 1, 0, -1.00000644, 0, -1.06245743e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  794. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  795. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -1.10194087e-05, 0, -1.00000215, 0, 1, 0, 1.00000215, 0, -1.08256936e-05),C1 = CFrame.new(0.740003586, 1.16999769, -1.95503235e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  796. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 1.89999998, 0.25),CFrame = CFrame.new(-25.6299744, 7.76999855, 5.48000383, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  797. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  798. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.614984512, -0.120001316, -1.66893005e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  799. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 1.01100004),CFrame = CFrame.new(-25.5049896, 8.09999371, 5.48000431, 1.36342328e-06, -1.00000644, -5.82637949e-06, -1, -1.36341475e-06, -1.53262684e-13, -6.95197762e-12, 5.22287974e-06, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  800. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  801. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.36341737e-06, -1, -7.22621962e-12, -1.00000215, -1.36341475e-06, 5.42402267e-06, -5.62518835e-06, -1.53262684e-13, -1.00000215),C1 = CFrame.new(0.489999771, 0.209993839, -1.76429749e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  802. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1, 0.200000003, 1.01100004),CFrame = CFrame.new(-25.5049896, 7.39499092, 5.48000431, 1.36342328e-06, -1.00000644, -5.82637949e-06, -1, -1.36341475e-06, -1.53262684e-13, -6.95197762e-12, 5.22287974e-06, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  803. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.200000003, 1),MeshType = Enum.MeshType.Brick,})
  804. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.36341737e-06, -1, -7.22621962e-12, -1.00000215, -1.36341475e-06, 5.42402267e-06, -5.62518835e-06, -1.53262684e-13, -1.00000215),C1 = CFrame.new(0.489999771, -0.495008945, -1.76429749e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  805. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.459999979),CFrame = CFrame.new(-25.734972, 7.23999882, 5.48000288, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  806. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  807. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.719982147, -0.650001049, -1.52587891e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  808. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.74000001),CFrame = CFrame.new(-25.8749714, 7.44999981, 5.47999811, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  809. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  810. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.859981537, -0.440000057, -9.53674316e-06, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  811. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.939999998, 0.480000019),CFrame = CFrame.new(-25.7449799, 8.21999931, 5.4800005, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  812. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  813. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.729990005, 0.329999447, -1.23977661e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  814. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.459999979),CFrame = CFrame.new(-25.734972, 7.68000174, 5.48000288, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  815. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  816. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.719982147, -0.209998131, -1.52587891e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  817. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.74000001),CFrame = CFrame.new(-25.8749714, 7.89000273, 5.47999811, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  818. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  819. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.859981537, 2.86102295e-06, -9.53674316e-06, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  820. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.459999979),CFrame = CFrame.new(-25.734972, 8.12000465, 5.48000288, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  821. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  822. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.719982147, 0.230004787, -1.52587891e-05, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  823. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(1.00999999, 0.200000003, 0.74000001),CFrame = CFrame.new(-25.8749714, 8.33000565, 5.47999811, 1.29789678e-05, 7.329065e-08, 1.00000644, 9.26305461e-07, -1, 7.32781302e-08, 1.00000644, 9.26310349e-07, -1.23903692e-05),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  824. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Wedge,})
  825. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 1.27777457e-05, 9.26305461e-07, 1.00000215, 7.32901455e-08, -1, 9.2630637e-07, 1.00000215, 7.32781302e-08, -1.25914812e-05),C1 = CFrame.new(0.859981537, 0.440005779, -9.53674316e-06, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  826. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049839, 9.03000355, 5.06999636, -0.707100511, -0.707121789, -5.90088484e-06, -0.707117438, 0.707096159, 3.16077333e-08, 3.72462364e-06, 3.77677316e-06, -1.00000656),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  827. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  828. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.70709753, -0.707117438, 3.86685133e-06, -0.707118809, 0.707096159, 3.91900539e-06, -5.69969416e-06, 3.16077333e-08, -1.00000226),C1 = CFrame.new(0.489992142, 1.14000368, 0.409989357, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  829. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049839, 9.03000355, 5.06999636, -0.939696252, 0.342028707, -5.90088484e-06, 0.342026561, 0.939690351, -4.66146695e-08, 4.95933955e-06, -1.85531633e-06, -1.00000656),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  830. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 0.699999988, 1.00100005),MeshType = Enum.MeshType.Brick,})
  831. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.939692199, 0.342026561, 5.14835119e-06, 0.342027217, 0.939690351, -1.92411244e-06, -5.69969416e-06, -4.66146695e-08, -1.00000226),C1 = CFrame.new(0.489992142, 1.14000368, 0.409989357, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  832. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049839, 9.03000355, 5.06999636, -0.965928674, -0.258833885, -5.46874981e-06, -0.258832157, 0.965922356, 4.02601401e-08, 4.69329052e-06, 1.29835519e-06, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.929412, 0.917647, 0.917647),})
  833. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 1.00109994),MeshType = Enum.MeshType.Brick,})
  834. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.965924501, -0.258832157, 4.88758087e-06, -0.258832753, 0.965922356, 1.35041773e-06, -5.26756048e-06, 4.02601401e-08, -1.00000215),C1 = CFrame.new(0.489992142, 1.14000368, 0.409989357, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  835. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049839, 9.03000355, 5.06999636, 0.173647776, -0.984814227, -5.85618136e-06, -0.984808087, -0.173646703, -1.82278015e-08, -8.97326004e-07, 5.17378066e-06, -1.00000632),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  836. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.300000012, 0.300000012, 1.00119996),MeshType = Enum.MeshType.Brick,})
  837. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 0.173647031, -0.984808087, -9.32253897e-07, -0.984810054, -0.173646703, 5.37186861e-06, -5.65499067e-06, -1.82278015e-08, -1.00000203),C1 = CFrame.new(0.489992142, 1.14000368, 0.409989357, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  838. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049858, 9.03000355, 5.88999748, -0.707100511, -0.707121789, -5.90088484e-06, -0.707117438, 0.707096159, 3.16077333e-08, 3.72462364e-06, 3.77677316e-06, -1.00000656),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  839. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Brick,})
  840. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.70709753, -0.707117438, 3.86685133e-06, -0.707118809, 0.707096159, 3.91900539e-06, -5.69969416e-06, 3.16077333e-08, -1.00000226),C1 = CFrame.new(0.489999771, 1.14000368, -0.410009861, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  841. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049858, 9.03000355, 5.88999748, -0.939696252, 0.342028707, -5.90088484e-06, 0.342026561, 0.939690351, -4.66146695e-08, 4.95933955e-06, -1.85531633e-06, -1.00000656),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines})
  842. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.699999988, 0.699999988, 1.00100005),MeshType = Enum.MeshType.Brick,})
  843. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.939692199, 0.342026561, 5.14835119e-06, 0.342027217, 0.939690351, -1.92411244e-06, -5.69969416e-06, -4.66146695e-08, -1.00000226),C1 = CFrame.new(0.489999771, 1.14000368, -0.410009861, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  844. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049858, 9.03000355, 5.88999748, -0.965928674, -0.258833885, -5.46874981e-06, -0.258832157, 0.965922356, 4.02601401e-08, 4.69329052e-06, 1.29835519e-06, -1.00000644),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.929412, 0.917647, 0.917647),})
  845. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.5, 0.5, 1.00109994),MeshType = Enum.MeshType.Brick,})
  846. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, -0.965924501, -0.258832157, 4.88758087e-06, -0.258832753, 0.965922356, 1.35041773e-06, -5.26756048e-06, 4.02601401e-08, -1.00000215),C1 = CFrame.new(0.489999771, 1.14000368, -0.410009861, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  847. Part = New("Part",RightPad,"Part",{BrickColor = BrickColor.new("Dark indigo"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(-25.5049858, 9.03000355, 5.88999748, 0.173647776, -0.984814227, -5.85618136e-06, -0.984808087, -0.173646703, -1.82278015e-08, -8.97326004e-07, 5.17378066e-06, -1.00000632),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  848. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.300000012, 0.300000012, 1.00119996),MeshType = Enum.MeshType.Brick,})
  849. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RightArm,C0 = CFrame.new(0, 0, 0, 0.173647031, -0.984808087, -9.32253897e-07, -0.984810054, -0.173646703, 5.37186861e-06, -5.65499067e-06, -1.82278015e-08, -1.00000203),C1 = CFrame.new(0.489999771, 1.14000368, -0.410009861, -1.00000215, 0, 5.60283661e-06, 0, 1, 0, -5.80400229e-06, 0, -1.00000215),})
  850.  
  851. for i,v in pairs(RightPad:children'') do
  852. if v:IsA("Part") then
  853. v.CanCollide=false
  854. end
  855. end
  856.  
  857. blackhand = Instance.new("Part",char)
  858. blackhand.Material = "Neon"
  859. blackhand.Transparency = 1
  860. blackhand.BrickColor = BrickColor.new("Really black")
  861. blackhand.Position = Vector3.new(999,999,999)
  862. blackhand.Size = Vector3.new(1.01,1.01,1.01)
  863. blackweld = Instance.new("Weld",blackhand)
  864. blackweld.Part0 = rarm
  865. blackweld.Part1 = blackhand
  866. blackweld.C0 = CFrame.new(0,-0.5,0)
  867.  
  868.  
  869. CV="White"
  870.  
  871. local txt = Instance.new("BillboardGui", char)
  872. txt.Adornee = hed
  873. txt.Name = "_status"
  874. txt.Size = UDim2.new(2, 0, 1.2, 0)
  875. txt.StudsOffset = Vector3.new(-9, 6, 0)
  876. local text = Instance.new("TextLabel", txt)
  877. text.Size = UDim2.new(10, 0, 7, 0)
  878. text.FontSize = "Size24"
  879. text.TextScaled = true
  880. text.TextTransparency = 0
  881. text.BackgroundTransparency = 1
  882. text.TextTransparency = 0
  883. text.TextStrokeTransparency = 0
  884. text.Font = "Antique"
  885. text.TextStrokeColor3 = Color3.fromRGB(0,0,250)
  886.  
  887. v=Instance.new("Part")
  888. v.Name = "ColorBrick"
  889. v.Parent=char
  890. v.FormFactor="Symmetric"
  891. v.Anchored=true
  892. v.CanCollide=false
  893. v.BottomSurface="Smooth"
  894. v.TopSurface="Smooth"
  895. v.Size=Vector3.new(10,5,3)
  896. v.Transparency=1
  897. v.CFrame=torso.CFrame
  898. v.BrickColor=BrickColor.new(CV)
  899. v.Transparency=1
  900. text.TextColor3 = Color3.new(0.3,0,0)
  901. v.Shape="Block"
  902. text.Text = ""
  903.  
  904. refused = Instance.new("Sound",larm)
  905. refused.Volume = 100
  906. refused.SoundId = "http://www.roblox.com/asset/?id=400905079"
  907.  
  908. game:GetService("RunService").RenderStepped:connect(function()
  909.  
  910. if lala == true then
  911. if canchange == true then
  912. canchange = false
  913.  
  914. handle.BrickColor = BrickColor.new("Really red")
  915. wait(0.01)
  916. handle.BrickColor = BrickColor.new("Really blue")
  917. wait(0.01)
  918. handle.BrickColor = BrickColor.new("Bright green")
  919. wait(0.01)
  920. handle.BrickColor = BrickColor.new("Toothpaste")
  921. wait(0.01)
  922. handle.BrickColor = BrickColor.new("New Yeller")
  923. wait(0.01)
  924. handle.BrickColor = BrickColor.new("Magenta")
  925. wait(0.01)
  926. handle.BrickColor = BrickColor.new("Deep orange")
  927. wait(0.01)
  928. canchange = true
  929. end
  930. end
  931. if hum.MoveDirection.x == 0 then
  932. if idle == true then
  933. if idleon == true then
  934. idleon = false
  935. for i = 1,10 do
  936. wait()
  937. if hum.MoveDirection.x == 0 then
  938. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.3, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
  939. end
  940. if hum.MoveDirection.x == 0 then
  941. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(20)), 0.1)
  942. end
  943. if hum.MoveDirection.x == 0 then
  944. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-20)), 0.1)
  945. end
  946. if hum.MoveDirection.x == 0 then
  947. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.7, -0.3) * CFrame.Angles(math.rad(5), 0, math.rad(-2)), 0.1)
  948. end
  949. if hum.MoveDirection.x == 0 then
  950. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(2)), 0.1)
  951. end
  952. end
  953.  
  954.  
  955.  
  956.  
  957. for i = 1,10 do
  958. wait()
  959. if hum.MoveDirection.x == 0 then
  960. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(0)), 0.1)
  961. end
  962. if hum.MoveDirection.x == 0 then
  963. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-5),math.rad(0),math.rad(20)), 0.1)
  964. end
  965. if hum.MoveDirection.x == 0 then
  966. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-5),math.rad(0),math.rad(-20)), 0.1)
  967. end
  968. if hum.MoveDirection.x == 0 then
  969. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.2) * CFrame.Angles(math.rad(5), 0, math.rad(-2)), 0.1)
  970. end
  971. if hum.MoveDirection.x == 0 then
  972. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(2)), 0.1)
  973. end
  974. end
  975. idleon = true
  976. end
  977.  
  978.  
  979.  
  980. end
  981. end
  982. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  983. if walking == true then
  984. if sprint == false then
  985. if idle1 == true then
  986. idle1 = false
  987.  
  988. idle = false
  989. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  990. for i = 1,10 do
  991. wait()
  992. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  993. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20)), 0.1)
  994. end
  995. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  996. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-20)), 0.1)
  997. end
  998. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  999. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
  1000. end
  1001. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1002. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(-2)), 0.1)
  1003. end
  1004. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1005. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, math.rad(2)), 0.1)
  1006. end
  1007.  
  1008. end
  1009. end
  1010. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1011. for i = 1,10 do
  1012. wait()
  1013. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1014. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.1)
  1015. end
  1016. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1017. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-20)), 0.1)
  1018. end
  1019. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1020. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
  1021. end
  1022. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1023. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, math.rad(-2)), 0.1)
  1024. end
  1025. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1026. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(2)), 0.1)
  1027. end
  1028. end
  1029. end
  1030. if hum.MoveDirection.x == 0 then
  1031. idle = true
  1032. end
  1033. idle1 = true
  1034. end
  1035. end
  1036. end
  1037.  
  1038. end
  1039. ----------------------------------------------------------------------------------
  1040.  
  1041. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1042. if walking == true then
  1043. if sprint == true then
  1044. if idle1 == true then
  1045. idle1 = false
  1046.  
  1047. idle = false
  1048. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1049. for i = 1,8 do
  1050. wait()
  1051. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1052. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-60),math.rad(0),math.rad(20)), 0.1)
  1053. end
  1054. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1055. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(-20)), 0.1)
  1056. end
  1057. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1058. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.1)
  1059. end
  1060. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1061. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(-2)), 0.1)
  1062. end
  1063. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1064. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-120), 0, math.rad(2)), 0.1)
  1065. end
  1066.  
  1067. end
  1068. end
  1069. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1070. for i = 1,8 do
  1071. wait()
  1072. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1073. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.1)
  1074. end
  1075. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1076. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-60),math.rad(0),math.rad(-20)), 0.1)
  1077. end
  1078. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1079. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.1)
  1080. end
  1081. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1082. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-120), 0, math.rad(-2)), 0.1)
  1083. end
  1084. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  1085. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(2)), 0.1)
  1086. end
  1087.  
  1088. end
  1089. end
  1090. if hum.MoveDirection.x == 0 then
  1091. idle = true
  1092. end
  1093. idle1 = true
  1094. end
  1095. end
  1096. end
  1097. end
  1098.  
  1099. if deathchat1 == true then
  1100. char.Parent = workspace.Camera
  1101. char.Archivable = true
  1102. local c = p.Character:Clone()
  1103. c:MakeJoints()
  1104. for y,t in pairs(c:GetChildren()) do
  1105. if t:IsA("Part") then
  1106. t.CanCollide = false
  1107. t.Anchored = true
  1108. t.BrickColor = BrickColor.new("Black")
  1109. t.Transparency = 1
  1110.  
  1111. t.TopSurface = "Smooth"
  1112. t.BottomSurface = "Smooth"
  1113. t.RightSurface = "Smooth"
  1114. t.LeftSurface = "Smooth"
  1115. t.FrontSurface = "Smooth"
  1116. t.BackSurface = "Smooth"
  1117.  
  1118.  
  1119. else
  1120. t:Remove()
  1121. end
  1122. end
  1123. c.Parent = workspace
  1124. game.Debris:AddItem(c,.05)
  1125. end
  1126.  
  1127. hum:SetStateEnabled("Dead",false)
  1128. hum:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
  1129. if hum.Health < 5 and candie == true then
  1130. hum.Name = "NOMOREDAMAGE"
  1131. canheal = true
  1132. done = false
  1133.  
  1134. done = true
  1135. candie = false
  1136. dead = true
  1137. MegaloStrikesBack.Volume = 0
  1138. refused:Play()
  1139.  
  1140. deathchat = true
  1141. end
  1142. if deathchat == true then
  1143. deathchat = false
  1144. idle = false
  1145.  
  1146. hed.face.Texture = "0"
  1147. if char:FindFirstChild("TalkingBillBoard")~= nil then
  1148. char:FindFirstChild("TalkingBillBoard"):destroy()
  1149. end
  1150. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.1)
  1151. idle1 = false
  1152. canattack = false
  1153. gothitdecal2 = Instance.new("Decal",torso)
  1154. gothitdecal2.Texture = "http://www.roblox.com/asset/?id=318438840"
  1155. gothitdecal2.Face = "Back"
  1156. gothitdecal1 = Instance.new("Decal",torso)
  1157. gothitdecal1.Texture = "http://www.roblox.com/asset/?id=318438840"
  1158. hed.Transparency = 1
  1159. torso.Transparency = 1
  1160. larm.Transparency = 1
  1161. rarm.Transparency = 1
  1162. expcounter = false
  1163. text.Text = ""
  1164.  
  1165. lleg.Transparency = 1
  1166. rleg.Transparency = 1
  1167. handle.Transparency = 1
  1168. blackhand.Transparency = 1
  1169. wait(5)
  1170. refused:Stop()
  1171. wait()
  1172.  
  1173. chatfunc("")
  1174. wait()
  1175. candie = true
  1176. idle = true
  1177. idle1 = true
  1178. hed.face.Texture = "http://www.roblox.com/asset/?id=508723120"
  1179. canattack = true
  1180. lleg.Anchored = false
  1181. rleg.Anchored = false
  1182. larm.Anchored = false
  1183. rarm.Anchored = false
  1184. hed.Anchored = false
  1185. torso.Anchored = false
  1186. gothitdecal2:Destroy()
  1187. gothitdecal1:Destroy()
  1188. for i = 1,10 do
  1189. wait()
  1190. hed.Transparency = hed.Transparency - 0.1
  1191. torso.Transparency = torso.Transparency - 0.1
  1192. larm.Transparency = larm.Transparency - 0.1
  1193. rarm.Transparency = rarm.Transparency - 0.1
  1194. lleg.Transparency = lleg.Transparency - 0.1
  1195. rleg.Transparency = rleg.Transparency - 0.1
  1196. handle.Transparency = handle.Transparency - 0.1
  1197. blackhand.Transparency = blackhand.Transparency - 0.1
  1198. end
  1199. expcounter = true
  1200. dead = false
  1201. deathchat1 = false
  1202. canheal = false
  1203. hum.Health = 100
  1204.  
  1205. MegaloStrikesBack.Volume = 50
  1206. wait()
  1207. hum.Name = "Humanoid"
  1208. end
  1209.  
  1210.  
  1211.  
  1212.  
  1213.  
  1214.  
  1215. if canheal == true then
  1216.  
  1217. hum.Health = math.huge
  1218.  
  1219. end
  1220.  
  1221. if expcounter == true then
  1222. text.Text = "The Corrupted Knight [Level] "..exp
  1223. end
  1224. end)
  1225.  
  1226. game.Players.CharacterAutoLoads = false
  1227.  
  1228.  
  1229.  
  1230.  
  1231. hed.Transparency = 0
  1232. torso.Transparency = 0
  1233. larm.Transparency = 0
  1234. rarm.Transparency = 0
  1235. lleg.Transparency = 0
  1236. rleg.Transparency = 0
  1237. handle.Transparency = 0
  1238.  
  1239.  
  1240. idle = false
  1241. walking = false
  1242.  
  1243.  
  1244. chatfunc("")
  1245. wait()
  1246. chatfunc("")
  1247. wait()
  1248.  
  1249. chatfunc("")
  1250. Weldb.C1 = CFrame.new(0, -2, 0) * CFrame.fromEulerAnglesXYZ(-3, 0, 0)
  1251. for i = 1,100 do
  1252. wait()
  1253. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.01)
  1254. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-180),math.rad(0),math.rad(-200)), 0.01)
  1255. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.01)
  1256. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-4)), 0.01)
  1257. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(4)), 0.01)
  1258.  
  1259. end
  1260. chatfunc("")
  1261.  
  1262.  
  1263. idle = true
  1264. chatfunc("")
  1265. hed.face.Texture = "http://www.roblox.com/asset/?id=508723120"
  1266. expcounter = true
  1267. walking = true
  1268. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  1269. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
  1270. mouse.KeyDown:connect(function(key)
  1271. if key == "z" then
  1272. if canattack == true then
  1273. canattack = false
  1274.  
  1275. idle = false
  1276. walking = false
  1277. wait(1)
  1278.  
  1279. kill = Instance.new("Part",char)
  1280. kill.Position = torso.Position - Vector3.new(0,2,0)
  1281. kill.Size = Vector3.new(200,0.1,200)
  1282. kill.Name = "Immune"
  1283. kill.CanCollide = false
  1284. kill.Transparency = 1
  1285. kill.Anchored = true
  1286. kill.Material = "Neon"
  1287. kill.BrickColor = BrickColor.new("Dark indigo")
  1288. killmesh = Instance.new("SpecialMesh",kill)
  1289. killmesh.MeshType = "FileMesh"
  1290. killmesh.MeshId = "rbxassetid://465435723"
  1291. killmesh.Scale = Vector3.new(5.2,0.01,5.2)
  1292. Weldb.C1 = CFrame.new(0, -1, -1) * CFrame.fromEulerAnglesXYZ(-2, 0, 0)
  1293. for i = 1, 20 do
  1294. wait()
  1295. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(0)), 0.2)
  1296. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.2)
  1297. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  1298. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(6), math.rad(0), 0), 0.2)
  1299. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.2)
  1300. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.2)
  1301.  
  1302. end
  1303. for i = 1, 20 do
  1304. wait()
  1305. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,-0.3)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(0)), 0.2)
  1306. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.2)
  1307. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  1308. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles( math.rad(-50), math.rad(0), 0), 0.2)
  1309. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.6, -0.8) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-2)), 0.2)
  1310. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, 0, -0.8) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(2)), 0.2)
  1311.  
  1312. end
  1313. hitsound:Play()
  1314. part = Instance.new("Part",char)
  1315. part.Size = Vector3.new(0.1,0.1,0.1)
  1316. part.Position = handle.Position
  1317. part1 = Instance.new("Part",char)
  1318. part1.Size = Vector3.new(0.1,0.1,0.1)
  1319. part1.Position = handle.Position
  1320. part2 = Instance.new("Part",char)
  1321. part2.Size = Vector3.new(0.1,0.1,0.1)
  1322. part2.Position = handle.Position
  1323. part3 = Instance.new("Part",char)
  1324. part3.Size = Vector3.new(0.1,0.1,0.1)
  1325. part3.Position = handle.Position
  1326. part4 = Instance.new("Part",char)
  1327. part4.Size = Vector3.new(0.1,0.1,0.1)
  1328. part4.Position = handle.Position
  1329. part5 = Instance.new("Part",char)
  1330. part5.Size = Vector3.new(0.1,0.1,0.1)
  1331. part5.Position = handle.Position
  1332. part6 = Instance.new("Part",char)
  1333. part6.Size = Vector3.new(0.1,0.1,0.1)
  1334. part6.Position = handle.Position
  1335. part7 = Instance.new("Part",char)
  1336. part7.Size = Vector3.new(0.1,0.1,0.1)
  1337. part7.Position = handle.Position
  1338. part8 = Instance.new("Part",char)
  1339. part8.Size = Vector3.new(0.1,0.1,0.1)
  1340. part8.Position = handle.Position
  1341. part9 = Instance.new("Part",char)
  1342. part9.Size = Vector3.new(0.1,0.1,0.1)
  1343. part9.Position = handle.Position
  1344. part10 = Instance.new("Part",char)
  1345. part10.Size = Vector3.new(0.1,0.1,0.1)
  1346. part10.Position = handle.Position
  1347. KnifeMesh.TextureId = ""
  1348. for i = 1,100 do
  1349. wait()
  1350. colorred = colorred + 0.006
  1351. handle.Color = Color3.new(colorred,0,0)
  1352. end
  1353. chatfunc("")
  1354. for i = 1,120 do
  1355. wait()
  1356. kill.Transparency = kill.Transparency - 0.005
  1357. end
  1358.  
  1359. function onTouched(hit)
  1360. if hit.Parent:FindFirstChild("Immune") == nil then
  1361. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  1362. hit.Parent:FindFirstChild("Head").Anchored = true
  1363. hitsound:Play()
  1364.  
  1365.  
  1366.  
  1367. hit.Parent:BreakJoints()
  1368. hit.Parent:FindFirstChild("Humanoid").Health = -1
  1369. end
  1370.  
  1371.  
  1372.  
  1373.  
  1374.  
  1375. end
  1376. end
  1377. kill.Touched:connect(onTouched)
  1378.  
  1379.  
  1380. kill1 = Instance.new("Part",char)
  1381. kill1.Position = torso.Position - Vector3.new(0,2,0)
  1382. kill1.Size = Vector3.new(200,300,200)
  1383. kill1.Name = "Immune"
  1384. kill1.CanCollide = false
  1385. kill1.Transparency = 1
  1386. kill1.Anchored = false
  1387. kill1.Material = "Neon"
  1388. kill1.BrickColor = BrickColor.new("Dark indigo")
  1389.  
  1390. function onTouched(hit)
  1391. if hit.Parent:FindFirstChild("Immune") == nil then
  1392. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  1393. hit.Parent:FindFirstChild("Head").Anchored = true
  1394. hitsound:Play()
  1395.  
  1396.  
  1397.  
  1398. hit.Parent:FindFirstChild("Humanoid").Health = -1
  1399. hit.Parent:BreakJoints()
  1400. end
  1401.  
  1402.  
  1403.  
  1404. end
  1405.  
  1406. end
  1407. kill1.Touched:connect(onTouched)
  1408. for i = 1,50 do
  1409. wait()
  1410. killmesh.Scale = killmesh.Scale + Vector3.new(0,0.2,0)
  1411. end
  1412. wait(2)
  1413. kill.Anchored = false
  1414. canattack = true
  1415. idle = true
  1416. walking = true
  1417. if char:FindFirstChild("TalkingBillBoard")~= nil then
  1418. char:FindFirstChild("TalkingBillBoard"):destroy()
  1419. end
  1420. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
  1421. colorred = 0
  1422. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  1423. end
  1424. end
  1425. end)
  1426. slashsound = Instance.new("Sound",torso)
  1427. slashsound.SoundId = "http://www.roblox.com/asset/?id=357417055"
  1428. slashsound.Volume = 10
  1429. hitsound = Instance.new("Sound",torso)
  1430. hitsound.SoundId = "http://www.roblox.com/asset/?id=623904185"
  1431. hitsound.Volume = 10
  1432. mouse.KeyDown:connect(function(key)
  1433. if key == "q" then
  1434. if canattack == true then
  1435. canattack = false
  1436. idle = false
  1437. walking = false
  1438. wait(0.5)
  1439. slash = Instance.new("Part",char)
  1440. slash.CanCollide = false
  1441. slash.Transparency = 1
  1442. slash.Size = Vector3.new(5,5,1)
  1443. slashweld = Instance.new("Weld",slash)
  1444. slashweld.Part0 = torso
  1445. slashweld.Part1 = slash
  1446. slashweld.C0 = CFrame.new(0,0,-2)
  1447. slashdecal = Instance.new("Decal",slash)
  1448. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  1449.  
  1450. slashdecal1 = Instance.new("Decal",slash)
  1451. slashdecal1.Face = "Back"
  1452. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  1453. slashsound:Play()
  1454. function onTouched(hit)
  1455. if hit.Parent:FindFirstChild("Immune") == nil then
  1456. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  1457. hit.Parent:FindFirstChild("Head").Anchored = true
  1458. slash.TouchInterest:Destroy()
  1459. wait(1)
  1460. hitsound:Play()
  1461.  
  1462. gothit = Instance.new("Part",hit)
  1463. gothit.CanCollide = false
  1464. gothit.Transparency = 1
  1465. gothit.Size = Vector3.new(10,10,1)
  1466. gothitweld1 = Instance.new("Weld",gothit)
  1467. gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
  1468. gothitweld1.Part1 = gothit
  1469.  
  1470. gothitweld1.C0 = CFrame.new(0,4,0)
  1471. gothitdecal = Instance.new("Decal",gothit)
  1472. gothitdecal.Texture = "http://www.roblox.com/asset/?id=458246128"
  1473. exp = exp
  1474. gothit = Instance.new("Part",hit)
  1475. gothit.CanCollide = false
  1476. gothit.Transparency = 1
  1477. gothit.Size = Vector3.new(10,10,1)
  1478. gothitweld = Instance.new("Weld",gothit)
  1479. gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
  1480. gothitweld.Part1 = gothit
  1481. gothitweld.C0 = CFrame.new(0,5,0)
  1482.  
  1483. gothitdecal = Instance.new("Decal",gothit)
  1484. gothitdecal.Texture = "http://www.roblox.com/asset/?id=458246128"
  1485. gothitdecal.Face = "Back"
  1486. gothitweld.C0 = CFrame.new(0,3.5,0)
  1487. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1488. wait(0.2)
  1489. gothitweld.C0 = CFrame.new(0,4,0)
  1490. gothitweld1.C0 = CFrame.new(0,4,0)
  1491. wait(0.2)
  1492. gothitweld.C0 = CFrame.new(0,3.5,0)
  1493. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1494. wait(0.2)
  1495. gothitweld.C0 = CFrame.new(0,4,0)
  1496. gothitweld1.C0 = CFrame.new(0,4,0)
  1497. wait(0.2)
  1498. gothitweld.C0 = CFrame.new(0,3.5,0)
  1499. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1500. wait(0.2)
  1501. gothitweld.C0 = CFrame.new(0,4,0)
  1502. gothitweld1.C0 = CFrame.new(0,4,0)
  1503. wait(0.2)
  1504. gothitweld.C0 = CFrame.new(0,3.5,0)
  1505. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1506. wait(0.2)
  1507. gothitweld.C0 = CFrame.new(0,4,0)
  1508. gothitweld1.C0 = CFrame.new(0,4,0)
  1509. wait(0.2)
  1510. gothitweld.C0 = CFrame.new(0,3.5,0)
  1511. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1512. wait(0.2)
  1513. gothitweld.C0 = CFrame.new(0,4,0)
  1514. gothitweld1.C0 = CFrame.new(0,4,0)
  1515. wait(0.2)
  1516. gothitweld.C0 = CFrame.new(0,3.5,0)
  1517. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1518. wait(0.2)
  1519. gothitweld.C0 = CFrame.new(0,4,0)
  1520. gothitweld1.C0 = CFrame.new(0,4,0)
  1521. wait(0.2)
  1522.  
  1523. hit.Parent:FindFirstChild("Humanoid").Health = -1
  1524. hit.Parent:BreakJoints()
  1525. else
  1526. if hit.Parent:IsA("Model") then
  1527. wait(1)
  1528.  
  1529. hit.Parent:BreakJoints()
  1530.  
  1531.  
  1532.  
  1533.  
  1534.  
  1535. end
  1536. if hit:IsA("Part") and hit.Size.X < 500 then
  1537.  
  1538. hit.BrickColor = BrickColor.new("Really black")
  1539. hitsound:Play()
  1540. for i = 1,20 do
  1541. wait()
  1542. hit.Transparency = hit.Transparency + 0.05
  1543. end
  1544.  
  1545.  
  1546.  
  1547.  
  1548. end
  1549. end
  1550.  
  1551. end
  1552.  
  1553. end
  1554. slash.Touched:connect(onTouched)
  1555.  
  1556. for i = 1, 5 do
  1557. wait()
  1558. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1559. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1560. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1561. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1562. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1563. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1564.  
  1565. end
  1566. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  1567. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  1568. for i = 1, 5 do
  1569. wait()
  1570. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  1571. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1572. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1573. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  1574. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1575. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1576.  
  1577. end
  1578. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  1579. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  1580.  
  1581. wait(0.1)
  1582. slash:Destroy()
  1583. canattack = true
  1584. idle = true
  1585. walking = true
  1586. end
  1587. end
  1588. end)
  1589.  
  1590.  
  1591.  
  1592.  
  1593.  
  1594.  
  1595.  
  1596.  
  1597. mouse.KeyDown:connect(function(key)
  1598. if key == "x" then
  1599. hed.Transparency = 1
  1600. torso.Transparency = 1
  1601. larm.Transparency = 1
  1602. hed.face.Texture = ""
  1603. MegaloStrikesBack.Volume = 0.1
  1604. expcounter = false
  1605. rarm.Transparency = 1
  1606. lleg.Transparency = 1
  1607. rleg.Transparency = 1
  1608. handle.Transparency = 1
  1609. blackhand.Transparency = 1
  1610. hum.WalkSpeed = 60
  1611. text.Text = ""
  1612. if char:FindFirstChild("TalkingBillBoard")~= nil then
  1613. char:FindFirstChild("TalkingBillBoard"):destroy()
  1614. end
  1615. end
  1616. end)
  1617. mouse.KeyUp:connect(function(key)
  1618. if key == "x" then
  1619. hed.Transparency = 0
  1620. expcounter = true
  1621. torso.Transparency = 0
  1622. larm.Transparency = 0
  1623. rarm.Transparency = 0
  1624. MegaloStrikesBack.Volume = 50
  1625. lleg.Transparency = 0
  1626. rleg.Transparency = 0
  1627. handle.Transparency = 0
  1628. blackhand.Transparency = 0
  1629. hum.WalkSpeed = 16
  1630. hed.face.Texture = "http://www.roblox.com/asset/?id=508723120"
  1631. end
  1632. end)
  1633. mouse.KeyDown:connect(function(Key)
  1634. if Key:byte() == 48 then
  1635. hum.WalkSpeed = 40
  1636. workspace.Camera.FieldOfView = 80
  1637. sprint = true
  1638. end
  1639. end)
  1640.  
  1641. mouse.KeyUp:connect(function(Key)
  1642. if Key:byte() == 48 then
  1643. hum.WalkSpeed = 16
  1644. workspace.Camera.FieldOfView = 70
  1645. sprint = false
  1646. end
  1647. end)
  1648.  
  1649.  
  1650.  
  1651. mouse.KeyDown:connect(function(key)
  1652. if key == "e" then
  1653. if canattack == true then
  1654. canattack = false
  1655. idle = false
  1656. walking = false
  1657. wait(1)
  1658.  
  1659.  
  1660. slashsound:Play()
  1661.  
  1662. for i = 1, 5 do
  1663. wait()
  1664. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1665. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1666. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1667. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1668. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1669. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1670.  
  1671. end
  1672.  
  1673. for i = 1, 5 do
  1674. wait()
  1675. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  1676. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1677. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1678. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  1679. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1680. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1681.  
  1682. end
  1683. slash4 = Instance.new("Part",char)
  1684. slash4.CanCollide = false
  1685. slash4.Transparency = 0
  1686. slash4.Position = Vector3.new(999,999,999)
  1687. slash4.BrickColor = BrickColor.new("Dark indigo")
  1688. slash4.Size = Vector3.new(0.3,9,0.3)
  1689. slashweld4 = Instance.new("Weld",slash4)
  1690. slashweld4.Part0 = torso
  1691. slashweld4.Part1 = slash4
  1692. slashweld4.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-80))
  1693. slashsound:Play()
  1694. for i = 1, 5 do
  1695. wait()
  1696. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(30)), 0.7)
  1697. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1698. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1699. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-5), math.rad(15), 0), 0.7)
  1700. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1701. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1702.  
  1703. end
  1704. slash3 = Instance.new("Part",char)
  1705. slash3.CanCollide = false
  1706. slash3.Transparency = 0
  1707. slash3.Position = Vector3.new(999,999,999)
  1708. slash3.BrickColor = BrickColor.new("Dark indigo")
  1709. slash3.Size = Vector3.new(0.3,9,0.3)
  1710. slashweld3 = Instance.new("Weld",slash3)
  1711. slashweld3.Part0 = torso
  1712. slashweld3.Part1 = slash3
  1713. slashweld3.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(40))
  1714. slashsound:Play()
  1715. for i = 1, 5 do
  1716. wait()
  1717. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(-70)), 0.7)
  1718. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1719. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1720. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-7), math.rad(17), 0), 0.7)
  1721. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1722. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1723.  
  1724. end
  1725. slash2 = Instance.new("Part",char)
  1726. slash2.CanCollide = false
  1727. slash2.Transparency = 0
  1728. slash2.Position = Vector3.new(999,999,999)
  1729. slash2.BrickColor = BrickColor.new("Dark indigo")
  1730. slash2.Size = Vector3.new(0.3,9,0.3)
  1731. slashweld2 = Instance.new("Weld",slash2)
  1732. slashweld2.Part0 = torso
  1733. slashweld2.Part1 = slash2
  1734. slashweld2.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(150))
  1735. for i = 1, 5 do
  1736. wait()
  1737. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1738. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1739. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1740. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1741. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1742. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1743.  
  1744. end
  1745. slashsound:Play()
  1746. for i = 1, 5 do
  1747. wait()
  1748. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-20)), 0.7)
  1749. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1750. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1751. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-7), math.rad(17), 0), 0.7)
  1752. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1753. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1754.  
  1755. end
  1756. slash1 = Instance.new("Part",char)
  1757. slash1.CanCollide = false
  1758. slash1.Transparency = 0
  1759. slash1.Position = Vector3.new(999,999,999)
  1760. slash1.BrickColor = BrickColor.new("Dark indigo")
  1761. slash1.Size = Vector3.new(0.3,9,0.3)
  1762. slashweld1 = Instance.new("Weld",slash1)
  1763. slashweld1.Part0 = torso
  1764. slashweld1.Part1 = slash1
  1765. slashweld1.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(78))
  1766. for i = 1, 5 do
  1767. wait()
  1768. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1769. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1770. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1771. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1772. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1773. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1774.  
  1775. end
  1776. slash5 = Instance.new("Part",char)
  1777. slash5.CanCollide = true
  1778. slash5.Transparency = 1
  1779. slash5.Position = Vector3.new(999,999,999)
  1780. slash5.BrickColor = BrickColor.new("Dark indigo")
  1781. slash5.Size = Vector3.new(4,3,4)
  1782. slashweld5 = Instance.new("Weld",slash5)
  1783. slashweld5.Part0 = torso
  1784. slashweld5.Part1 = slash5
  1785. slashweld5.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(130))
  1786. function onTouched(hit)
  1787. if hit.Parent:FindFirstChild("Immune") == nil then
  1788. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  1789. hit.Parent:FindFirstChild("Head").Anchored = true
  1790.  
  1791. wait(1)
  1792. hitsound:Play()
  1793.  
  1794. gothit = Instance.new("Part",hit)
  1795. gothit.CanCollide = false
  1796. gothit.Transparency = 1
  1797. gothit.Size = Vector3.new(10,10,1)
  1798. gothitweld1 = Instance.new("Weld",gothit)
  1799. gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
  1800. gothitweld1.Part1 = gothit
  1801.  
  1802. gothitweld1.C0 = CFrame.new(0,4,0)
  1803. gothitdecal = Instance.new("Decal",gothit)
  1804. gothitdecal.Texture = "http://www.roblox.com/asset/?id=458246128"
  1805. exp = exp
  1806. gothit = Instance.new("Part",hit)
  1807. gothit.CanCollide = false
  1808. gothit.Transparency = 1
  1809. gothit.Size = Vector3.new(10,10,1)
  1810. gothitweld = Instance.new("Weld",gothit)
  1811. gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
  1812. gothitweld.Part1 = gothit
  1813. gothitweld.C0 = CFrame.new(0,5,0)
  1814.  
  1815. gothitdecal = Instance.new("Decal",gothit)
  1816. gothitdecal.Texture = "http://www.roblox.com/asset/?id=458246128"
  1817. gothitdecal.Face = "Back"
  1818. gothitweld.C0 = CFrame.new(0,3.5,0)
  1819. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1820. wait(0.2)
  1821. gothitweld.C0 = CFrame.new(0,4,0)
  1822. gothitweld1.C0 = CFrame.new(0,4,0)
  1823. wait(0.2)
  1824. gothitweld.C0 = CFrame.new(0,3.5,0)
  1825. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1826. wait(0.2)
  1827. gothitweld.C0 = CFrame.new(0,4,0)
  1828. gothitweld1.C0 = CFrame.new(0,4,0)
  1829. wait(0.2)
  1830. gothitweld.C0 = CFrame.new(0,3.5,0)
  1831. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1832. wait(0.2)
  1833. gothitweld.C0 = CFrame.new(0,4,0)
  1834. gothitweld1.C0 = CFrame.new(0,4,0)
  1835. wait(0.2)
  1836. gothitweld.C0 = CFrame.new(0,3.5,0)
  1837. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1838. wait(0.2)
  1839. gothitweld.C0 = CFrame.new(0,4,0)
  1840. gothitweld1.C0 = CFrame.new(0,4,0)
  1841. wait(0.2)
  1842. gothitweld.C0 = CFrame.new(0,3.5,0)
  1843. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1844. wait(0.2)
  1845. gothitweld.C0 = CFrame.new(0,4,0)
  1846. gothitweld1.C0 = CFrame.new(0,4,0)
  1847. wait(0.2)
  1848. gothitweld.C0 = CFrame.new(0,3.5,0)
  1849. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1850. wait(0.2)
  1851. gothitweld.C0 = CFrame.new(0,4,0)
  1852. gothitweld1.C0 = CFrame.new(0,4,0)
  1853. wait(0.2)
  1854.  
  1855. hit.Parent:FindFirstChild("Humanoid").Health = -1
  1856. hit.Parent:BreakJoints()
  1857. else
  1858. if hit.Parent:IsA("Model") then
  1859. wait(1)
  1860.  
  1861. hit.Parent:BreakJoints()
  1862.  
  1863.  
  1864.  
  1865.  
  1866.  
  1867. end
  1868. if hit:IsA("Part") and hit.Size.X < 500 then
  1869.  
  1870. hit.BrickColor = BrickColor.new("Really black")
  1871. hitsound:Play()
  1872. for i = 1,20 do
  1873. wait()
  1874. hit.Transparency = hit.Transparency + 0.05
  1875. end
  1876.  
  1877.  
  1878.  
  1879.  
  1880. end
  1881. end
  1882.  
  1883. end
  1884.  
  1885. end
  1886. slash5.Touched:connect(onTouched)
  1887. for i = 1,70 do
  1888. wait()
  1889.  
  1890. slashweld1.C0 = slashweld1.C0 - Vector3.new(0,0,4)
  1891. slashweld2.C0 = slashweld2.C0 - Vector3.new(0,0,4)
  1892. slashweld3.C0 = slashweld3.C0 - Vector3.new(0,0,4)
  1893. slashweld4.C0 = slashweld4.C0 - Vector3.new(0,0,4)
  1894. slashweld5.C0 = slashweld5.C0 - Vector3.new(0,0,4)
  1895.  
  1896.  
  1897.  
  1898. end
  1899. slash1:Destroy()
  1900. slash2:Destroy()
  1901. slash3:Destroy()
  1902. slash4:Destroy()
  1903. slash5:Destroy()
  1904. canattack = true
  1905. idle = true
  1906. walking = true
  1907. end
  1908. end
  1909. end)
  1910.  
  1911.  
  1912. mouse.KeyDown:connect(function(key)
  1913. if key == "r" then
  1914. if canattack == true then
  1915.  
  1916.  
  1917.  
  1918. what = Instance.new("Part",char)
  1919. what.Size = Vector3.new(60,60,60)
  1920. what.Transparency = 1
  1921. what.Position = torso.Position
  1922. what.CanCollide = false
  1923. function onTouched(hit)
  1924. if hit.Parent:FindFirstChild("Immune") == nil then
  1925. if hit.Parent:FindFirstChild("Torso") ~= nil then
  1926. chatfunc('')
  1927.  
  1928. t = hit.Parent:FindFirstChild("Torso")
  1929. h = hit.Parent:FindFirstChild("Head")
  1930. la = hit.Parent:FindFirstChild("Left Arm")
  1931. ra = hit.Parent:FindFirstChild("Right Arm")
  1932. ll = hit.Parent:FindFirstChild("Left Leg")
  1933. rl = hit.Parent:FindFirstChild("Right Leg")
  1934.  
  1935. what:Destroy()
  1936.  
  1937. torso.CFrame = t.CFrame * CFrame.Angles(0,math.rad(180),0) + t.CFrame.lookVector * 3
  1938. h.Anchored = true
  1939.  
  1940.  
  1941.  
  1942. hed.Anchored = true
  1943. wait(2)
  1944. chatfunc('')
  1945. slash = Instance.new("Part",char)
  1946. slash.CanCollide = false
  1947. slash.Transparency = 1
  1948. slash.Size = Vector3.new(5,5,1)
  1949. slashweld = Instance.new("Weld",slash)
  1950. slashweld.Part0 = torso
  1951. slashweld.Part1 = slash
  1952. slashweld.C0 = CFrame.new(0,0,-2)
  1953. slashdecal = Instance.new("Decal",slash)
  1954. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  1955.  
  1956. slashdecal1 = Instance.new("Decal",slash)
  1957. slashdecal1.Face = "Back"
  1958. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  1959. slashsound:Play()
  1960. for i = 1, 5 do
  1961. wait()
  1962. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1963. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1964. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1965. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1966. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1967. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1968.  
  1969. end
  1970. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  1971. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  1972. for i = 1, 5 do
  1973. wait()
  1974. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  1975. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1976. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1977. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  1978. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1979. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1980.  
  1981. end
  1982. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  1983. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  1984.  
  1985. wait(0.1)
  1986. slash:Destroy()
  1987. if la ~= nil then
  1988. la.BrickColor = BrickColor.new("Really black")
  1989. hitsound:Play()
  1990. for i = 1,20 do
  1991. wait()
  1992. la.Transparency = la.Transparency + 0.05
  1993. end
  1994. la:Destroy()
  1995. end
  1996. slash = Instance.new("Part",char)
  1997. slash.CanCollide = false
  1998. slash.Transparency = 1
  1999. slash.Size = Vector3.new(5,5,1)
  2000. slashweld = Instance.new("Weld",slash)
  2001. slashweld.Part0 = torso
  2002. slashweld.Part1 = slash
  2003. slashweld.C0 = CFrame.new(0,0,-2)
  2004. slashdecal = Instance.new("Decal",slash)
  2005. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  2006.  
  2007. slashdecal1 = Instance.new("Decal",slash)
  2008. slashdecal1.Face = "Back"
  2009. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  2010. slashsound:Play()
  2011. for i = 1, 5 do
  2012. wait()
  2013. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  2014. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2015. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2016. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  2017. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2018. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2019.  
  2020. end
  2021. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  2022. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  2023. for i = 1, 5 do
  2024. wait()
  2025. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  2026. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2027. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2028. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  2029. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2030. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2031.  
  2032. end
  2033. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  2034. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  2035.  
  2036. wait(0.1)
  2037. slash:Destroy()
  2038. if ll ~= nil then
  2039. ll.BrickColor = BrickColor.new("Really black")
  2040. hitsound:Play()
  2041. for i = 1,20 do
  2042. wait()
  2043. ll.Transparency = ll.Transparency + 0.05
  2044. end
  2045. ll:Destroy()
  2046. end
  2047. slash = Instance.new("Part",char)
  2048. slash.CanCollide = false
  2049. slash.Transparency = 1
  2050. slash.Size = Vector3.new(5,5,1)
  2051. slashweld = Instance.new("Weld",slash)
  2052. slashweld.Part0 = torso
  2053. slashweld.Part1 = slash
  2054. slashweld.C0 = CFrame.new(0,0,-2)
  2055. slashdecal = Instance.new("Decal",slash)
  2056. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  2057.  
  2058. slashdecal1 = Instance.new("Decal",slash)
  2059. slashdecal1.Face = "Back"
  2060. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  2061. slashsound:Play()
  2062. for i = 1, 5 do
  2063. wait()
  2064. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  2065. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2066. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2067. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  2068. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2069. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2070.  
  2071. end
  2072. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  2073. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  2074. for i = 1, 5 do
  2075. wait()
  2076. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  2077. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2078. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2079. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  2080. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2081. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2082.  
  2083. end
  2084. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  2085. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  2086.  
  2087. wait(0.1)
  2088. slash:Destroy()
  2089. if ra ~= nil then
  2090. ra.BrickColor = BrickColor.new("Really black")
  2091. hitsound:Play()
  2092. for i = 1,20 do
  2093. wait()
  2094. ra.Transparency = ra.Transparency + 0.05
  2095. end
  2096. ra:Destroy()
  2097. end
  2098. slash = Instance.new("Part",char)
  2099. slash.CanCollide = false
  2100. slash.Transparency = 1
  2101. slash.Size = Vector3.new(5,5,1)
  2102. slashweld = Instance.new("Weld",slash)
  2103. slashweld.Part0 = torso
  2104. slashweld.Part1 = slash
  2105. slashweld.C0 = CFrame.new(0,0,-2)
  2106. slashdecal = Instance.new("Decal",slash)
  2107. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  2108.  
  2109. slashdecal1 = Instance.new("Decal",slash)
  2110. slashdecal1.Face = "Back"
  2111. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  2112. slashsound:Play()
  2113. for i = 1, 5 do
  2114. wait()
  2115. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  2116. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2117. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2118. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  2119. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2120. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2121.  
  2122. end
  2123. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  2124. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  2125. for i = 1, 5 do
  2126. wait()
  2127. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  2128. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2129. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2130. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  2131. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2132. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2133.  
  2134. end
  2135. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  2136. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  2137.  
  2138. wait(0.1)
  2139. slash:Destroy()
  2140. if rl ~= nil then
  2141. rl.BrickColor = BrickColor.new("Really black")
  2142. hitsound:Play()
  2143. for i = 1,20 do
  2144. wait()
  2145. rl.Transparency = rl.Transparency + 0.05
  2146. end
  2147. rl:Destroy()
  2148. end
  2149. slash = Instance.new("Part",char)
  2150. slash.CanCollide = false
  2151. slash.Transparency = 1
  2152. slash.Size = Vector3.new(5,5,1)
  2153. slashweld = Instance.new("Weld",slash)
  2154. slashweld.Part0 = torso
  2155. slashweld.Part1 = slash
  2156. slashweld.C0 = CFrame.new(0,0,-2)
  2157. slashdecal = Instance.new("Decal",slash)
  2158. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  2159.  
  2160. slashdecal1 = Instance.new("Decal",slash)
  2161. slashdecal1.Face = "Back"
  2162. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  2163. slashsound:Play()
  2164. for i = 1, 5 do
  2165. wait()
  2166. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  2167. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2168. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2169. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  2170. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2171. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2172.  
  2173. end
  2174. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  2175. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  2176. for i = 1, 5 do
  2177. wait()
  2178. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  2179. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2180. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2181. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  2182. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2183. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2184.  
  2185. end
  2186. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  2187. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  2188.  
  2189. wait(0.1)
  2190. slash:Destroy()
  2191.  
  2192. t.BrickColor = BrickColor.new("Really black")
  2193. hitsound:Play()
  2194. for i = 1,20 do
  2195. wait()
  2196. t.Transparency = t.Transparency + 0.05
  2197. end
  2198. t:Destroy()
  2199. slash = Instance.new("Part",char)
  2200. slash.CanCollide = false
  2201. slash.Transparency = 1
  2202. slash.Size = Vector3.new(5,5,1)
  2203. slashweld = Instance.new("Weld",slash)
  2204. slashweld.Part0 = torso
  2205. slashweld.Part1 = slash
  2206. slashweld.C0 = CFrame.new(0,0,-2)
  2207. slashdecal = Instance.new("Decal",slash)
  2208. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  2209.  
  2210. slashdecal1 = Instance.new("Decal",slash)
  2211. slashdecal1.Face = "Back"
  2212. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  2213. slashsound:Play()
  2214. for i = 1, 5 do
  2215. wait()
  2216. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  2217. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2218. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2219. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  2220. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2221. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2222.  
  2223. end
  2224. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  2225. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  2226. for i = 1, 5 do
  2227. wait()
  2228. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  2229. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2230. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2231. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  2232. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2233. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2234.  
  2235. end
  2236. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  2237. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  2238.  
  2239. wait(0.1)
  2240. slash:Destroy()
  2241. if h ~= nil then
  2242. h.BrickColor = BrickColor.new("Really black")
  2243. hitsound:Play()
  2244. for i = 1,20 do
  2245. wait()
  2246. h.Transparency = h.Transparency + 0.05
  2247. end
  2248. h:Destroy()
  2249. end
  2250. hed.Anchored = false
  2251.  
  2252. end
  2253. end
  2254. end
  2255. what.Touched:connect(onTouched)
  2256. end
  2257. end
  2258. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement