Advertisement
NoHackJustStevePlayz

sadsadsadsawefrretwhrte6ty6ujtj

Aug 14th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 312.59 KB | None | 0 0
  1. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  2. local Player,Mouse,mouse,UserInputService,ContextActionService = owner
  3. do
  4. print("FE Compatibility code by Mokiros")
  5. script.Parent = Player.Character
  6.  
  7. --RemoteEvent for communicating
  8. local Event = Instance.new("RemoteEvent")
  9. Event.Name = "UserInput_Event"
  10.  
  11. --Fake event to make stuff like Mouse.KeyDown work
  12. local function fakeEvent()
  13. local t = {_fakeEvent=true,Connect=function(self,f)self.Function=f end}
  14. t.connect = t.Connect
  15. return t
  16. end
  17.  
  18. --Creating fake input objects with fake variables
  19. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  20. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  21. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  22. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  23. end}
  24. --Merged 2 functions into one by checking amount of arguments
  25. CAS.UnbindAction = CAS.BindAction
  26.  
  27. --This function will trigger the events that have been :Connect()'ed
  28. local function te(self,ev,...)
  29. local t = m[ev]
  30. if t and t._fakeEvent and t.Function then
  31. t.Function(...)
  32. end
  33. end
  34. m.TrigEvent = te
  35. UIS.TrigEvent = te
  36.  
  37. Event.OnServerEvent:Connect(function(plr,io)
  38. if plr~=Player then return end
  39. if io.isMouse then
  40. m.Target = io.Target
  41. m.Hit = io.Hit
  42. else
  43. local b = io.UserInputState == Enum.UserInputState.Begin
  44. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  45. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  46. end
  47. for _,t in pairs(CAS.Actions) do
  48. for _,k in pairs(t.Keys) do
  49. if k==io.KeyCode then
  50. t.Function(t.Name,io.UserInputState,io)
  51. end
  52. end
  53. end
  54. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  55. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  56. end
  57. end)
  58. Event.Parent = NLS([==[
  59. local Player = game:GetService("Players").LocalPlayer
  60. local Event = script:WaitForChild("UserInput_Event")
  61.  
  62. local UIS = game:GetService("UserInputService")
  63. local input = function(io,a)
  64. if a then return end
  65. --Since InputObject is a client-side instance, we create and pass table instead
  66. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState})
  67. end
  68. UIS.InputBegan:Connect(input)
  69. UIS.InputEnded:Connect(input)
  70.  
  71. local Mouse = Player:GetMouse()
  72. local h,t
  73. --Give the server mouse data 30 times every second, but only if the values changed
  74. --If player is not moving their mouse, client won't fire events
  75. while wait(1/30) do
  76. if h~=Mouse.Hit or t~=Mouse.Target then
  77. h,t=Mouse.Hit,Mouse.Target
  78. Event:FireServer({isMouse=true,Target=t,Hit=h})
  79. end
  80. end]==],Player.Character)
  81. Mouse,mouse,UserInputService,ContextActionService = m,m,UIS,CAS
  82. end
  83.  
  84.  
  85.  
  86. local p = owner
  87. local char = p.Character
  88. local larm = char["Left Arm"]
  89. local rarm = char["Right Arm"]
  90. local lleg = char["Left Leg"]
  91. local rleg = char["Right Leg"]
  92. local hed = char.Head
  93. local torso = char.Torso
  94. local hum = char.Humanoid
  95. local cam = game.Workspace.CurrentCamera
  96. local root = char.HumanoidRootPart
  97. local deb = false
  98. local shot = 0
  99. local l = game:GetService("Lighting")
  100. local stanceToggle = "Normal"
  101. math.randomseed(os.time())
  102. hum.WalkSpeed = 7
  103. char.Health:Destroy()
  104. hum.MaxHealth = 50000
  105. wait(0.01)
  106. hum.Health = 50000
  107. ----------------------------------------------------
  108. ----------------------------------------------------
  109. shirt = Instance.new("Shirt", char)
  110. shirt.Name = "Shirt"
  111. pants = Instance.new("Pants", char)
  112. pants.Name = "Pants"
  113. char.Shirt.ShirtTemplate = "rbxassetid://237906462"
  114. char.Pants.PantsTemplate = "rbxassetid://237906462"
  115. ----------------------------------------------------
  116. ----------------------------------------------------
  117. Debounces = {
  118. on = false;
  119. ks = false;
  120. CanAttack = true;
  121. CanJoke = true;
  122. NoIdl = false;
  123. Slashing = false;
  124. Slashed = false;
  125. Grabbing = false;
  126. Grabbed = false;
  127. }
  128. local Touche = {char.Name, }
  129. ----------------------------------------------------
  130. function lerp(a, b, t) -- Linear interpolation
  131. return a + (b - a)*t
  132. end
  133.  
  134. function slerp(a, b, t) --Spherical interpolation
  135. dot = a:Dot(b)
  136. if dot > 0.99999 or dot < -0.99999 then
  137. return t <= 0.5 and a or b
  138. else
  139. r = math.acos(dot)
  140. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  141. end
  142. end
  143.  
  144. function matrixInterpolate(a, b, t)
  145. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  146. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  147. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  148. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  149. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  150. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  151. local t = v1:Dot(v2)
  152. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  153. return CFrame.new()
  154. end
  155. return CFrame.new(
  156. v0.x, v0.y, v0.z,
  157. v1.x, v1.y, v1.z,
  158. v2.x, v2.y, v2.z,
  159. v3.x, v3.y, v3.z)
  160. end
  161. ----------------------------------------------------
  162. function genWeld(a,b)
  163. local w = Instance.new("Weld",a)
  164. w.Part0 = a
  165. w.Part1 = b
  166. return w
  167. end
  168. function weld(a, b)
  169. local weld = Instance.new("Weld")
  170. weld.Name = "W"
  171. weld.Part0 = a
  172. weld.Part1 = b
  173. weld.C0 = a.CFrame:inverse() * b.CFrame
  174. weld.Parent = a
  175. return weld;
  176. end
  177. ----------------------------------------------------
  178. function Lerp(c1,c2,al)
  179. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  180. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  181. for i,v in pairs(com1) do
  182. com1[i] = v+(com2[i]-v)*al
  183. end
  184. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  185. end
  186. ----------------------------------------------------
  187. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  188. local wld = Instance.new("Weld", wp1)
  189. wld.Part0 = wp0
  190. wld.Part1 = wp1
  191. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  192. end
  193. ----------------------------------------------------
  194. for i,v in pairs(char:children()) do
  195. if v:IsA("Hat") then
  196. v:Destroy()
  197. end
  198. end
  199. for i,v in pairs(hed:children()) do
  200. if v:IsA("Sound") then
  201. v:Destroy()
  202. end
  203. end
  204. ----------------------------------------------------
  205. function HasntTouched(plrname)
  206. local ret = true
  207. for _, v in pairs(Touche) do
  208. if v == plrname then
  209. ret = false
  210. end
  211. end
  212. return ret
  213. end
  214. ----------------------------------------------------
  215. larm.Size = larm.Size * 2
  216. rarm.Size = rarm.Size * 2
  217. lleg.Size = lleg.Size * 2
  218. rleg.Size = rleg.Size * 2
  219. torso.Size = torso.Size * 2
  220. hed.Size = hed.Size * 2
  221. root.Size = root.Size * 2
  222. ----------------------------------------------------
  223. newWeld(torso, larm, -1.5, 0.5, 0)
  224. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  225. newWeld(torso, rarm, 1.5, 0.5, 0)
  226. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  227. newWeld(torso, hed, 0, 1.5, 0)
  228. newWeld(torso, lleg, -0.5, -1, 0)
  229. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  230. newWeld(torso, rleg, 0.5, -1, 0)
  231. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  232. newWeld(root, torso, 0, -1, 0)
  233. torso.Weld.C1 = CFrame.new(0, -1, 0)
  234. hed.Transparency = 1
  235. ----------------------------------------------------
  236. lite = Instance.new("PointLight", torso)
  237. lite.Brightness = 100
  238. lite.Range = 15
  239. lite.Color = Color3.new(2, 2, 2)
  240. --[[local hed2 = hed:Clone()
  241. hed2.CanCollide = false
  242. hed2.Parent = char
  243. hed2:ClearAllChildren()
  244. hed2.Transparency = 1
  245. hed2.Name = "DARP"
  246. local w = Instance.new("Weld",hed2)
  247. w.Part0 = hed
  248. w.Part1 = hed2
  249. w.C0 = CFrame.new(0,0,-0.175)
  250. z=Instance.new("SurfaceGui",hed2)
  251. z.Enabled = true
  252. z.Face = "Front"
  253. z.Adornee = hed2
  254. z.CanvasSize = Vector2.new(100,100)
  255. local face = Instance.new("ImageLabel",z)
  256. face.Size = UDim2.new(1,-30,1,0)
  257. face.Position = UDim2.new(0,15,0,0)
  258. face.BackgroundTransparency = 1
  259. face.Image='rbxassetid://46282671']]--
  260. ----------------------------------------------------
  261. z = Instance.new("Sound", char)
  262. z.SoundId = "rbxassetid://1459435650"--1459435650
  263. z.Looped = true
  264. z.Pitch = 1
  265. z.Volume = 3
  266. wait(.001)
  267. z:Play()
  268. ----------------------------------------------------
  269.  
  270. local m = Instance.new("Model")
  271. m.Name = "Absolution"
  272. p1 = Instance.new("Part", m)
  273. p1.BrickColor = BrickColor.new("Bright blue")
  274. p1.FormFactor = Enum.FormFactor.Custom
  275. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  276. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  277. p1.CanCollide = false
  278. p1.Locked = true
  279. p1.Elasticity = 0
  280. p1.BottomSurface = Enum.SurfaceType.Smooth
  281. p1.TopSurface = Enum.SurfaceType.Smooth
  282. b1 = Instance.new("SpecialMesh", p1)
  283. b1.MeshType = Enum.MeshType.Wedge
  284. b1.Name = "Mesh"
  285. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  286. p2 = Instance.new("Part", m)
  287. p2.BrickColor = BrickColor.new("Really black")
  288. p2.FormFactor = Enum.FormFactor.Custom
  289. p2.Size = Vector3.new(1, 2.9000001, 1)
  290. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  291. p2.CanCollide = false
  292. p2.Locked = true
  293. p2.Elasticity = 0
  294. p2.BottomSurface = Enum.SurfaceType.Smooth
  295. p2.TopSurface = Enum.SurfaceType.Smooth
  296. b2 = Instance.new("BlockMesh", p2)
  297. b2.Name = "Mesh"
  298. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  299. p3 = Instance.new("Part", m)
  300. p3.BrickColor = BrickColor.new("Bright blue")
  301. p3.FormFactor = Enum.FormFactor.Custom
  302. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  303. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  304. p3.CanCollide = false
  305. p3.Locked = true
  306. p3.Elasticity = 0
  307. p3.BottomSurface = Enum.SurfaceType.Smooth
  308. p3.TopSurface = Enum.SurfaceType.Smooth
  309. b3 = Instance.new("SpecialMesh", p3)
  310. b3.MeshType = Enum.MeshType.Wedge
  311. b3.Name = "Mesh"
  312. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  313. p4 = Instance.new("Part", m)
  314. p4.BrickColor = BrickColor.new("Bright blue")
  315. p4.FormFactor = Enum.FormFactor.Custom
  316. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  317. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  318. p4.CanCollide = false
  319. p4.Locked = true
  320. p4.Elasticity = 0
  321. p4.BottomSurface = Enum.SurfaceType.Smooth
  322. p4.TopSurface = Enum.SurfaceType.Smooth
  323. b4 = Instance.new("SpecialMesh", p4)
  324. b4.MeshType = Enum.MeshType.Wedge
  325. b4.Name = "Mesh"
  326. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  327. p5 = Instance.new("Part", m)
  328. p5.BrickColor = BrickColor.new("Bright blue")
  329. p5.FormFactor = Enum.FormFactor.Custom
  330. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  331. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  332. p5.CanCollide = false
  333. p5.Locked = true
  334. p5.Elasticity = 0
  335. p5.BottomSurface = Enum.SurfaceType.Smooth
  336. p5.TopSurface = Enum.SurfaceType.Smooth
  337. b5 = Instance.new("SpecialMesh", p5)
  338. b5.MeshType = Enum.MeshType.Wedge
  339. b5.Name = "Mesh"
  340. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  341. p6 = Instance.new("Part", m)
  342. p6.Name = "Handle"
  343. p6.BrickColor = BrickColor.new("Really black")
  344. p6.FormFactor = Enum.FormFactor.Custom
  345. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  346. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  347. p6.CanCollide = false
  348. p6.Locked = true
  349. p6.Elasticity = 0
  350. p6.BottomSurface = Enum.SurfaceType.Smooth
  351. p6.TopSurface = Enum.SurfaceType.Smooth
  352. b6 = Instance.new("BlockMesh", p6)
  353. b6.Name = "Mesh"
  354. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  355. p7 = Instance.new("Part", m)
  356. p7.BrickColor = BrickColor.new("Bright blue")
  357. p7.FormFactor = Enum.FormFactor.Custom
  358. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  359. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  360. p7.CanCollide = false
  361. p7.Locked = true
  362. p7.Elasticity = 0
  363. p7.BottomSurface = Enum.SurfaceType.Smooth
  364. p7.TopSurface = Enum.SurfaceType.Smooth
  365. b7 = Instance.new("SpecialMesh", p7)
  366. b7.MeshType = Enum.MeshType.Wedge
  367. b7.Name = "Mesh"
  368. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  369. p8 = Instance.new("Part", m)
  370. p8.BrickColor = BrickColor.new("Bright blue")
  371. p8.FormFactor = Enum.FormFactor.Custom
  372. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  373. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  374. p8.CanCollide = false
  375. p8.Locked = true
  376. p8.Elasticity = 0
  377. p8.BottomSurface = Enum.SurfaceType.Smooth
  378. p8.TopSurface = Enum.SurfaceType.Smooth
  379. b8 = Instance.new("SpecialMesh", p8)
  380. b8.MeshType = Enum.MeshType.Wedge
  381. b8.Name = "Mesh"
  382. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  383. p9 = Instance.new("Part", m)
  384. p9.BrickColor = BrickColor.new("Really black")
  385. p9.FormFactor = Enum.FormFactor.Custom
  386. p9.Size = Vector3.new(1, 1.07999957, 1)
  387. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  388. p9.CanCollide = false
  389. p9.Locked = true
  390. p9.Elasticity = 0
  391. p9.BottomSurface = Enum.SurfaceType.Smooth
  392. p9.TopSurface = Enum.SurfaceType.Smooth
  393. b9 = Instance.new("BlockMesh", p9)
  394. b9.Name = "Mesh"
  395. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  396. p10 = Instance.new("Part", m)
  397. p10.BrickColor = BrickColor.new("Really black")
  398. p10.FormFactor = Enum.FormFactor.Custom
  399. p10.Size = Vector3.new(1, 1.41999948, 1)
  400. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  401. p10.CanCollide = false
  402. p10.Locked = true
  403. p10.Elasticity = 0
  404. p10.BottomSurface = Enum.SurfaceType.Smooth
  405. p10.TopSurface = Enum.SurfaceType.Smooth
  406. b10 = Instance.new("BlockMesh", p10)
  407. b10.Name = "Mesh"
  408. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  409. p11 = Instance.new("Part", m)
  410. p11.BrickColor = BrickColor.new("Really black")
  411. p11.FormFactor = Enum.FormFactor.Custom
  412. p11.Size = Vector3.new(1, 1.50999951, 1)
  413. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  414. p11.CanCollide = false
  415. p11.Locked = true
  416. p11.Elasticity = 0
  417. p11.BottomSurface = Enum.SurfaceType.Smooth
  418. p11.TopSurface = Enum.SurfaceType.Smooth
  419. b11 = Instance.new("BlockMesh", p11)
  420. b11.Name = "Mesh"
  421. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  422. p12 = Instance.new("Part", m)
  423. p12.Name = "BladeCenter"
  424. p12.BrickColor = BrickColor.new("Dark stone grey")
  425. p12.Material = Enum.Material.Concrete
  426. p12.FormFactor = Enum.FormFactor.Symmetric
  427. p12.Size = Vector3.new(1, 2, 2)
  428. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  429. p12.CanCollide = false
  430. p12.Locked = true
  431. p12.BottomSurface = Enum.SurfaceType.Smooth
  432. p12.TopSurface = Enum.SurfaceType.Smooth
  433. b12 = Instance.new("SpecialMesh", p12)
  434. b12.MeshType = Enum.MeshType.Brick
  435. b12.Name = "Mesh"
  436. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  437. p13 = Instance.new("Part", m)
  438. p13.BrickColor = BrickColor.new("Really black")
  439. p13.FormFactor = Enum.FormFactor.Custom
  440. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  441. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  442. p13.CanCollide = false
  443. p13.Locked = true
  444. p13.Elasticity = 0
  445. p13.BottomSurface = Enum.SurfaceType.Smooth
  446. p13.TopSurface = Enum.SurfaceType.Smooth
  447. b13 = Instance.new("BlockMesh", p13)
  448. b13.Name = "Mesh"
  449. b13.Scale = Vector3.new(1, 1, 0.400000006)
  450. p14 = Instance.new("Part", m)
  451. p14.BrickColor = BrickColor.new("Really black")
  452. p14.FormFactor = Enum.FormFactor.Custom
  453. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  454. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  455. p14.CanCollide = false
  456. p14.Locked = true
  457. p14.Elasticity = 0
  458. p14.BottomSurface = Enum.SurfaceType.Smooth
  459. p14.TopSurface = Enum.SurfaceType.Smooth
  460. b14 = Instance.new("BlockMesh", p14)
  461. b14.Name = "Mesh"
  462. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  463. p15 = Instance.new("Part", m)
  464. p15.BrickColor = BrickColor.new("Really black")
  465. p15.FormFactor = Enum.FormFactor.Custom
  466. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  467. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  468. p15.CanCollide = false
  469. p15.Locked = true
  470. p15.Elasticity = 0
  471. p15.BottomSurface = Enum.SurfaceType.Smooth
  472. p15.TopSurface = Enum.SurfaceType.Smooth
  473. b15 = Instance.new("BlockMesh", p15)
  474. b15.Name = "Mesh"
  475. b15.Scale = Vector3.new(1, 1, 0.400000006)
  476. p16 = Instance.new("Part", m)
  477. p16.BrickColor = BrickColor.new("Really black")
  478. p16.FormFactor = Enum.FormFactor.Custom
  479. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  480. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  481. p16.CanCollide = false
  482. p16.Locked = true
  483. p16.Elasticity = 0
  484. p16.BottomSurface = Enum.SurfaceType.Smooth
  485. p16.TopSurface = Enum.SurfaceType.Smooth
  486. b16 = Instance.new("BlockMesh", p16)
  487. b16.Name = "Mesh"
  488. b16.Scale = Vector3.new(1, 1, 0.400000006)
  489. p17 = Instance.new("Part", m)
  490. p17.BrickColor = BrickColor.new("Really black")
  491. p17.FormFactor = Enum.FormFactor.Custom
  492. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  493. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  494. p17.CanCollide = false
  495. p17.Locked = true
  496. p17.Elasticity = 0
  497. p17.BottomSurface = Enum.SurfaceType.Smooth
  498. p17.TopSurface = Enum.SurfaceType.Smooth
  499. b17 = Instance.new("BlockMesh", p17)
  500. b17.Name = "Mesh"
  501. b17.Scale = Vector3.new(1, 1, 0.400000006)
  502. p18 = Instance.new("WedgePart", m)
  503. p18.BrickColor = BrickColor.new("Dark stone grey")
  504. p18.Name = "BladePart1"
  505. p18.Material = Enum.Material.Concrete
  506. p18.Name = "Wedge"
  507. p18.FormFactor = Enum.FormFactor.Symmetric
  508. p18.Size = Vector3.new(1, 4, 2)
  509. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  510. p18.CanCollide = false
  511. p18.Locked = true
  512. p18.BottomSurface = Enum.SurfaceType.Smooth
  513. p18.TopSurface = Enum.SurfaceType.Smooth
  514. b18 = Instance.new("SpecialMesh", p18)
  515. b18.MeshType = Enum.MeshType.Wedge
  516. b18.Name = "Mesh"
  517. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  518. p19 = Instance.new("WedgePart", m)
  519. p19.BrickColor = BrickColor.new("Dark stone grey")
  520. p19.Name = "BladePart2"
  521. p19.Material = Enum.Material.Concrete
  522. p19.Name = "Wedge"
  523. p19.FormFactor = Enum.FormFactor.Symmetric
  524. p19.Size = Vector3.new(1, 4, 2)
  525. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  526. p19.CanCollide = false
  527. p19.Locked = true
  528. p19.BottomSurface = Enum.SurfaceType.Smooth
  529. p19.TopSurface = Enum.SurfaceType.Smooth
  530. b19 = Instance.new("SpecialMesh", p19)
  531. b19.MeshType = Enum.MeshType.Wedge
  532. b19.Name = "Mesh"
  533. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  534. p20 = Instance.new("Part", m)
  535. p20.BrickColor = BrickColor.new("Really black")
  536. p20.FormFactor = Enum.FormFactor.Custom
  537. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  538. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  539. p20.CanCollide = false
  540. p20.Locked = true
  541. p20.Elasticity = 0
  542. p20.BottomSurface = Enum.SurfaceType.Smooth
  543. p20.TopSurface = Enum.SurfaceType.Smooth
  544. b20 = Instance.new("BlockMesh", p20)
  545. b20.Name = "Mesh"
  546. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  547. p21 = Instance.new("Part", m)
  548. p21.BrickColor = BrickColor.new("Bright blue")
  549. p21.FormFactor = Enum.FormFactor.Custom
  550. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  551. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  552. p21.CanCollide = false
  553. p21.Locked = true
  554. p21.Elasticity = 0
  555. p21.BottomSurface = Enum.SurfaceType.Smooth
  556. p21.TopSurface = Enum.SurfaceType.Smooth
  557. b21 = Instance.new("SpecialMesh", p21)
  558. b21.MeshType = Enum.MeshType.Wedge
  559. b21.Name = "Mesh"
  560. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  561. w1 = Instance.new("Weld", p1)
  562. w1.Name = "Part_Weld"
  563. w1.Part0 = p1
  564. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  565. w1.Part1 = p2
  566. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  567. w2 = Instance.new("Weld", p2)
  568. w2.Name = "Part_Weld"
  569. w2.Part0 = p2
  570. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  571. w2.Part1 = p3
  572. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  573. w3 = Instance.new("Weld", p3)
  574. w3.Name = "Part_Weld"
  575. w3.Part0 = p3
  576. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  577. w3.Part1 = p4
  578. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  579. w4 = Instance.new("Weld", p4)
  580. w4.Name = "Part_Weld"
  581. w4.Part0 = p4
  582. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  583. w4.Part1 = p5
  584. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  585. w5 = Instance.new("Weld", p5)
  586. w5.Name = "Part_Weld"
  587. w5.Part0 = p5
  588. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  589. w5.Part1 = p6
  590. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  591. w6 = Instance.new("Weld", p6)
  592. w6.Name = "Part_Weld"
  593. w6.Part0 = p6
  594. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  595. w6.Part1 = p7
  596. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  597. w7 = Instance.new("Weld", p7)
  598. w7.Name = "Part_Weld"
  599. w7.Part0 = p7
  600. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  601. w7.Part1 = p8
  602. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  603. w8 = Instance.new("Weld", p8)
  604. w8.Name = "Part_Weld"
  605. w8.Part0 = p8
  606. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  607. w8.Part1 = p9
  608. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  609. w9 = Instance.new("Weld", p9)
  610. w9.Name = "Part_Weld"
  611. w9.Part0 = p9
  612. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  613. w9.Part1 = p10
  614. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  615. w10 = Instance.new("Weld", p10)
  616. w10.Name = "Part_Weld"
  617. w10.Part0 = p10
  618. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  619. w10.Part1 = p11
  620. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  621. w11 = Instance.new("Weld", p11)
  622. w11.Name = "Part_Weld"
  623. w11.Part0 = p11
  624. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  625. w11.Part1 = p12
  626. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  627. w12 = Instance.new("Weld", p12)
  628. w12.Name = "Part_Weld"
  629. w12.Part0 = p12
  630. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  631. w12.Part1 = p13
  632. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  633. w13 = Instance.new("Weld", p13)
  634. w13.Name = "Part_Weld"
  635. w13.Part0 = p13
  636. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  637. w13.Part1 = p14
  638. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  639. w14 = Instance.new("Weld", p14)
  640. w14.Name = "Part_Weld"
  641. w14.Part0 = p14
  642. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  643. w14.Part1 = p15
  644. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  645. w15 = Instance.new("Weld", p15)
  646. w15.Name = "Part_Weld"
  647. w15.Part0 = p15
  648. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  649. w15.Part1 = p16
  650. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  651. w16 = Instance.new("Weld", p16)
  652. w16.Name = "Part_Weld"
  653. w16.Part0 = p16
  654. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  655. w16.Part1 = p17
  656. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  657. w17 = Instance.new("Weld", p17)
  658. w17.Name = "Wedge_Weld"
  659. w17.Part0 = p17
  660. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  661. w17.Part1 = p18
  662. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  663. w18 = Instance.new("Weld", p18)
  664. w18.Name = "Wedge_Weld"
  665. w18.Part0 = p18
  666. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  667. w18.Part1 = p19
  668. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  669. w19 = Instance.new("Weld", p19)
  670. w19.Name = "Part_Weld"
  671. w19.Part0 = p19
  672. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  673. w19.Part1 = p20
  674. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  675. w20 = Instance.new("Weld", p20)
  676. w20.Name = "Part_Weld"
  677. w20.Part0 = p20
  678. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  679. w20.Part1 = p21
  680. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  681. m.Parent = char
  682. m:MakeJoints()
  683. ----------------------------------------------------
  684. local cor = Instance.new("Part", char.Absolution)
  685. cor.Name = "Thingy"
  686. cor.Locked = true
  687. cor.BottomSurface = 0
  688. cor.CanCollide = false
  689. cor.Size = Vector3.new(1, 13, 1)
  690. cor.Transparency = 1
  691. cor.TopSurface = 0
  692. corw = Instance.new("Weld", cor)
  693. corw.Part0 = rarm
  694. corw.Part1 = cor
  695. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  696. corw.C1 = CFrame.new(0, 0, 0)
  697. weld1 = Instance.new("Weld", char.Absolution)
  698. weld1.Part0 = cor
  699. weld1.Part1 = p6
  700. weld1.C0 = CFrame.new(0, 0, 0)
  701. ----------------------------------------------------
  702. hitb = Instance.new("Part", char.Absolution)
  703. hitb.Name = "Thingy2"
  704. hitb.Locked = true
  705. hitb.BottomSurface = 0
  706. hitb.CanCollide = false
  707. hitb.Size = Vector3.new(0, 8, 6)
  708. hitb.Transparency = 1
  709. hitb.TopSurface = 0
  710. weld2 = Instance.new("Weld", char.Absolution)
  711. weld2.Part0 = hitb
  712. weld2.Part1 = p12
  713. weld2.C0 = CFrame.new(0, .6, 1)
  714. ----------------------------------------------------
  715. local m = Instance.new("Model")
  716. m.Name = "Claw"
  717. p1 = Instance.new("Part", m)
  718. p1.BrickColor = BrickColor.new("Really black")
  719. p1.FormFactor = Enum.FormFactor.Custom
  720. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  721. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  722. p1.CanCollide = false
  723. p1.Locked = true
  724. p1.BottomSurface = Enum.SurfaceType.Smooth
  725. p1.TopSurface = Enum.SurfaceType.Smooth
  726. b1 = Instance.new("BlockMesh", p1)
  727. b1.Name = "Mesh"
  728. p2 = Instance.new("WedgePart", m)
  729. p2.BrickColor = BrickColor.new("Really black")
  730. p2.Name = "Wedge"
  731. p2.FormFactor = Enum.FormFactor.Custom
  732. p2.Size = Vector3.new(3, 1, 0.5)
  733. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  734. p2.CanCollide = false
  735. p2.Locked = true
  736. p2.BottomSurface = Enum.SurfaceType.Smooth
  737. p2.TopSurface = Enum.SurfaceType.Smooth
  738. p3 = Instance.new("Part", m)
  739. p3.BrickColor = BrickColor.new("Really black")
  740. p3.FormFactor = Enum.FormFactor.Custom
  741. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  742. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  743. p3.CanCollide = false
  744. p3.Locked = true
  745. p3.BottomSurface = Enum.SurfaceType.Smooth
  746. p3.TopSurface = Enum.SurfaceType.Smooth
  747. b2 = Instance.new("BlockMesh", p3)
  748. b2.Name = "Mesh"
  749. p4 = Instance.new("WedgePart", m)
  750. p4.BrickColor = BrickColor.new("Really black")
  751. p4.Name = "Wedge"
  752. p4.FormFactor = Enum.FormFactor.Custom
  753. p4.Size = Vector3.new(3, 1, 0.5)
  754. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  755. p4.CanCollide = false
  756. p4.Locked = true
  757. p4.BottomSurface = Enum.SurfaceType.Smooth
  758. p4.TopSurface = Enum.SurfaceType.Smooth
  759. p5 = Instance.new("Part", m)
  760. p5.BrickColor = BrickColor.new("Really black")
  761. p5.FormFactor = Enum.FormFactor.Custom
  762. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  763. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  764. p5.CanCollide = false
  765. p5.Locked = true
  766. p5.BottomSurface = Enum.SurfaceType.Smooth
  767. p5.TopSurface = Enum.SurfaceType.Smooth
  768. b3 = Instance.new("BlockMesh", p5)
  769. b3.Name = "Mesh"
  770. p6 = Instance.new("Part", m)
  771. p6.BrickColor = BrickColor.new("Really black")
  772. p6.FormFactor = Enum.FormFactor.Custom
  773. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  774. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  775. p6.CanCollide = false
  776. p6.Locked = true
  777. p6.BottomSurface = Enum.SurfaceType.Smooth
  778. p6.TopSurface = Enum.SurfaceType.Smooth
  779. b4 = Instance.new("BlockMesh", p6)
  780. b4.Name = "Mesh"
  781. p7 = Instance.new("Part", m)
  782. p7.BrickColor = BrickColor.new("Really black")
  783. p7.FormFactor = Enum.FormFactor.Custom
  784. p7.Size = Vector3.new(3, 1, 1.20000005)
  785. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  786. p7.CanCollide = false
  787. p7.Locked = true
  788. p7.BottomSurface = Enum.SurfaceType.Smooth
  789. p7.TopSurface = Enum.SurfaceType.Smooth
  790. b5 = Instance.new("BlockMesh", p7)
  791. b5.Name = "Mesh"
  792. p8 = Instance.new("Part", m)
  793. p8.BrickColor = BrickColor.new("Bright blue")
  794. p8.FormFactor = Enum.FormFactor.Symmetric
  795. p8.Size = Vector3.new(1, 1, 1)
  796. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  797. p8.CanCollide = false
  798. p8.Locked = true
  799. b6 = Instance.new("SpecialMesh", p8)
  800. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  801. b6.TextureId = ""
  802. b6.MeshType = Enum.MeshType.FileMesh
  803. b6.Name = "Mesh"
  804. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  805. p9 = Instance.new("Part", m)
  806. p9.BrickColor = BrickColor.new("Really black")
  807. p9.FormFactor = Enum.FormFactor.Custom
  808. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  809. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  810. p9.CanCollide = false
  811. p9.Locked = true
  812. p9.BottomSurface = Enum.SurfaceType.Smooth
  813. p9.TopSurface = Enum.SurfaceType.Smooth
  814. b7 = Instance.new("BlockMesh", p9)
  815. b7.Name = "Mesh"
  816. p10 = Instance.new("Part", m)
  817. p10.BrickColor = BrickColor.new("Bright blue")
  818. p10.FormFactor = Enum.FormFactor.Symmetric
  819. p10.Size = Vector3.new(1, 1, 1)
  820. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  821. p10.CanCollide = false
  822. p10.Locked = true
  823. b8 = Instance.new("SpecialMesh", p10)
  824. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  825. b8.TextureId = ""
  826. b8.MeshType = Enum.MeshType.FileMesh
  827. b8.Name = "Mesh"
  828. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  829. p11 = Instance.new("Part", m)
  830. p11.BrickColor = BrickColor.new("Really black")
  831. p11.FormFactor = Enum.FormFactor.Custom
  832. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  833. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  834. p11.CanCollide = false
  835. p11.Locked = true
  836. p11.BottomSurface = Enum.SurfaceType.Smooth
  837. p11.TopSurface = Enum.SurfaceType.Smooth
  838. b9 = Instance.new("BlockMesh", p11)
  839. b9.Name = "Mesh"
  840. p12 = Instance.new("Part", m)
  841. p12.BrickColor = BrickColor.new("Really black")
  842. p12.FormFactor = Enum.FormFactor.Custom
  843. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  844. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  845. p12.CanCollide = false
  846. p12.Locked = true
  847. p12.BottomSurface = Enum.SurfaceType.Smooth
  848. p12.TopSurface = Enum.SurfaceType.Smooth
  849. b10 = Instance.new("BlockMesh", p12)
  850. b10.Name = "Mesh"
  851. p13 = Instance.new("Part", m)
  852. p13.BrickColor = BrickColor.new("Really black")
  853. p13.FormFactor = Enum.FormFactor.Custom
  854. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  855. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  856. p13.CanCollide = false
  857. p13.Locked = true
  858. p13.BottomSurface = Enum.SurfaceType.Smooth
  859. p13.TopSurface = Enum.SurfaceType.Smooth
  860. b11 = Instance.new("BlockMesh", p13)
  861. b11.Name = "Mesh"
  862. p14 = Instance.new("Part", m)
  863. p14.BrickColor = BrickColor.new("Bright blue")
  864. p14.FormFactor = Enum.FormFactor.Symmetric
  865. p14.Size = Vector3.new(1, 1, 1)
  866. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  867. p14.CanCollide = false
  868. p14.Locked = true
  869. b12 = Instance.new("SpecialMesh", p14)
  870. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  871. b12.TextureId = ""
  872. b12.MeshType = Enum.MeshType.FileMesh
  873. b12.Name = "Mesh"
  874. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  875. p15 = Instance.new("Part", m)
  876. p15.BrickColor = BrickColor.new("Medium stone grey")
  877. p15.Transparency = 1
  878. p15.Name = "ArmPart"
  879. p15.FormFactor = Enum.FormFactor.Custom
  880. p15.Size = Vector3.new(2, 1, 1)
  881. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  882. p15.CanCollide = false
  883. p15.Locked = true
  884. p15.BottomSurface = Enum.SurfaceType.Smooth
  885. p15.TopSurface = Enum.SurfaceType.Smooth
  886. b13 = Instance.new("BlockMesh", p15)
  887. b13.Name = "Mesh"
  888. p16 = Instance.new("Part", m)
  889. p16.BrickColor = BrickColor.new("Really black")
  890. p16.FormFactor = Enum.FormFactor.Custom
  891. p16.Size = Vector3.new(3, 1, 2.4000001)
  892. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  893. p16.CanCollide = false
  894. p16.Locked = true
  895. p16.BottomSurface = Enum.SurfaceType.Smooth
  896. p16.TopSurface = Enum.SurfaceType.Smooth
  897. b14 = Instance.new("BlockMesh", p16)
  898. b14.Name = "Mesh"
  899. p17 = Instance.new("Part", m)
  900. p17.BrickColor = BrickColor.new("Really black")
  901. p17.FormFactor = Enum.FormFactor.Custom
  902. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  903. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  904. p17.CanCollide = false
  905. p17.Locked = true
  906. p17.BottomSurface = Enum.SurfaceType.Smooth
  907. p17.TopSurface = Enum.SurfaceType.Smooth
  908. b15 = Instance.new("BlockMesh", p17)
  909. b15.Name = "Mesh"
  910. p18 = Instance.new("Part", m)
  911. p18.BrickColor = BrickColor.new("Bright blue")
  912. p18.FormFactor = Enum.FormFactor.Symmetric
  913. p18.Size = Vector3.new(1, 1, 1)
  914. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  915. p18.CanCollide = false
  916. p18.Locked = true
  917. b16 = Instance.new("SpecialMesh", p18)
  918. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  919. b16.TextureId = ""
  920. b16.MeshType = Enum.MeshType.FileMesh
  921. b16.Name = "Mesh"
  922. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  923. p19 = Instance.new("Part", m)
  924. p19.BrickColor = BrickColor.new("Bright blue")
  925. p19.FormFactor = Enum.FormFactor.Symmetric
  926. p19.Size = Vector3.new(1, 1, 1)
  927. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  928. p19.CanCollide = false
  929. p19.Locked = true
  930. b17 = Instance.new("SpecialMesh", p19)
  931. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  932. b17.TextureId = ""
  933. b17.MeshType = Enum.MeshType.FileMesh
  934. b17.Name = "Mesh"
  935. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  936. p20 = Instance.new("Part", m)
  937. p20.BrickColor = BrickColor.new("Really black")
  938. p20.FormFactor = Enum.FormFactor.Custom
  939. p20.Size = Vector3.new(3, 1, 2.4000001)
  940. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  941. p20.CanCollide = false
  942. p20.Locked = true
  943. p20.BottomSurface = Enum.SurfaceType.Smooth
  944. p20.TopSurface = Enum.SurfaceType.Smooth
  945. b18 = Instance.new("BlockMesh", p20)
  946. b18.Name = "Mesh"
  947. p21 = Instance.new("Part", m)
  948. p21.BrickColor = BrickColor.new("Really black")
  949. p21.FormFactor = Enum.FormFactor.Custom
  950. p21.Size = Vector3.new(3, 1, 1.19999993)
  951. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  952. p21.CanCollide = false
  953. p21.Locked = true
  954. p21.BottomSurface = Enum.SurfaceType.Smooth
  955. p21.TopSurface = Enum.SurfaceType.Smooth
  956. b19 = Instance.new("BlockMesh", p21)
  957. b19.Name = "Mesh"
  958. p22 = Instance.new("WedgePart", m)
  959. p22.BrickColor = BrickColor.new("Really black")
  960. p22.Name = "Wedge"
  961. p22.FormFactor = Enum.FormFactor.Custom
  962. p22.Size = Vector3.new(3, 1, 0.5)
  963. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  964. p22.CanCollide = false
  965. p22.Locked = true
  966. p22.BottomSurface = Enum.SurfaceType.Smooth
  967. p22.TopSurface = Enum.SurfaceType.Smooth
  968. p23 = Instance.new("Part", m)
  969. p23.BrickColor = BrickColor.new("Really black")
  970. p23.FormFactor = Enum.FormFactor.Custom
  971. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  972. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  973. p23.CanCollide = false
  974. p23.Locked = true
  975. p23.BottomSurface = Enum.SurfaceType.Smooth
  976. p23.TopSurface = Enum.SurfaceType.Smooth
  977. b20 = Instance.new("BlockMesh", p23)
  978. b20.Name = "Mesh"
  979. p24 = Instance.new("WedgePart", m)
  980. p24.BrickColor = BrickColor.new("Really black")
  981. p24.Name = "Wedge"
  982. p24.FormFactor = Enum.FormFactor.Custom
  983. p24.Size = Vector3.new(3, 1, 0.5)
  984. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  985. p24.CanCollide = false
  986. p24.Locked = true
  987. p24.BottomSurface = Enum.SurfaceType.Smooth
  988. p24.TopSurface = Enum.SurfaceType.Smooth
  989. p25 = Instance.new("Part", m)
  990. p25.BrickColor = BrickColor.new("Bright blue")
  991. p25.FormFactor = Enum.FormFactor.Symmetric
  992. p25.Size = Vector3.new(1, 1, 1)
  993. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  994. p25.CanCollide = false
  995. p25.Locked = true
  996. p25.BottomSurface = Enum.SurfaceType.Smooth
  997. p25.TopSurface = Enum.SurfaceType.Smooth
  998. b21 = Instance.new("SpecialMesh", p25)
  999. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1000. b21.TextureId = ""
  1001. b21.MeshType = Enum.MeshType.FileMesh
  1002. b21.Name = "Mesh"
  1003. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1004. p26 = Instance.new("Part", m)
  1005. p26.BrickColor = BrickColor.new("Really black")
  1006. p26.FormFactor = Enum.FormFactor.Symmetric
  1007. p26.Size = Vector3.new(1, 1, 1)
  1008. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  1009. p26.CanCollide = false
  1010. p26.Locked = true
  1011. p26.BottomSurface = Enum.SurfaceType.Smooth
  1012. p26.TopSurface = Enum.SurfaceType.Smooth
  1013. b22 = Instance.new("SpecialMesh", p26)
  1014. b22.MeshType = Enum.MeshType.Brick
  1015. b22.Name = "Mesh"
  1016. w1 = Instance.new("Weld", p1)
  1017. w1.Name = "Wedge_Weld"
  1018. w1.Part0 = p1
  1019. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  1020. w1.Part1 = p2
  1021. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  1022. w2 = Instance.new("Weld", p2)
  1023. w2.Name = "Part_Weld"
  1024. w2.Part0 = p2
  1025. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  1026. w2.Part1 = p3
  1027. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  1028. w3 = Instance.new("Weld", p3)
  1029. w3.Name = "Wedge_Weld"
  1030. w3.Part0 = p3
  1031. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  1032. w3.Part1 = p4
  1033. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  1034. w4 = Instance.new("Weld", p4)
  1035. w4.Name = "Part_Weld"
  1036. w4.Part0 = p4
  1037. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  1038. w4.Part1 = p5
  1039. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  1040. w5 = Instance.new("Weld", p5)
  1041. w5.Name = "Part_Weld"
  1042. w5.Part0 = p5
  1043. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  1044. w5.Part1 = p6
  1045. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  1046. w6 = Instance.new("Weld", p6)
  1047. w6.Name = "Part_Weld"
  1048. w6.Part0 = p6
  1049. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  1050. w6.Part1 = p7
  1051. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  1052. w7 = Instance.new("Weld", p7)
  1053. w7.Name = "Part_Weld"
  1054. w7.Part0 = p7
  1055. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  1056. w7.Part1 = p8
  1057. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  1058. w8 = Instance.new("Weld", p8)
  1059. w8.Name = "Part_Weld"
  1060. w8.Part0 = p8
  1061. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  1062. w8.Part1 = p9
  1063. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  1064. w9 = Instance.new("Weld", p9)
  1065. w9.Name = "Part_Weld"
  1066. w9.Part0 = p9
  1067. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  1068. w9.Part1 = p10
  1069. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  1070. w10 = Instance.new("Weld", p10)
  1071. w10.Name = "Part_Weld"
  1072. w10.Part0 = p10
  1073. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  1074. w10.Part1 = p11
  1075. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  1076. w11 = Instance.new("Weld", p11)
  1077. w11.Name = "Part_Weld"
  1078. w11.Part0 = p11
  1079. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  1080. w11.Part1 = p12
  1081. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  1082. w12 = Instance.new("Weld", p12)
  1083. w12.Name = "Part_Weld"
  1084. w12.Part0 = p12
  1085. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  1086. w12.Part1 = p13
  1087. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  1088. w13 = Instance.new("Weld", p13)
  1089. w13.Name = "Part_Weld"
  1090. w13.Part0 = p13
  1091. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  1092. w13.Part1 = p14
  1093. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  1094. w14 = Instance.new("Weld", p14)
  1095. w14.Name = "ArmPart_Weld"
  1096. w14.Part0 = p14
  1097. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  1098. w14.Part1 = p15
  1099. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1100. w15 = Instance.new("Weld", p15)
  1101. w15.Name = "Part_Weld"
  1102. w15.Part0 = p15
  1103. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  1104. w15.Part1 = p16
  1105. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1106. w16 = Instance.new("Weld", p16)
  1107. w16.Name = "Part_Weld"
  1108. w16.Part0 = p16
  1109. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  1110. w16.Part1 = p17
  1111. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  1112. w17 = Instance.new("Weld", p17)
  1113. w17.Name = "Part_Weld"
  1114. w17.Part0 = p17
  1115. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  1116. w17.Part1 = p18
  1117. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  1118. w18 = Instance.new("Weld", p18)
  1119. w18.Name = "Part_Weld"
  1120. w18.Part0 = p18
  1121. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  1122. w18.Part1 = p19
  1123. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  1124. w19 = Instance.new("Weld", p19)
  1125. w19.Name = "Part_Weld"
  1126. w19.Part0 = p19
  1127. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  1128. w19.Part1 = p20
  1129. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1130. w20 = Instance.new("Weld", p20)
  1131. w20.Name = "Part_Weld"
  1132. w20.Part0 = p20
  1133. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  1134. w20.Part1 = p21
  1135. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1136. w21 = Instance.new("Weld", p21)
  1137. w21.Name = "Wedge_Weld"
  1138. w21.Part0 = p21
  1139. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  1140. w21.Part1 = p22
  1141. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  1142. w22 = Instance.new("Weld", p22)
  1143. w22.Name = "Part_Weld"
  1144. w22.Part0 = p22
  1145. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  1146. w22.Part1 = p23
  1147. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  1148. w23 = Instance.new("Weld", p23)
  1149. w23.Name = "Wedge_Weld"
  1150. w23.Part0 = p23
  1151. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  1152. w23.Part1 = p24
  1153. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  1154. w24 = Instance.new("Weld", p24)
  1155. w24.Name = "Part_Weld"
  1156. w24.Part0 = p24
  1157. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  1158. w24.Part1 = p25
  1159. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  1160. w25 = Instance.new("Weld", p25)
  1161. w25.Name = "Part_Weld"
  1162. w25.Part0 = p25
  1163. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  1164. w25.Part1 = p26
  1165. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  1166. m.Parent = char
  1167. m:MakeJoints()
  1168. ----------------------------------------------------
  1169. local cor2 = Instance.new("Part", char.Claw)
  1170. cor2.Name = "Thingy"
  1171. cor2.Locked = true
  1172. cor2.BottomSurface = 0
  1173. cor2.CanCollide = false
  1174. cor2.Size = Vector3.new(2, 1, 1)
  1175. cor2.Transparency = 1
  1176. cor2.TopSurface = 0
  1177. corw2 = Instance.new("Weld", cor2)
  1178. corw2.Part0 = larm
  1179. corw2.Part1 = cor2
  1180. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1181. corw2.C1 = CFrame.new(0, 0, 0)
  1182. weld2 = Instance.new("Weld", char.Claw)
  1183. weld2.Part0 = cor2
  1184. weld2.Part1 = char.Claw.ArmPart
  1185. weld2.C0 = CFrame.new(0, 0, 0)
  1186. ----------------------------------------------------
  1187. function weld5(part0, part1, c0, c1)
  1188. weeld=Instance.new("Weld", part0)
  1189. weeld.Part0=part0
  1190. weeld.Part1=part1
  1191. weeld.C0=c0
  1192. weeld.C1=c1
  1193. return weeld
  1194. end
  1195. ----------------------------------------------------
  1196. ----------------------------------------------------
  1197. a = game.Players.LocalPlayer.Character.Absolution:GetChildren()
  1198. for i = 1,#a do
  1199. if a[i]:IsA("UnionOperation") or a[i]:IsA("Part") or a[i]:IsA("WedgePart") then
  1200. a[i].Transparency = 1
  1201. end
  1202. end
  1203. ----------------------------------------------------
  1204. ACE = game.Players.LocalPlayer.Character.Claw:GetChildren()
  1205. for i = 1,#a do
  1206. if ACE[i]:IsA("UnionOperation") or ACE[i]:IsA("Part") or ACE[i]:IsA("WedgePart") then
  1207. ACE[i].Transparency = 1
  1208. end
  1209. end
  1210. ----------------------------------------------------
  1211. function newRay(start,face,range,wat)
  1212. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1213. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1214. return rey,hit,pos
  1215. end
  1216. ----------------------------------------------------
  1217. mod5 = Instance.new("Model",char)
  1218.  
  1219. function FindNearestTorso(Position,Distance,SinglePlayer)
  1220. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1221. local List = {}
  1222. for i,v in pairs(workspace:GetChildren())do
  1223. if v:IsA("Model")then
  1224. if v:findFirstChild("Torso")then
  1225. if v ~= char then
  1226. if(v.Torso.Position -Position).magnitude <= Distance then
  1227. table.insert(List,v)
  1228. end
  1229. end
  1230. end
  1231. end
  1232. end
  1233. return List
  1234. end
  1235.  
  1236. function Landing()
  1237. part=Instance.new('Part',mod5)
  1238. part.Anchored=true
  1239. part.CanCollide=false
  1240. part.FormFactor='Custom'
  1241. part.Size=Vector3.new(.2,.2,.2)
  1242. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  1243. part.Transparency=.7
  1244. part.BrickColor=BrickColor.new('Really black')
  1245. mesh=Instance.new('SpecialMesh',part)
  1246. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1247. mesh.Scale=Vector3.new(10,5,10)
  1248.  
  1249. for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  1250. if v:FindFirstChild('Humanoid') then
  1251. v.Humanoid:TakeDamage(math.random(20,30))
  1252. v.Humanoid.PlatformStand = true
  1253. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1254. end
  1255. end
  1256.  
  1257. coroutine.resume(coroutine.create(function()
  1258. for i=0,3.8,0.05 do
  1259. wait()
  1260. part.CFrame=part.CFrame
  1261. part.Transparency=i
  1262. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  1263. end
  1264. part.Parent = nil
  1265. end))
  1266. end
  1267. ----------------------------------------------------
  1268. mod4 = Instance.new("Model",char)
  1269.  
  1270. ptez = {0.7, 0.8, 0.9, 1}
  1271.  
  1272. function FindNearestTorso(Position,Distance,SinglePlayer)
  1273. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1274. local List = {}
  1275. for i,v in pairs(workspace:GetChildren())do
  1276. if v:IsA("Model")then
  1277. if v:findFirstChild("Torso")then
  1278. if v ~= char then
  1279. if(v.Torso.Position -Position).magnitude <= Distance then
  1280. table.insert(List,v)
  1281. end
  1282. end
  1283. end
  1284. end
  1285. end
  1286. return List
  1287. end
  1288.  
  1289. function GroundPound()
  1290. part=Instance.new('Part',mod4)
  1291. part.Anchored=true
  1292. part.CanCollide=false
  1293. part.FormFactor='Custom'
  1294. part.Size=Vector3.new(.2,.2,.2)
  1295. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1296. part.Transparency=.7
  1297. part.BrickColor=BrickColor.new('Really black')
  1298. mesh=Instance.new('SpecialMesh',part)
  1299. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1300. mesh.Scale=Vector3.new(3,3,3)
  1301. part2=Instance.new('Part',mod4)
  1302. part2.Anchored=true
  1303. part2.CanCollide=false
  1304. part2.FormFactor='Custom'
  1305. part2.Size=Vector3.new(.2,.2,.2)
  1306. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  1307. part2.Transparency=.7
  1308. part2.BrickColor=BrickColor.new('Really red')
  1309. mesh2=Instance.new('SpecialMesh',part2)
  1310. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  1311. mesh2.Scale=Vector3.new(3,1.5,3)
  1312. x = Instance.new("Sound",char)
  1313. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1314. x.Pitch = ptez[math.random(1,#ptez)]
  1315. x.Volume = 1
  1316. wait(0.001)
  1317. x:Play()
  1318. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  1319. if v:FindFirstChild('Humanoid') then
  1320. v.Humanoid:TakeDamage(math.random(8,15))
  1321. end
  1322. end
  1323. coroutine.resume(coroutine.create(function()
  1324. for i=0,0.62,0.13 do
  1325. wait()
  1326. part.CFrame=part.CFrame
  1327. part.Transparency=i
  1328. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  1329. part2.CFrame=part2.CFrame
  1330. part2.Transparency=i
  1331. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  1332. end
  1333. part.Parent=nil
  1334. part2.Parent=nil
  1335. x:Destroy()
  1336. end))
  1337. end
  1338. ----------------------------------------------------
  1339. mod=Instance.new('Model',char)
  1340.  
  1341. function charge()
  1342. hed.Velocity=hed.CFrame.lookVector*200
  1343. part=Instance.new('Part',mod)
  1344. part.Anchored=true
  1345. part.CanCollide=false
  1346. part.FormFactor='Custom'
  1347. part.Size=Vector3.new(.2,.2,.2)
  1348. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  1349. part.Transparency=.7
  1350. part.BrickColor=BrickColor.new('Black')
  1351. mesh=Instance.new('SpecialMesh',part)
  1352. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1353. mesh.Scale=Vector3.new(10,5,10)
  1354. part2=part:clone()
  1355. part2.Parent=mod
  1356. part2.BrickColor=BrickColor.new('Bright red')
  1357. mesh2=mesh:clone()
  1358. mesh2.Parent=part2
  1359. mesh2.Scale=Vector3.new(20,10,20)
  1360. part3=part2:clone()
  1361. part3.Parent = mod
  1362. part3.BrickColor=BrickColor.new('Really black')
  1363. mesh3=mesh2:clone()
  1364. mesh2.Parent=part3
  1365. mesh3.Scale=Vector3.new(30,15,30)
  1366. coroutine.resume(coroutine.create(function()
  1367. for i=0,1,0.1 do
  1368. wait()
  1369. part.CFrame=part.CFrame
  1370. part.Transparency=i
  1371. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  1372. part2.CFrame=part2.CFrame
  1373. part2.Transparency=i
  1374. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1375. part3.CFrame=part3.CFrame
  1376. part3.Transparency=i
  1377. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  1378. end
  1379. part.Parent=nil
  1380. part2.Parent=nil
  1381. part3.Parent = nil
  1382. end))
  1383. end
  1384. ----------------------------------------------------
  1385. function FindNearestTorso(Position,Distance,SinglePlayer)
  1386. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1387. local List = {}
  1388. for i,v in pairs(workspace:GetChildren())do
  1389. if v:IsA("Model")then
  1390. if v:findFirstChild("Torso")then
  1391. if v ~= char then
  1392. if(v.Torso.Position -Position).magnitude <= Distance then
  1393. table.insert(List,v)
  1394. end
  1395. end
  1396. end
  1397. end
  1398. end
  1399. return List
  1400. end
  1401.  
  1402. mod3 = Instance.new("Model",rleg)
  1403.  
  1404. function Stomp()
  1405. part=Instance.new('Part',mod3)
  1406. part.Anchored=true
  1407. part.CanCollide=false
  1408. part.FormFactor='Custom'
  1409. part.Size=Vector3.new(.2,.2,.2)
  1410. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1411. part.Transparency=.7
  1412. part.BrickColor=BrickColor.new('Bright green')
  1413. mesh=Instance.new('SpecialMesh',part)
  1414. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1415. mesh.Scale=Vector3.new(25,25,25)
  1416. part2=part:clone()
  1417. part2.Parent=mod3
  1418. part2.BrickColor=BrickColor.new('Bright green')
  1419. mesh2=mesh:clone()
  1420. mesh2.Parent=part2
  1421. mesh2.Scale=Vector3.new(15,15,15)
  1422. part3=part:clone()
  1423. part3.Parent=mod3
  1424. part3.TopSurface=0
  1425. part3.BottomSurface=0
  1426. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1427. mesh3=Instance.new('SpecialMesh',part3)
  1428. mesh3.MeshType = 3
  1429. mesh3.Scale=Vector3.new(12,12,12)
  1430. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  1431. if v:FindFirstChild('Humanoid') then
  1432. v.Humanoid:TakeDamage(math.random(20,60))
  1433. v.Humanoid.PlatformStand = true
  1434. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1435. end
  1436. end
  1437. coroutine.resume(coroutine.create(function()
  1438. for i=0,3.8,0.05 do
  1439. wait()
  1440. part.CFrame=part.CFrame
  1441. part.Transparency=i
  1442. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  1443. part2.CFrame=part2.CFrame
  1444. part2.Transparency=i
  1445. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1446. part3.CFrame=part3.CFrame
  1447. part3.Transparency=i
  1448. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  1449. end
  1450. end))
  1451. end
  1452. ----------------------------------------------------
  1453.  
  1454. local acos = math.acos
  1455. local sqrt = math.sqrt
  1456. local Vec3 = Vector3.new
  1457. local fromAxisAngle = CFrame.fromAxisAngle
  1458.  
  1459. local function toAxisAngle(CFr)
  1460. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1461. local Angle = math.acos((R00+R11+R22-1)/2)
  1462. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1463. A = A == 0 and 0.00001 or A
  1464. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1465. B = B == 0 and 0.00001 or B
  1466. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1467. C = C == 0 and 0.00001 or C
  1468. local x = (R21-R12)/sqrt(A)
  1469. local y = (R02-R20)/sqrt(B)
  1470. local z = (R10-R01)/sqrt(C)
  1471. return Vec3(x,y,z),Angle
  1472. end
  1473.  
  1474. function ApplyTrig(Num,Func)
  1475. local Min,Max = Func(0),Func(1)
  1476. local i = Func(Num)
  1477. return (i-Min)/(Max-Min)
  1478. --[[if Func == "sin" then
  1479. return (math.sin((1-Num)*math.pi)+1)/2
  1480. elseif Func == "cos" then
  1481. return (math.cos((1-Num)*math.pi)+1)/2
  1482. end]]
  1483. end
  1484.  
  1485. function LerpCFrame(CFrame1,CFrame2,Num)
  1486. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1487. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1488. end
  1489.  
  1490. function Crater(Torso,Radius)
  1491. Spawn(function()
  1492. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1493. local Ignore = {}
  1494. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1495. if v.Character ~= nil then
  1496. Ignore[#Ignore+1] = v.Character
  1497. end
  1498. end
  1499. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1500. if Hit == nil then return end
  1501. local Parts = {}
  1502. for i = 1,360,10 do
  1503. local P = Instance.new("Part",Torso.Parent)
  1504. P.Anchored = true
  1505. P.FormFactor = "Custom"
  1506. P.BrickColor = Hit.BrickColor
  1507. P.Material = Hit.Material
  1508. P.TopSurface = "Smooth"
  1509. P.BottomSurface = "Smooth"
  1510. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1511. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  1512. Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
  1513. if math.random(0,5) == 0 then -- rubble
  1514. local P = Instance.new("Part",Torso.Parent)
  1515. P.Anchored = true
  1516. P.FormFactor = "Custom"
  1517. P.BrickColor = Hit.BrickColor
  1518. P.Material = Hit.Material
  1519. P.TopSurface = "Smooth"
  1520. P.BottomSurface = "Smooth"
  1521. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1522. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  1523. Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
  1524. end
  1525. end
  1526. for i = 0,1,0.05 do
  1527. for i2,v in pairs(Parts) do
  1528. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1529. end
  1530. wait(0.02)
  1531. end
  1532. for i,v in pairs(Parts) do
  1533. if v[1].Size.X > 2.1 then
  1534. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1535. end
  1536. v[1].Anchored = false
  1537. end
  1538. for i = 0,1,0.05 do
  1539. for i2,v in pairs(Parts) do
  1540. v[1].Transparency = i
  1541. if i == 1 then
  1542. v[1]:Destroy()
  1543. elseif i >= 0.25 then
  1544. v[1].CanCollide = false
  1545. end
  1546. end
  1547. wait(0.02)
  1548. end
  1549. Parts = nil
  1550. end)
  1551. end
  1552.  
  1553. ----------------------------------------------------
  1554. mouse.KeyDown:connect(function(key)
  1555. if key == "r" then
  1556. larm.BrickColor = BrickColor.new("Bright red")
  1557. rarm.BrickColor = BrickColor.new("Bright red")
  1558. if Debounces.CanAttack == true then
  1559. Debounces.CanAttack = false
  1560. Debounces.on = true
  1561. Debounces.NoIdl = true
  1562. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1563. hit = ht.Parent
  1564. if ht and hit:IsA("Model") then
  1565. if hit:FindFirstChild("Humanoid") then
  1566. if hit.Name ~= p.Name then
  1567. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1568. Debounces.Slashed = true]]--
  1569. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  1570. wait(1)
  1571. --Debounces.Slashed = false
  1572. --end
  1573. end
  1574. end
  1575. elseif ht and hit:IsA("Hat") then
  1576. if hit.Parent.Name ~= p.Name then
  1577. if hit.Parent:FindFirstChild("Humanoid") then
  1578. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1579. Debounces.Slashed = true]]--
  1580. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  1581. wait(1)
  1582. --Debounces.Slashed = false
  1583. end
  1584. end
  1585. end
  1586. end)
  1587. q = Instance.new("Sound",hed)
  1588. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1589. q.Pitch = 0.85
  1590. q.Looped = false
  1591. q1 = Instance.new("Sound",hed)
  1592. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1593. q1.Pitch = 0.85
  1594. q1.Looped = false
  1595. q:Play()
  1596. q1:Play()
  1597. for i = 1,20 do
  1598. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1599. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1600. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1601. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1602. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1603. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1604. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
  1605. if Debounces.on == false then break end
  1606. wait()
  1607. end
  1608. n = Instance.new("Sound",hed)
  1609. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1610. n.Pitch = 0.94
  1611. n.Looped = false
  1612. n1 = Instance.new("Sound",hed)
  1613. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1614. n1.Pitch = 0.94
  1615. n1.Looped = false
  1616. n:Play()
  1617. n1:Play()
  1618. b = Instance.new("Sound",hed)
  1619. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1620. b.Pitch = 0.94
  1621. b.Looped = false
  1622. b1 = Instance.new("Sound",hed)
  1623. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1624. b1.Pitch = 0.94
  1625. b1.Looped = false
  1626. b:Play()
  1627. b1:Play()
  1628. for i = 1,26 do
  1629. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
  1630. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
  1631. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  1632. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  1633. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  1634. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  1635. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
  1636. if Debounces.on == false then break end
  1637. wait()
  1638. end
  1639. wait(.5)
  1640. to:disconnect()
  1641. q:Destroy()
  1642. q1:Destroy()
  1643. n:Destroy()
  1644. n1:Destroy()
  1645. larm.BrickColor = BrickColor.new("Really black")
  1646. rarm.BrickColor = BrickColor.new("Really black")
  1647. if Debounces.CanAttack == false then
  1648. Debounces.CanAttack = true
  1649. Debounces.on = false
  1650. Debounces.NoIdl = false
  1651. end
  1652. end
  1653. end
  1654. end)
  1655. ----------------------------------------------------
  1656. mouse.KeyDown:connect(function(key)
  1657. if key == "q" then
  1658. larm.BrickColor = BrickColor.new("Bright red")
  1659. rarm.BrickColor = BrickColor.new("Bright red")
  1660. if Debounces.CanAttack == true then
  1661. Debounces.CanAttack = false
  1662. Debounces.on = true
  1663. Debounces.NoIdl = true
  1664. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1665. hit = ht.Parent
  1666. if ht and hit:IsA("Model") then
  1667. if hit:FindFirstChild("Humanoid") then
  1668. if hit.Name ~= p.Name then
  1669. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1670. Debounces.Slashed = true]]--
  1671. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  1672. wait(1)
  1673. --Debounces.Slashed = false
  1674. --end
  1675. end
  1676. end
  1677. elseif ht and hit:IsA("Hat") then
  1678. if hit.Parent.Name ~= p.Name then
  1679. if hit.Parent:FindFirstChild("Humanoid") then
  1680. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1681. Debounces.Slashed = true]]--
  1682. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  1683. wait(1)
  1684. --Debounces.Slashed = false
  1685. end
  1686. end
  1687. end
  1688. end)
  1689. for i = 1, 20 do
  1690. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  1691. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  1692. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  1693. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  1694. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1695. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1696. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1697. if Debounces.on == false then break end
  1698. wait()
  1699. end
  1700. z = Instance.new("Sound",hed)
  1701. z.SoundId = "rbxassetid://160069154"
  1702. z.Looped = false
  1703. z.Pitch = .9
  1704. z1 = Instance.new("Sound",hed)
  1705. z1.SoundId = "rbxassetid://160069154"
  1706. z1.Looped = false
  1707. z1.Pitch = .9
  1708. wait(0.01)
  1709. z:Play()
  1710. z1:Play()
  1711. for i = 1, 12 do
  1712. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  1713. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  1714. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  1715. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  1716. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  1717. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  1718. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1719. if Debounces.on == false then break end
  1720. wait()
  1721. end
  1722. for i = 1, 12 do
  1723. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  1724. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  1725. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  1726. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  1727. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1728. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1729. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1730. if Debounces.on == false then break end
  1731. wait()
  1732. end
  1733. z = Instance.new("Sound",hed)
  1734. z.SoundId = "rbxassetid://168586621"
  1735. z.Looped = false
  1736. z.Pitch = 1
  1737. z1 = Instance.new("Sound",hed)
  1738. z1.SoundId = "rbxassetid://168586621"
  1739. z1.Looped = false
  1740. z1.Pitch = 1
  1741. wait(0.01)
  1742. z:Play()
  1743. z1:Play()
  1744. for i = 1, 12 do
  1745. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  1746. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  1747. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  1748. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  1749. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  1750. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  1751. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  1752. if Debounces.on == false then break end
  1753. wait()
  1754. end
  1755. to:disconnect()
  1756. larm.BrickColor = BrickColor.new("Really black")
  1757. rarm.BrickColor = BrickColor.new("Really black")
  1758. if Debounces.CanAttack == false then
  1759. Debounces.CanAttack = true
  1760. Debounces.on = false
  1761. Debounces.NoIdl = false
  1762. end
  1763. end
  1764. end
  1765. end)
  1766. ----------------------------------------------------
  1767. Sit = false
  1768. mouse.KeyDown:connect(function(key)
  1769. if key == "v" then
  1770. if Sit == false then
  1771. Sit = true
  1772. hum.WalkSpeed = 0.001
  1773. stanceToggle = "Sitting"
  1774. elseif Sit == true then
  1775. Sit = false
  1776. hum.WalkSpeed = 7
  1777. stanceToggle = "Normal"
  1778. end
  1779. end
  1780. end)
  1781. ----------------------------------------------------
  1782. mouse.KeyDown:connect(function(key)
  1783. if key == "t" then
  1784. if Debounces.CanAttack == true then
  1785. Debounces.CanAttack = false
  1786. Debounces.on = true
  1787. Debounces.NoIdl = true
  1788. for i = 1, 20 do
  1789. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1790. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1791. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1792. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1793. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  1794. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  1795. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1796. if Debounces.on == false then break end
  1797. wait()
  1798. end
  1799. Spawn(function()
  1800. local Parts = {}
  1801. for Y = -5,5 do
  1802. local P = Instance.new("Part",char)
  1803. P.Anchored = true
  1804. P.FormFactor = "Custom"
  1805. P.CanCollide = false
  1806. P.Size = Vector3.new(1,2,1)
  1807. P.TopSurface = "SmoothNoOutlines"
  1808. P.BottomSurface = "SmoothNoOutlines"
  1809. P.BrickColor = BrickColor.new("Really black")
  1810. P.Name = tostring(Y)
  1811. local i = (Y+5)/(10)
  1812. i = 1-math.cos(math.pi*i-(math.pi/2))
  1813. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  1814. --[[P.Touched:connect(function(ht)
  1815. local hit = ht.Parent
  1816. if hit:FindFirstChild("Humanoid") then
  1817. hit.Humanoid:TakeDamage(math.random(20,50))
  1818. end
  1819. end)]]--
  1820. s = Instance.new("Sound",P)
  1821. s.SoundId = "rbxassetid://228343271"
  1822. s.Volume = .7
  1823. s.Pitch = 0.9
  1824. s:Play()
  1825. P.Touched:connect(function(ht)
  1826. hit = ht.Parent
  1827. if ht and hit:IsA("Model") then
  1828. if hit:FindFirstChild("Humanoid") then
  1829. if hit.Name ~= p.Name then
  1830. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1831. Debounces.Slashed = true]]--
  1832. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  1833. hit:FindFirstChild("Humanoid").PlatformStand = true
  1834. wait(1)
  1835. --Debounces.Slashed = false
  1836. --end
  1837. end
  1838. end
  1839. elseif ht and hit:IsA("Hat") then
  1840. if hit.Parent.Name ~= p.Name then
  1841. if hit.Parent:FindFirstChild("Humanoid") then
  1842. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1843. Debounces.Slashed = true]]--
  1844. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  1845. hit:FindFirstChild("Humanoid").PlatformStand = true
  1846. wait(1)
  1847. --Debounces.Slashed = false
  1848. --end
  1849. end
  1850. end
  1851. end
  1852. end)
  1853. Parts[#Parts+1] = P
  1854. end
  1855. local BREAKIT = false
  1856. local CParts = {}
  1857. local Rocks = {}
  1858. local LastPos = nil
  1859. for i = 1,70 do
  1860. for i2,v in pairs(Parts) do
  1861. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  1862. local cf = v.CFrame
  1863. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  1864. v.CFrame = cf
  1865. v.Transparency = v.Transparency+0.02
  1866. if v.Transparency >= 0.975 then BREAKIT = true end
  1867. if v.Name == "0" then
  1868. local Ignore = {}
  1869. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1870. if v.Character ~= nil then
  1871. Ignore[#Ignore+1] = v.Character
  1872. end
  1873. end
  1874. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  1875. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  1876. if Hit ~= nil then
  1877. if #Rocks == 0 then
  1878. for i = 1,5 do
  1879. local P = Instance.new("Part",char)
  1880. Rocks[#Rocks+1] = P
  1881. P.Anchored = true
  1882. P.FormFactor = "Custom"
  1883. P.BrickColor = Hit.BrickColor
  1884. P.Material = Hit.Material
  1885. P.TopSurface = "Smooth"
  1886. P.BottomSurface = "Smooth"
  1887. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  1888. end
  1889. end
  1890. for i,P in pairs(Rocks) do
  1891. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1892. end
  1893. local P = Instance.new("Part",char)
  1894. CParts[#CParts+1] = {P,tick()}
  1895. P.Anchored = true
  1896. P.FormFactor = "Custom"
  1897. P.BrickColor = Hit.BrickColor
  1898. P.Material = Hit.Material
  1899. P.TopSurface = "Smooth"
  1900. P.BottomSurface = "Smooth"
  1901. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  1902. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1903. Pos = Pos.p
  1904. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1905. local P = P:Clone()
  1906. CParts[#CParts+1] = {P,tick()}
  1907. P.Parent = char
  1908. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  1909. Pos = Pos.p
  1910. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  1911. if LastPos ~= nil then
  1912. local P = P:Clone()
  1913. CParts[#CParts+1] = {P,tick()}
  1914. P.Parent = char
  1915. P.BrickColor = BrickColor.new("Really black")
  1916. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1917. Pos = Pos.p
  1918. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1919. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  1920. --P.Velocity = Vector3.new(0,-1000,0)
  1921. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  1922. end
  1923. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1924. end
  1925. end
  1926. end
  1927. if BREAKIT then break end
  1928. wait(0.002)
  1929. end
  1930. for i,v in pairs(Rocks) do
  1931. CParts[#CParts+1] = {v,tick()}
  1932. end
  1933. for i,v in pairs(Parts) do
  1934. v:Destroy()
  1935. end
  1936. Parts = nil
  1937. while true do
  1938. local t = tick()
  1939. local p = nil
  1940. for i,v in pairs(CParts) do
  1941. if t-v[2] > 4 then
  1942. v[1].Transparency = v[1].Transparency+0.05
  1943. if v[1].Transparency >= 1 then
  1944. v[1]:Destroy()
  1945. CParts[i] = nil
  1946. end
  1947. end
  1948. p = v
  1949. end
  1950. if p == nil then break end
  1951. wait(0.002)
  1952. end
  1953. for i,v in pairs(CParts) do
  1954. v:Destroy()
  1955. end
  1956. CParts = {}
  1957. end)
  1958. for i = 1, 20 do
  1959. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  1960. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  1961. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  1962. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  1963. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  1964. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  1965. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1966. if Debounces.on == false then break end
  1967. wait()
  1968. end
  1969. if Debounces.CanAttack == false then
  1970. Debounces.CanAttack = true
  1971. Debounces.on = false
  1972. Debounces.NoIdl = false
  1973. end
  1974. end
  1975. end
  1976. end)
  1977. ----------------------------------------------------
  1978. mouse.KeyDown:connect(function(key)
  1979. if key == "e" then
  1980. larm.BrickColor = BrickColor.new("Bright red")
  1981. rarm.BrickColor = BrickColor.new("Bright red")
  1982. if Debounces.CanAttack == true then
  1983. Debounces.CanAttack = false
  1984. Debounces.on = true
  1985. Debounces.NoIdl = true
  1986. for i = 1, 18 do
  1987. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  1988. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  1989. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1990. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  1991. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  1992. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  1993. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1994. if Debounces.on == false then break end
  1995. wait()
  1996. end
  1997. local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1998. local rng = Instance.new("Part", char.Absolution.Handle)
  1999. rng.Anchored = true
  2000. rng.BrickColor = BrickColor.new("Really black")
  2001. rng.CanCollide = true
  2002. rng.FormFactor = 3
  2003. rng.Name = "Ring"
  2004. rng.Size = Vector3.new(1, 1, 1)
  2005. rng.CanCollide = false
  2006. rng.Transparency = 0.35
  2007. rng.TopSurface = 0
  2008. rng.BottomSurface = 0
  2009. rng.CFrame = HandCF
  2010. local rngm = Instance.new("SpecialMesh", rng)
  2011. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2012. rngm.Scale = Vector3.new(1, 1, 2)
  2013. x = Instance.new("Sound", hed)
  2014. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2015. x.Looped = false
  2016. x.Pitch = .7
  2017. x.Volume = 1
  2018. x1 = Instance.new("Sound", hed)
  2019. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2020. x1.Looped = false
  2021. x1.Pitch = .7
  2022. x1.Volume = 1
  2023. x:Play()
  2024. x1:Play()
  2025. rngto = rng.Touched:connect(function(ht)
  2026. hit = ht.Parent
  2027. if ht and hit:IsA("Model") then
  2028. if hit:FindFirstChild("Humanoid") then
  2029. if hit.Name ~= p.Name then
  2030. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2031. Debounces.Slashed = true]]--
  2032. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  2033. hit:FindFirstChild("Humanoid").PlatformStand = true
  2034. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2035. --Debounces.Slashed = false
  2036. --end
  2037. end
  2038. end
  2039. elseif ht and hit:IsA("Hat") then
  2040. if hit.Parent.Name ~= p.Name then
  2041. if hit.Parent:FindFirstChild("Humanoid") then
  2042. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2043. Debounces.Slashed = true]]--
  2044. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  2045. hit:FindFirstChild("Humanoid").PlatformStand = true
  2046. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2047. --Debounces.Slashed = false
  2048. end
  2049. end
  2050. end
  2051. end)
  2052. coroutine.wrap(function()
  2053. for i = 1, 60, 2 do
  2054. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2055. rng.Size = rngm.Scale
  2056. rng.CFrame = HandCF
  2057. rng.Transparency = i/60
  2058. wait()
  2059. end
  2060. wait()
  2061. rng:Destroy()
  2062. end)()
  2063. for i = 1, 18 do
  2064. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  2065. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  2066. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2067. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2068. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2069. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2070. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2071. if Debounces.on == false then break end
  2072. wait()
  2073. end
  2074. larm.BrickColor = BrickColor.new("Really black")
  2075. rarm.BrickColor = BrickColor.new("Really black")
  2076. x:Destroy()
  2077. x1:Destroy()
  2078. if Debounces.CanAttack == false then
  2079. Debounces.CanAttack = true
  2080. Debounces.on = false
  2081. Debounces.NoIdl = false
  2082. end
  2083. end
  2084. end
  2085. end)
  2086. ----------------------------------------------------
  2087. mouse.KeyDown:connect(function(key)
  2088. if key == "y" then
  2089. if Debounces.CanAttack == true then
  2090. Debounces.CanAttack = false
  2091. Debounces.on = true
  2092. Debounces.NoIdl = true
  2093. for i = 1, 15 do
  2094. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  2095. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  2096. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2097. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2098. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2099. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2100. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2101. if Debounces.on == false then break end
  2102. wait()
  2103. end
  2104. x = Instance.new("Sound",char)
  2105. x.SoundId = "rbxassetid://228343271"
  2106. x.Pitch = 1
  2107. x.Volume = .8
  2108. wait(.1)
  2109. x:Play()
  2110. Debounces.on = false
  2111. Debounces.Here = false
  2112. shot = shot + 1
  2113. local rng = Instance.new("Part", char)
  2114. rng.Anchored = true
  2115. rng.BrickColor = BrickColor.new("Really black")
  2116. rng.CanCollide = false
  2117. rng.FormFactor = 3
  2118. rng.Name = "Ring"
  2119. rng.Size = Vector3.new(1, 1, 1)
  2120. rng.Transparency = 0.35
  2121. rng.TopSurface = 0
  2122. rng.BottomSurface = 0
  2123. rng2 = rng:clone()
  2124. rng3 = rng2:clone()
  2125. rng4 = rng2:clone()
  2126. local rngm = Instance.new("SpecialMesh", rng)
  2127. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2128. rngm.Scale = Vector3.new(10, 10, 1)
  2129. rngm2 = rngm:clone()
  2130. rngm2.Scale = Vector3.new(5, 5, 1)
  2131. rngm3=rngm2:clone()
  2132. rngm3.Parent = rng3
  2133. rngm3.Scale = Vector3.new(8, 8, 1)
  2134. rngm4 = rngm2:clone()
  2135. rngm4.Parent = rng4
  2136. rngm4.Scale = Vector3.new(6, 6, 1)
  2137. local bem = Instance.new("Part", char)
  2138. bem.Anchored = true
  2139. bem.BrickColor = BrickColor.new("Really black")
  2140. bem.CanCollide = false
  2141. bem.FormFactor = 3
  2142. bem.Name = "Beam" .. shot
  2143. bem.Size = Vector3.new(1, 1, 1)
  2144. bem.Transparency = 0.35
  2145. bem.TopSurface = 0
  2146. bem.BottomSurface = 0
  2147. local bemm = Instance.new("SpecialMesh", bem)
  2148. bemm.MeshType = 4
  2149. bemm.Scale = Vector3.new(1, 4, 4)
  2150. local out = Instance.new("Part", char)
  2151. out.Anchored = true
  2152. out.BrickColor = BrickColor.new("Really black")
  2153. out.CanCollide = false
  2154. out.FormFactor = 3
  2155. out.Name = "Out"
  2156. out.Size = Vector3.new(4, 4, 4)
  2157. out.Transparency = 0.35
  2158. out.TopSurface = 0
  2159. out.BottomSurface = 0
  2160. local outm = Instance.new("SpecialMesh", out)
  2161. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2162. outm.Scale = Vector3.new(4, 4, 4)
  2163. local bnd = Instance.new("Part", char)
  2164. bnd.Anchored = true
  2165. bnd.BrickColor = BrickColor.new("Really black")
  2166. bnd.CanCollide = false
  2167. bnd.FormFactor = 3
  2168. bnd.Name = "Bend"
  2169. bnd.Size = Vector3.new(1, 1, 1)
  2170. bnd.Transparency = 1
  2171. bnd.TopSurface = 0
  2172. bnd.BottomSurface = 0
  2173. local bndm = Instance.new("SpecialMesh", bnd)
  2174. bndm.MeshType = 3
  2175. bndm.Scale = Vector3.new(8, 8, 8)
  2176. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2177. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2178. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2179. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2180. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2181. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2182. Debounces.Shewt = true
  2183. coroutine.wrap(function()
  2184. for i = 1, 20, 0.2 do
  2185. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2186. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2187. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2188. rng.Transparency = i/20
  2189. rng3.Transparency = 1/16
  2190. rng4.Transparency = i/12
  2191. wait()
  2192. end
  2193. wait()
  2194. rng:Destroy()
  2195. end)()
  2196. if Debounces.Shewt == true then
  2197. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2198. hit = ht.Parent
  2199. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2200. if HasntTouched(hit.Name) == true and deb == false then
  2201. deb = true
  2202. coroutine.wrap(function()
  2203. hit:FindFirstChild("Humanoid").PlatformStand = true
  2204. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2205. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  2206. end)()
  2207. table.insert(Touche, hit.Name)
  2208. deb = false
  2209. end
  2210. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2211. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2212. deb = true
  2213. coroutine.wrap(function()
  2214. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2215. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2216. wait(1)
  2217. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2218. end)()
  2219. table.insert(Touche, hit.Parent.Name)
  2220. deb = false
  2221. for i, v in pairs(Touche) do
  2222. print(v)
  2223. end
  2224. end
  2225. end
  2226. end)
  2227. end
  2228. for i = 0, 260, 8 do
  2229. bem.Size = Vector3.new(i, 2, 2)
  2230. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2231. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2232. bnd.Size = Vector3.new(1,1,1)
  2233. bndm.Scale = Vector3.new(8,8,8)
  2234. if i % 10 == 0 then
  2235. local newRng = rng2:Clone()
  2236. newRng.Parent = char
  2237. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2238. local newRngm = rngm2:clone()
  2239. newRngm.Parent=newRng
  2240. coroutine.wrap(function()
  2241. for i = 1, 10, 0.2 do
  2242. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2243. newRng.Transparency = i/10
  2244. wait()
  2245. end
  2246. wait()
  2247. newRng:Destroy()
  2248. end)()
  2249. end
  2250. wait()
  2251. end
  2252. wait()
  2253. Debounces.Shewt = false
  2254. bem:Destroy()
  2255. out:Destroy()
  2256. bnd:Destroy()
  2257. Debounces.Ready = false
  2258. for i, v in pairs(Touche) do
  2259. table.remove(Touche, i)
  2260. end
  2261. wait()
  2262. table.insert(Touche, char.Name)
  2263. Debounces.NoIdl = false
  2264. if Debounces.CanAttack == false then
  2265. Debounces.CanAttack = true
  2266. end
  2267. end
  2268. end
  2269. end)
  2270. ----------------------------------------------------
  2271. sidz = {"231917888", "231917845", "231917806"}
  2272. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  2273. mouse.KeyDown:connect(function(key)
  2274. if key == "f" then
  2275. larm.BrickColor = BrickColor.new("Bright red")
  2276. rarm.BrickColor = BrickColor.new("Bright red")
  2277. if Debounces.CanAttack == true then
  2278. Debounces.CanAttack = false
  2279. Debounces.on = true
  2280. Debounces.NoIdl = true
  2281. for i = 1, 10 do
  2282. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.4)
  2283. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.4)
  2284. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2285. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2286. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2287. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2288. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2289. if Debounces.on == false then break end
  2290. wait()
  2291. end
  2292. z = Instance.new("Sound",char)
  2293. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  2294. z.Pitch = ptz[math.random(1,#ptz)]
  2295. z.Volume = 1
  2296. z1 = Instance.new("Sound",char)
  2297. z1.SoundId = z.SoundId
  2298. z1.Pitch = z.Pitch
  2299. z1.Volume = 1
  2300. wait(1)
  2301. z:Play()
  2302. z1:Play()
  2303. Stomp()
  2304. for i = 1, 20 do
  2305. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.6)
  2306. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.6)
  2307. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2308. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  2309. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2310. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2311. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2312. if Debounces.on == false then break end
  2313. wait()
  2314. end
  2315. if Debounces.CanAttack == false then
  2316. Debounces.CanAttack = true
  2317. Debounces.on = false
  2318. Debounces.NoIdl = false
  2319. larm.BrickColor = BrickColor.new("Really black")
  2320. rarm.BrickColor = BrickColor.new("Really black")
  2321. end
  2322. end
  2323. end
  2324. end)
  2325. ----------------------------------------------------
  2326. mouse.KeyDown:connect(function(key)
  2327. if key == "g" then
  2328. larm.BrickColor = BrickColor.new("Bright red")
  2329. rarm.BrickColor = BrickColor.new("Bright red")
  2330. if Debounces.CanAttack == true then
  2331. Debounces.CanAttack = false
  2332. Debounces.on = true
  2333. Debounces.NoIdl = true
  2334. chrg = lleg.Touched:connect(function(ht)
  2335. hit = ht.Parent
  2336. if ht and hit:IsA("Model") then
  2337. if hit:FindFirstChild("Humanoid") then
  2338. if hit.Name ~= p.Name then
  2339. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2340. Debounces.Slashed = true]]--
  2341. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2342. hit:FindFirstChild("Humanoid").PlatformStand = true
  2343. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2344. --Debounces.Slashed = false
  2345. --end
  2346. end
  2347. end
  2348. elseif ht and hit:IsA("Hat") then
  2349. if hit.Parent.Name ~= p.Name then
  2350. if hit.Parent:FindFirstChild("Humanoid") then
  2351. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2352. Debounces.Slashed = true]]--
  2353. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2354. hit:FindFirstChild("Humanoid").PlatformStand = true
  2355. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2356. --Debounces.Slashed = false
  2357. end
  2358. end
  2359. end
  2360. end)
  2361. for i = 1, 14 do
  2362. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  2363. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  2364. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  2365. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  2366. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2367. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2368. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  2369. if Debounces.on == false then break end
  2370. wait()
  2371. end
  2372. charge()
  2373. z = Instance.new("Sound",char)
  2374. z.SoundId = "rbxassetid://200632875"
  2375. z.Volume = 1
  2376. z.Pitch = .8
  2377. z1 = Instance.new("Sound",char)
  2378. z1.SoundId = "rbxassetid://200632875"
  2379. z1.Volume = 1
  2380. z1.Pitch = .9
  2381. z:Play()
  2382. z1:Play()
  2383. wait(1)
  2384. z:Destroy()
  2385. z1:Destroy()
  2386. chrg:disconnect()
  2387. if Debounces.CanAttack == false then
  2388. Debounces.CanAttack = true
  2389. Debounces.on = false
  2390. Debounces.NoIdl = false
  2391. larm.BrickColor = BrickColor.new("Really black")
  2392. rarm.BrickColor = BrickColor.new("Really black")
  2393. end
  2394. end
  2395. end
  2396. end)
  2397. ----------------------------------------------------
  2398. pt = {0.7, 0.8, 0.9}
  2399. mouse.KeyDown:connect(function(key)
  2400. if key == "h" then
  2401. if Debounces.CanJoke == true then
  2402. Debounces.CanJoke = false
  2403. u = Instance.new("Sound")
  2404. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2405. u.Parent = char
  2406. u.Looped = false
  2407. u.Pitch = pt[math.random(1,#pt)]
  2408. u.Volume = 1
  2409. u2 = Instance.new("Sound")
  2410. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2411. u2.Parent = char
  2412. u2.Looped = false
  2413. u2.Pitch = u.Pitch
  2414. u2.Volume = 1
  2415. wait(.01)
  2416. u:Play()
  2417. u2:Play()
  2418. wait(6)
  2419. u:Destroy()
  2420. u2:Destroy()
  2421. if Debounces.CanJoke == false then
  2422. Debounces.CanJoke = true
  2423. end
  2424. end
  2425. end
  2426. end)
  2427. ----------------------------------------------------
  2428. mouse.KeyDown:connect(function(key)
  2429. if key == "j" then
  2430. if Debounces.CanJoke == true then
  2431. Debounces.CanJoke = false
  2432. z = Instance.new("Sound",char)
  2433. z.SoundId = "rbxassetid://135017755"
  2434. z.Pitch = .76
  2435. z.Volume = 1
  2436. wait()
  2437. z:Play()
  2438. wait(6)
  2439. z:Destroy()
  2440. if Debounces.CanJoke == false then
  2441. Debounces.CanJoke = true
  2442. end
  2443. end
  2444. end
  2445. end)
  2446. ----------------------------------------------------
  2447. mouse.KeyDown:connect(function(key)
  2448. if key == "k" then
  2449. if Debounces.CanJoke == true then
  2450. Debounces.CanJoke = false
  2451. z = Instance.new("Sound",char)
  2452. z.SoundId = "rbxassetid://135017578"
  2453. z.Pitch = .76
  2454. z.Volume = 1
  2455. wait()
  2456. z:Play()
  2457. wait(4)
  2458. z:Destroy()
  2459. if Debounces.CanJoke == false then
  2460. Debounces.CanJoke = true
  2461. end
  2462. end
  2463. end
  2464. end)
  2465. ----------------------------------------------------
  2466. mouse.KeyDown:connect(function(key)
  2467. if key == "x" then
  2468. if Debounces.CanAttack == true then
  2469. Debounces.CanAttack = false
  2470. Debounces.NoIdl = true
  2471. Debounces.on = true
  2472. Debounces.ks = true
  2473. for i = 1, 10 do
  2474. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2475. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
  2476. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2477. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  2478. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  2479. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
  2480. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2481. if Debounces.on == false then break end
  2482. wait()
  2483. end
  2484. z = Instance.new("Sound",hed)
  2485. z.SoundId = "rbxassetid://169445092"
  2486. z.Volume = 1
  2487. wait(0.1)
  2488. z:Play()
  2489. kik = rleg.Touched:connect(function(ht)
  2490. hit = ht.Parent
  2491. if ht and hit:IsA("Model") then
  2492. if hit:FindFirstChild("Humanoid") then
  2493. if hit.Name ~= p.Name then
  2494. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2495. Debounces.Slashed = true]]--
  2496. if Debounces.ks==true then
  2497. z = Instance.new("Sound",hed)
  2498. z.SoundId = "rbxassetid://169380525"
  2499. z.Volume = 1
  2500. z:Play()
  2501. Debounces.ks=false
  2502. end
  2503. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2504. hit:FindFirstChild("Humanoid").PlatformStand = true
  2505. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2506. --Debounces.Slashed = false
  2507. --end
  2508. end
  2509. end
  2510. elseif ht and hit:IsA("Hat") then
  2511. if hit.Parent.Name ~= p.Name then
  2512. if hit.Parent:FindFirstChild("Humanoid") then
  2513. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2514. Debounces.Slashed = true]]--
  2515. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2516. hit:FindFirstChild("Humanoid").PlatformStand = true
  2517. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2518. --Debounces.Slashed = false
  2519. --end
  2520. end
  2521. end
  2522. end
  2523. end)
  2524. for i = 1, 8 do
  2525. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2526. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  2527. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  2528. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  2529. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2530. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
  2531. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2532. if Debounces.on == false then break end
  2533. wait()
  2534. end
  2535. kik:disconnect()
  2536. if Debounces.CanAttack == false then
  2537. Debounces.CanAttack = true
  2538. Debounces.on = false
  2539. Debounces.NoIdl = false
  2540. end
  2541. end
  2542. end
  2543. end)
  2544. ----------------------------------------------------
  2545. mouse.KeyDown:connect(function(key)
  2546. if key == "c" then
  2547. if Debounces.CanAttack == true then
  2548. Debounces.CanAttack = false
  2549. Debounces.NoIdl = true
  2550. Debounces.on = true
  2551. SIDZ = {"231917744", "231917742"}
  2552. PTZ = {0.7, 0.8, 0.9, 1}
  2553. for i = 1, 20 do
  2554. wait()
  2555. for i,v in pairs(char.Absolution:children()) do
  2556. if v:IsA("Part") or v:IsA("WedgePart") then
  2557. v.Transparency = v.Transparency + 0.05
  2558. end
  2559. end
  2560. end
  2561. function FindNearestTorso(Position,Distance,SinglePlayer)
  2562. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2563. local List = {}
  2564. for i,v in pairs(workspace:GetChildren())do
  2565. if v:IsA("Model")then
  2566. if v:findFirstChild("Torso")then
  2567. if v ~= char then
  2568. if(v.Torso.Position -Position).magnitude <= Distance then
  2569. table.insert(List,v)
  2570. end
  2571. end
  2572. end
  2573. end
  2574. end
  2575. return List
  2576. end
  2577. GroundPound()
  2578. for i = 1, 5 do
  2579. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2580. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2581. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2582. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2583. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2584. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2585. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2586. if Debounces.on == false then break end
  2587. wait()
  2588. end
  2589. GroundPound()
  2590. for i = 1, 5 do
  2591. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2592. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2593. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2594. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2595. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2596. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2597. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2598. if Debounces.on == false then break end
  2599. wait()
  2600. end
  2601. GroundPound()
  2602. for i = 1, 5 do
  2603. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2604. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2605. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2606. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2607. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2608. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2609. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2610. if Debounces.on == false then break end
  2611. wait()
  2612. end
  2613. GroundPound()
  2614. for i = 1, 5 do
  2615. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2616. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2617. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2618. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2619. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2620. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2621. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2622. if Debounces.on == false then break end
  2623. wait()
  2624. end
  2625. GroundPound()
  2626. for i = 1, 5 do
  2627. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2628. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2629. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2630. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2631. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2632. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2633. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2634. if Debounces.on == false then break end
  2635. wait()
  2636. end
  2637. GroundPound()
  2638. for i = 1, 5 do
  2639. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2640. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2641. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2642. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2643. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2644. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2645. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2646. if Debounces.on == false then break end
  2647. wait()
  2648. end
  2649. for i = 1, 18 do
  2650. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.4)
  2651. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.4)
  2652. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2653. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2654. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2655. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2656. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2657. if Debounces.on == false then break end
  2658. wait()
  2659. end
  2660. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2661. if v:FindFirstChild('Humanoid') then
  2662. v.Humanoid:TakeDamage(math.random(20,60))
  2663. v.Humanoid.PlatformStand = true
  2664. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2665. end
  2666. end
  2667. x = Instance.new("Sound",char)
  2668. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  2669. x.Pitch = PTZ[math.random(1,#PTZ)]
  2670. x.Volume = 1
  2671. wait(0.1)
  2672. x:Play()
  2673. Crater(hed,20)
  2674. for i = 1, 14 do
  2675. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  2676. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  2677. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2678. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2679. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2680. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2681. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2682. if Debounces.on == false then break end
  2683. wait()
  2684. end
  2685. if Debounces.CanAttack == false then
  2686. Debounces.CanAttack = true
  2687. Debounces.on = false
  2688. Debounces.NoIdl = false
  2689. for i = 1, 20 do
  2690. wait()
  2691. for i,v in pairs(char.Absolution:children()) do
  2692. if v:IsA("Part") or v:IsA("WedgePart") then
  2693. v.Transparency = v.Transparency - 0.05
  2694. end
  2695. end
  2696. end
  2697. end
  2698. end
  2699. end
  2700. end)
  2701. ----------------------------------------------------176349813
  2702. mouse.KeyDown:connect(function(key)
  2703. if key == "b" then
  2704. hum.WalkSpeed = 0.01
  2705. if Debounces.CanAttack == true then
  2706. Debounces.CanAttack = false
  2707. Debounces.NoIdl = true
  2708. Debounces.on = true
  2709. for i = 1,20 do
  2710. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  2711. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  2712. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  2713. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  2714. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  2715. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  2716. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2717. if Debounces.on == false then break end
  2718. wait()
  2719. end
  2720. wait(1)
  2721. v = Instance.new("Sound")
  2722. v.SoundId = "rbxassetid://181384451"
  2723. v.Parent = char
  2724. v.Looped = false
  2725. v.Pitch = 1.04
  2726. v.Volume = 1
  2727. wait(.01)
  2728. v:Play()
  2729.  
  2730. if Daytime == true then
  2731. Daytime = false
  2732. l.TimeOfDay = 24
  2733. else
  2734. Daytime = true
  2735. l.TimeOfDay = 12
  2736. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  2737. end
  2738.  
  2739. local Shockwave = function()
  2740. local rng1 = Instance.new("Part", char)
  2741. rng1.Anchored = true
  2742. rng1.BrickColor = BrickColor.new("Really black")
  2743. rng1.CanCollide = false
  2744. rng1.FormFactor = 3
  2745. rng1.Name = "Ring"
  2746. rng1.Size = Vector3.new(1, 1, 1)
  2747. rng1.Transparency = 0.35
  2748. rng1.TopSurface = 0
  2749. rng1.BottomSurface = 0
  2750. local rngm1 = Instance.new("SpecialMesh", rng)
  2751. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2752. rngm1.Scale = Vector3.new(10, 10, 1)
  2753. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  2754. local Wave = Instance.new("Part", game.Workspace--[[?]])
  2755. Wave.Name = "Shockwave"
  2756. Wave.BrickColor = BrickColor.new("Really black")
  2757. Wave.Size = Vector3.new(1, 1, 1)
  2758. Wave.Shape = "Ball"
  2759. Wave.CanCollide = false
  2760. Wave.Anchored = true
  2761. Wave.TopSurface = 0
  2762. Wave.BottomSurface = 0
  2763. Wave.Touched:connect(function(hit)
  2764. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  2765. local Occlude = true
  2766. local NotOccludes = {
  2767. char.Name;
  2768. "Wings";
  2769. "Scythe";
  2770. "Thingy";
  2771. "Thingy2"; -- put all of the names in a table pls
  2772. }
  2773. for i,v in pairs(NotOccludes) do
  2774. if hit.Parent.Name == v then
  2775. Occlude = false
  2776. end
  2777. end
  2778. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  2779. if Occlude then
  2780. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  2781. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  2782. end
  2783. end
  2784. end)
  2785.  
  2786. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  2787.  
  2788. coroutine.wrap(function()
  2789. for i = 1, 20, 0.2 do
  2790. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2791. rng1.Transparency = i/20
  2792. wait()
  2793. end
  2794. wait()
  2795. rng1:Destroy()
  2796. end)()
  2797.  
  2798. Delay(0, function()
  2799.  
  2800. if Daytime == false then
  2801. for i = 1, 50, 1 do
  2802. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2803. Wave.CFrame = char.Torso.CFrame
  2804. local t = i / 50
  2805. Wave.Transparency = t
  2806. wait()
  2807. end
  2808. else
  2809. for i = 1, 50, 1 do
  2810. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2811. Wave.CFrame = char.Torso.CFrame
  2812. local t = i / 50
  2813. Wave.Transparency = t
  2814. wait()
  2815. end
  2816. end
  2817. Wave:Destroy()
  2818. end)
  2819. Delay(0, function()
  2820. while wait() do
  2821. if Wave ~= nil then
  2822. Wave.CFrame = char.Torso.CFrame
  2823. else
  2824. break
  2825. end
  2826. end
  2827. end)
  2828. end
  2829. Shockwave()
  2830. for i = 1, 15 do
  2831. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2832. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2833. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2834. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2835. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2836. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2837. if Debounces.on == false then break end
  2838. wait()
  2839. end
  2840. for i = 1, 15 do
  2841. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2842. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2843. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2844. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2845. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2846. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2847. if Debounces.on == false then break end
  2848. wait()
  2849. end
  2850. for i = 1, 15 do
  2851. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2852. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2853. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2854. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2855. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2856. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2857. if Debounces.on == false then break end
  2858. wait()
  2859. end
  2860. for i = 1, 15 do
  2861. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2862. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2863. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2864. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2865. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2866. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2867. if Debounces.on == false then break end
  2868. wait()
  2869. end
  2870. for i = 1, 15 do
  2871. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2872. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2873. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2874. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2875. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2876. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2877. if Debounces.on == false then break end
  2878. wait()
  2879. end
  2880. for i = 1, 15 do
  2881. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2882. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2883. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2884. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2885. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2886. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2887. if Debounces.on == false then break end
  2888. wait()
  2889. end
  2890. wait(1.4)
  2891. Debounces.NoIdl = false
  2892. hum.WalkSpeed = 5
  2893. Debounces.on = false
  2894. wait()
  2895. if Debounces.CanAttack == false then
  2896. Debounces.CanAttack = true
  2897. v:Destroy()
  2898. end
  2899. end
  2900. end
  2901. end)
  2902. ----------------------------------------------------
  2903. mouse.KeyDown:connect(function(key)
  2904. if key == "m" then
  2905. hum.WalkSpeed = 0
  2906. if Debounces.CanAttack == true then
  2907. Debounces.CanAttack = false
  2908. Debounces.on = true
  2909. Debounces.NoIdl = true
  2910. --[[x = Instance.new("Sound",char)
  2911. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  2912. x.Looped = false
  2913. x.Pitch = 1.1
  2914. x.Volume = 1
  2915. x:Play()
  2916. x2 = Instance.new("Sound",char)
  2917. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  2918. x2.Looped = false
  2919. x2.Pitch = .7
  2920. x2.Volume = 1
  2921. wait(.1)
  2922. x:Play()
  2923. x2:Play()
  2924. for i = 1, 20 do
  2925. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  2926. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  2927. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  2928. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  2929. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  2930. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  2931. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  2932. if Debounces.on == false then break end
  2933. wait()
  2934. x:Destroy()
  2935. x2:Destroy()
  2936. end
  2937. wait(1)]]--
  2938. local rng = Instance.new("Part", char)
  2939. rng.Anchored = true
  2940. rng.BrickColor = BrickColor.new("Really black")
  2941. rng.CanCollide = false
  2942. rng.FormFactor = 3
  2943. rng.Name = "Ring"
  2944. rng.Size = Vector3.new(1, 1, 1)
  2945. rng.Transparency = 0.35
  2946. rng.TopSurface = 0
  2947. rng.BottomSurface = 0
  2948. rng.Position = torso.Position - Vector3.new(0,2,0)
  2949. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2950. local rngm = Instance.new("SpecialMesh", rng)
  2951. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2952. rngm.Scale = Vector3.new(1, 1, 2)
  2953. x = Instance.new("Sound",char)
  2954. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2955. x.Looped = false
  2956. x.Pitch = .7
  2957. x.Volume = 1
  2958. x:Play()
  2959. coroutine.wrap(function()
  2960. for i = 1, 60, 2 do
  2961. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2962. rng.Transparency = i/60
  2963. wait()
  2964. end
  2965. wait()
  2966. rng:Destroy()
  2967. end)()
  2968. hum.WalkSpeed = 50
  2969. BV = Instance.new("BodyVelocity", torso)
  2970. BV.maxForce = Vector3.new(0,200000,0)
  2971. BV.P = 100000
  2972. BV.velocity = Vector3.new(0,800,0)
  2973. for i = 1, 20 do
  2974. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  2975. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2976. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  2977. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  2978. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  2979. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  2980. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2981. if Debounces.on == false then break end
  2982. wait()
  2983. end
  2984. x:Destroy()
  2985. BV:Destroy()
  2986. --[[for i = 1, 30 do
  2987. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  2988. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  2989. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  2990. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  2991. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  2992. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  2993. if Debounces.on == false then break end
  2994. wait()
  2995. end]]--
  2996. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  2997. for i = 1, 30 do
  2998. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  2999. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3000. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  3001. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  3002. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  3003. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  3004. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3005. if Debounces.on == false then break end
  3006. wait()
  3007. end
  3008. end
  3009. Debounces.on = false
  3010. Debounces.NoIdl = false
  3011. local ry,ht,ps=nil,nil,nil
  3012. while ht==nil do
  3013. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  3014. wait()
  3015. end
  3016. z = Instance.new("Sound",char)
  3017. z.SoundId = "rbxassetid://142070127"
  3018. z.Volume = 1
  3019. wait(.1)
  3020. z:Play()
  3021. Landing()
  3022. hum.WalkSpeed = 8
  3023. if Debounces.CanAttack == false then
  3024. Debounces.CanAttack = true
  3025. end
  3026. end
  3027. end
  3028. end)
  3029. ----------------------------------------------------
  3030. Grab = false
  3031. mouse.KeyDown:connect(function(key)
  3032. if key == "z" then
  3033. larm.BrickColor = BrickColor.new("Bright red")
  3034. rarm.BrickColor = BrickColor.new("Bright red")
  3035. Debounces.on = true
  3036. Debounces.NoIdl = true
  3037. if Grab == false then
  3038. gp = nil
  3039. con1=larm.Touched:connect(function(hit) -- this is grab
  3040. ht = hit.Parent
  3041. hum1=ht:FindFirstChild('Humanoid')
  3042. if hum1 ~= nil then
  3043. hum1.PlatformStand=true
  3044. gp = ht
  3045. Grab = true
  3046. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  3047. asd.Parent = larm
  3048. asd.Name = "asd"
  3049. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  3050. elseif hum1 == nil then
  3051. con1:disconnect()
  3052. wait() return
  3053. end
  3054. end)
  3055. for i = 1, 18 do
  3056. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  3057. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  3058. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3059. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  3060. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  3061. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  3062. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  3063. if Debounces.on == false then break end
  3064. wait()
  3065. end
  3066. con1:disconnect()
  3067. Debounces.on = false
  3068. Debounces.NoIdl = false
  3069. elseif Grab == true then
  3070. Grab = false
  3071. for i = 1, 20 do
  3072. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  3073. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  3074. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3075. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3076. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3077. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3078. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3079. if Debounces.on == false then end
  3080. wait()
  3081. end
  3082. if gp ~= nil then
  3083. for i,v in pairs(larm:GetChildren()) do
  3084. if v.Name == "asd" and v:IsA("Weld") then
  3085. v:Remove()
  3086. end
  3087. end
  3088. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3089. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3090. bv.P = 125000
  3091. bv.velocity = char.Head.CFrame.lookVector * 200
  3092. for i = 1, 12 do
  3093. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  3094. if Debounces.on == false then end
  3095. wait()
  3096. end
  3097. ht=nil
  3098. Spawn(function()
  3099. wait(0.5)
  3100. bv:Destroy()
  3101. end)
  3102. Debounces.on = false
  3103. Debounces.NoIdl = false
  3104. elseif ht == nil then wait()
  3105. Grab = false
  3106. Debounces.on = false
  3107. Debounces.NoIdl = false
  3108. end
  3109. end
  3110. end
  3111. end)
  3112. mouse.KeyDown:connect(function(key)
  3113. if string.byte(key) == 52 then
  3114. char.Humanoid.WalkSpeed = 21
  3115. end
  3116. end)
  3117. mouse.KeyUp:connect(function(key)
  3118. if string.byte(key) == 52 then
  3119. char.Humanoid.WalkSpeed = 5
  3120. end
  3121. end)
  3122. ----------------------------------------------------
  3123. local animpose = "Idle"
  3124. local lastanimpose = "Idle"
  3125. local sine = 0
  3126. local change = 1
  3127. local val = 0
  3128. local ffing = false
  3129. ----------------------------------------------------
  3130. -------------------------------
  3131. game:GetService("RunService").RenderStepped:connect(function()
  3132. --[[if char.Humanoid.Jump == true then
  3133. jump = true
  3134. else
  3135. jump = false
  3136. end]]
  3137. char.Humanoid.FreeFalling:connect(function(f)
  3138. if f then
  3139. ffing = true
  3140. else
  3141. ffing = false
  3142. end
  3143. end)
  3144. sine = sine + change
  3145. if jumpn == true then
  3146. animpose = "Jumping"
  3147. elseif ffing == true then
  3148. animpose = "Freefalling"
  3149. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3150. animpose = "Idle"
  3151. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3152. animpose = "Walking"
  3153. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3154. animpose = "Running"
  3155. end
  3156. if animpose ~= lastanimpose then
  3157. sine = 0
  3158. if Debounces.NoIdl == false then
  3159. if animpose == "Idle" then
  3160. for i = 1, 2 do
  3161. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)), 0.05)
  3162. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.05)
  3163. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3164. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3165. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3166. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3167. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3168. end
  3169. elseif animpose == "Walking" then
  3170. for i = 1, 2 do
  3171. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3172. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3173. hed.Weld.C0 = CFrame.new(0,4,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
  3174. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(-8)), 0.4)
  3175. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(8)), 0.4)
  3176. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 20, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
  3177. end
  3178. elseif animpose == "Running" then
  3179. for i = 1, 2 do
  3180. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  3181. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  3182. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3183. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3184. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3185. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3186. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3187. end
  3188. wait()
  3189. end
  3190. else
  3191. end
  3192. end
  3193. lastanimpose = animpose
  3194. if Debounces.NoIdl == false then
  3195. if animpose == "Idle" then
  3196. if stanceToggle == "Normal" then
  3197. change = 0.5
  3198. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(10+2*math.cos(sine/10)),math.rad(0),math.rad(20)), 0.2)
  3199. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(15),math.rad(5),math.rad(-20-2*math.cos(sine/14))), 0.2)
  3200. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/20)),math.rad(40),0), 0.2)
  3201. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1*math.cos(sine/20), 2) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3202. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3203. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3204. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3205. elseif stanceToggle == "Sitting" then
  3206. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  3207. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
  3208. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  3209. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  3210. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  3211. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  3212. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3213. end
  3214. elseif animpose == "Walking" then
  3215. if stanceToggle == "Normal" then
  3216. change = 1
  3217. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3218. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3219. hed.Weld.C0 = CFrame.new(0,3,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
  3220. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(-8)), 0.4)
  3221. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(8)), 0.4)
  3222. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 10, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
  3223. end
  3224. elseif animpose == "Running" then
  3225. change = 1
  3226. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  3227. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  3228. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3229. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3230. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3231. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3232. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3233. end
  3234. end
  3235. --[[if animpose == "Walking" then
  3236. if footsteps == false then
  3237. x:Play()
  3238. footsteps = true
  3239. end
  3240. x.Pitch = 1.1
  3241. elseif animpose == "Idle" then
  3242. x:Stop()
  3243. footsteps = false
  3244. elseif animpose == "Running" then
  3245. x.Pitch = 1.2
  3246. if footsteps == false then
  3247. x:Play()
  3248. footsteps = true
  3249. end
  3250. end]]--
  3251. end)
  3252.  
  3253.  
  3254.  
  3255. Player=game:GetService('Players').LocalPlayer
  3256. Character=Player.Character
  3257. Mouse=Player:GetMouse()
  3258. m=Instance.new('Model',Character)
  3259.  
  3260.  
  3261. local function weldBetween(a, b)
  3262. local weldd = Instance.new("ManualWeld")
  3263. weldd.Part0 = a
  3264. weldd.Part1 = b
  3265. weldd.C0 = CFrame.new()
  3266. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3267. weldd.Parent = a
  3268. return weldd
  3269. end
  3270.  
  3271. it=Instance.new
  3272.  
  3273. function nooutline(part)
  3274. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3275. end
  3276.  
  3277. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3278. local fp=it("Part")
  3279. fp.formFactor=formfactor
  3280. fp.Parent=parent
  3281. fp.Reflectance=reflectance
  3282. fp.Transparency=transparency
  3283. fp.CanCollide=false
  3284. fp.Locked=true
  3285. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3286. fp.Name=name
  3287. fp.Size=size
  3288. fp.Position=Character.Torso.Position
  3289. nooutline(fp)
  3290. fp.Material=material
  3291. fp:BreakJoints()
  3292. return fp
  3293. end
  3294.  
  3295. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3296. local mesh=it(Mesh)
  3297. mesh.Parent=part
  3298. if Mesh=="SpecialMesh" then
  3299. mesh.MeshType=meshtype
  3300. mesh.MeshId=meshid
  3301. end
  3302. mesh.Offset=offset
  3303. mesh.Scale=scale
  3304. return mesh
  3305. end
  3306.  
  3307. function weld(parent,part0,part1,c0,c1)
  3308. local weld=it("Weld")
  3309. weld.Parent=parent
  3310. weld.Part0=part0
  3311. weld.Part1=part1
  3312. weld.C0=c0
  3313. weld.C1=c1
  3314. return weld
  3315. end
  3316.  
  3317. Head=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Really black","Handle",Vector3.new(4.50989914, 4.5098958, 4.50989771))
  3318. Headweld=weld(m,Character["Head"],Head,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.019949913, -0.784425735, 0.342384338, 1, 0, 0, 0, 0.939693093, -0.342019022, 0, 0.342018992, 0.939693093))
  3319. mesh("SpecialMesh",Head,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=16952952",Vector3.new(0, 0, 0),Vector3.new(2.25494957, 2.2549479, 2.25494885))
  3320. Player=game:GetService('Players').LocalPlayer
  3321. Character=Player.Character
  3322. Mouse=Player:GetMouse()
  3323. m=Instance.new('Model',Character)
  3324.  
  3325.  
  3326. local function weldBetween(a, b)
  3327. local weldd = Instance.new("ManualWeld")
  3328. weldd.Part0 = a
  3329. weldd.Part1 = b
  3330. weldd.C0 = CFrame.new()
  3331. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3332. weldd.Parent = a
  3333. return weldd
  3334. end
  3335.  
  3336. it=Instance.new
  3337.  
  3338. function nooutline(part)
  3339. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3340. end
  3341.  
  3342. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3343. local fp=it("Part")
  3344. fp.formFactor=formfactor
  3345. fp.Parent=parent
  3346. fp.Reflectance=reflectance
  3347. fp.Transparency=transparency
  3348. fp.CanCollide=false
  3349. fp.Locked=true
  3350. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3351. fp.Name=name
  3352. fp.Size=size
  3353. fp.Position=Character.Torso.Position
  3354. nooutline(fp)
  3355. fp.Material=material
  3356. fp:BreakJoints()
  3357. return fp
  3358. end
  3359.  
  3360. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3361. local mesh=it(Mesh)
  3362. mesh.Parent=part
  3363. if Mesh=="SpecialMesh" then
  3364. mesh.MeshType=meshtype
  3365. mesh.MeshId=meshid
  3366. end
  3367. mesh.Offset=offset
  3368. mesh.Scale=scale
  3369. return mesh
  3370. end
  3371.  
  3372. function weld(parent,part0,part1,c0,c1)
  3373. local weld=it("Weld")
  3374. weld.Parent=parent
  3375. weld.Part0=part0
  3376. weld.Part1=part1
  3377. weld.C0=c0
  3378. weld.C1=c1
  3379. return weld
  3380. end
  3381.  
  3382. LArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3383. LArmweld=weld(m,Character["Left Arm"],LArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0699939728, 0.124999046, -1.14440918e-005, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3384. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3385. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.42499733, -0.0949978828, -7.62939453e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3386. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3387. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 1.45000315, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3388. LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","LLeg",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3389. LLegweld=weld(m,LArm,LLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450008392, -0.290473938, -1.11473179, 0, 0, 1, 1, 0, 0, 0, 1, 0))
  3390. mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3391. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
  3392. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.155472755, -0.149731159, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3393. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3394. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.822774887, -1.09854889, 1.52587891e-005, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, 0, 0, 0, -1))
  3395. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3396. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.789524078, 0.795269012, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3397. Player=game:GetService('Players').LocalPlayer
  3398. Character=Player.Character
  3399. Mouse=Player:GetMouse()
  3400. m=Instance.new('Model',Character)
  3401.  
  3402.  
  3403. local function weldBetween(a, b)
  3404. local weldd = Instance.new("ManualWeld")
  3405. weldd.Part0 = a
  3406. weldd.Part1 = b
  3407. weldd.C0 = CFrame.new()
  3408. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3409. weldd.Parent = a
  3410. return weldd
  3411. end
  3412.  
  3413. it=Instance.new
  3414.  
  3415. function nooutline(part)
  3416. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3417. end
  3418.  
  3419. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3420. local fp=it("Part")
  3421. fp.formFactor=formfactor
  3422. fp.Parent=parent
  3423. fp.Reflectance=reflectance
  3424. fp.Transparency=transparency
  3425. fp.CanCollide=false
  3426. fp.Locked=true
  3427. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3428. fp.Name=name
  3429. fp.Size=size
  3430. fp.Position=Character.Torso.Position
  3431. nooutline(fp)
  3432. fp.Material=material
  3433. fp:BreakJoints()
  3434. return fp
  3435. end
  3436.  
  3437. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3438. local mesh=it(Mesh)
  3439. mesh.Parent=part
  3440. if Mesh=="SpecialMesh" then
  3441. mesh.MeshType=meshtype
  3442. mesh.MeshId=meshid
  3443. end
  3444. mesh.Offset=offset
  3445. mesh.Scale=scale
  3446. return mesh
  3447. end
  3448.  
  3449. function weld(parent,part0,part1,c0,c1)
  3450. local weld=it("Weld")
  3451. weld.Parent=parent
  3452. weld.Part0=part0
  3453. weld.Part1=part1
  3454. weld.C0=c0
  3455. weld.C1=c1
  3456. return weld
  3457. end
  3458.  
  3459. RArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3460. RArmweld=weld(m,Character["Right Arm"],RArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0500068665, 0.124999046, -1.14440918e-005, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3461. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3462. Partweld=weld(m,RArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 1.45000315, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3463. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3464. Partweld=weld(m,RArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.54501152, -0.0949978828, -7.62939453e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3465. Player=game:GetService('Players').LocalPlayer
  3466. Character=Player.Character
  3467. Mouse=Player:GetMouse()
  3468. m=Instance.new('Model',Character)
  3469.  
  3470.  
  3471. local function weldBetween(a, b)
  3472. local weldd = Instance.new("ManualWeld")
  3473. weldd.Part0 = a
  3474. weldd.Part1 = b
  3475. weldd.C0 = CFrame.new()
  3476. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3477. weldd.Parent = a
  3478. return weldd
  3479. end
  3480.  
  3481. it=Instance.new
  3482.  
  3483. function nooutline(part)
  3484. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3485. end
  3486.  
  3487. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3488. local fp=it("Part")
  3489. fp.formFactor=formfactor
  3490. fp.Parent=parent
  3491. fp.Reflectance=reflectance
  3492. fp.Transparency=transparency
  3493. fp.CanCollide=false
  3494. fp.Locked=true
  3495. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3496. fp.Name=name
  3497. fp.Size=size
  3498. fp.Position=Character.Torso.Position
  3499. nooutline(fp)
  3500. fp.Material=material
  3501. fp:BreakJoints()
  3502. return fp
  3503. end
  3504.  
  3505. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3506. local mesh=it(Mesh)
  3507. mesh.Parent=part
  3508. if Mesh=="SpecialMesh" then
  3509. mesh.MeshType=meshtype
  3510. mesh.MeshId=meshid
  3511. end
  3512. mesh.Offset=offset
  3513. mesh.Scale=scale
  3514. return mesh
  3515. end
  3516.  
  3517. function weld(parent,part0,part1,c0,c1)
  3518. local weld=it("Weld")
  3519. weld.Parent=parent
  3520. weld.Part0=part0
  3521. weld.Part1=part1
  3522. weld.C0=c0
  3523. weld.C1=c1
  3524. return weld
  3525. end
  3526.  
  3527. RLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3528. RLegweld=weld(m,Character["Right Leg"],RLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.450008392, -0.269515991, -0.949736118, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  3529. mesh("SpecialMesh",RLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3530. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3531. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.00201035, 1.44436717, 0.57000351, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3532. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3533. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.542831421, 0.283806801, 0.569999695, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
  3534. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.0700016, 1.9832561))
  3535. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.254991531, 0.96000123, -0.450004578, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3536. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3537. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.06000137, 1.91000128, -0.449989319, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3538. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3539. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.895587921, 0.0462193489, -0.450004578, 0, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, -1, 0, 0))
  3540. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3541. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00769901276, 0.173805237, 0.593242645, -0.150384068, -0.852868438, 0.500000238, 0.0868240222, 0.492404103, 0.866025329, -0.984807789, 0.173648432, -2.60770406e-007))
  3542. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3543. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.470241547, 1.62436724, 0.593242645, -0.173647985, -0.984807849, 0, 0, 0, 1, -0.984807849, 0.173647985, 0))
  3544. Player=game:GetService('Players').LocalPlayer
  3545. Character=Player.Character
  3546. Mouse=Player:GetMouse()
  3547. m=Instance.new('Model',Character)
  3548.  
  3549.  
  3550. local function weldBetween(a, b)
  3551. local weldd = Instance.new("ManualWeld")
  3552. weldd.Part0 = a
  3553. weldd.Part1 = b
  3554. weldd.C0 = CFrame.new()
  3555. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3556. weldd.Parent = a
  3557. return weldd
  3558. end
  3559.  
  3560. it=Instance.new
  3561.  
  3562. function nooutline(part)
  3563. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3564. end
  3565.  
  3566. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3567. local fp=it("Part")
  3568. fp.formFactor=formfactor
  3569. fp.Parent=parent
  3570. fp.Reflectance=reflectance
  3571. fp.Transparency=transparency
  3572. fp.CanCollide=false
  3573. fp.Locked=true
  3574. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3575. fp.Name=name
  3576. fp.Size=size
  3577. fp.Position=Character.Torso.Position
  3578. nooutline(fp)
  3579. fp.Material=material
  3580. fp:BreakJoints()
  3581. return fp
  3582. end
  3583.  
  3584. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3585. local mesh=it(Mesh)
  3586. mesh.Parent=part
  3587. if Mesh=="SpecialMesh" then
  3588. mesh.MeshType=meshtype
  3589. mesh.MeshId=meshid
  3590. end
  3591. mesh.Offset=offset
  3592. mesh.Scale=scale
  3593. return mesh
  3594. end
  3595.  
  3596. function weld(parent,part0,part1,c0,c1)
  3597. local weld=it("Weld")
  3598. weld.Parent=parent
  3599. weld.Part0=part0
  3600. weld.Part1=part1
  3601. weld.C0=c0
  3602. weld.C1=c1
  3603. return weld
  3604. end
  3605.  
  3606. Torso=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Handle",Vector3.new(2.03212667, 4.08000183, 2.04325604))
  3607. Torsoweld=weld(m,Character["Torso"],Torso,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.044511795, 0.0452680588, 0.0299835205, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3608. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3609. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.991963387, 0.394999981, -0.990013123, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3610. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.05393803, 4.16000175, 2.08000016))
  3611. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.43049431, -0.0152668953, -0.0299987793, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3612. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3613. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.07803631, 0.394999981, -0.990009308, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3614. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.43393803, 4.46000195, 2.11000013))
  3615. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0449981689, 0.119999886, 0.0149841309, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3616. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3617. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.48950481, -0.0152668953, -0.0299835205, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3618. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3619. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.708036423, 0.585000515, -0.990009308, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3620. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3621. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.571961403, 0.585000515, -0.990013123, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3622. Player=game:GetService('Players').LocalPlayer
  3623. Character=Player.Character
  3624. Mouse=Player:GetMouse()
  3625. m=Instance.new('Model',Character)
  3626.  
  3627.  
  3628. local function weldBetween(a, b)
  3629. local weldd = Instance.new("ManualWeld")
  3630. weldd.Part0 = a
  3631. weldd.Part1 = b
  3632. weldd.C0 = CFrame.new()
  3633. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3634. weldd.Parent = a
  3635. return weldd
  3636. end
  3637.  
  3638. it=Instance.new
  3639.  
  3640. function nooutline(part)
  3641. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3642. end
  3643.  
  3644. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3645. local fp=it("Part")
  3646. fp.formFactor=formfactor
  3647. fp.Parent=parent
  3648. fp.Reflectance=reflectance
  3649. fp.Transparency=transparency
  3650. fp.CanCollide=false
  3651. fp.Locked=true
  3652. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3653. fp.Name=name
  3654. fp.Size=size
  3655. fp.Position=Character.Torso.Position
  3656. nooutline(fp)
  3657. fp.Material=material
  3658. fp:BreakJoints()
  3659. return fp
  3660. end
  3661.  
  3662. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3663. local mesh=it(Mesh)
  3664. mesh.Parent=part
  3665. if Mesh=="SpecialMesh" then
  3666. mesh.MeshType=meshtype
  3667. mesh.MeshId=meshid
  3668. end
  3669. mesh.Offset=offset
  3670. mesh.Scale=scale
  3671. return mesh
  3672. end
  3673.  
  3674. function weld(parent,part0,part1,c0,c1)
  3675. local weld=it("Weld")
  3676. weld.Parent=parent
  3677. weld.Part0=part0
  3678. weld.Part1=part1
  3679. weld.C0=c0
  3680. weld.C1=c1
  3681. return weld
  3682. end
  3683.  
  3684. LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3685. LLegweld=weld(m,Character["Left Leg"],LLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450004578, -0.240491867, -0.949736118, 0, 0, 1, 1, 0, 0, 0, 1, 0))
  3686. mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3687. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
  3688. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.135001183, 0.965001106, -0.450008392, 0, 1, 0, 0, 0, 1, 1, 0, 0))
  3689. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3690. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.07999802, 1.91000128, 0.450008392, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3691. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3692. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.91526413, 0.0496888161, 0.450023651, 0, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, -1, 0, 0))
  3693. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3694. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.1345892, 1.44436717, -0.569984436, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3695. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3696. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.657648087, 0.350095749, -0.569992065, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
  3697. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3698. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.754587173, 1.624367, -0.569984436, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3699. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3700. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.238555908, 0.315980911, -0.569992065, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
  3701.  
  3702. Player=game:GetService('Players').LocalPlayer
  3703. Character=Player.Character
  3704. Mouse=Player:GetMouse()
  3705. m=Instance.new('Model',Character)
  3706.  
  3707.  
  3708. local function weldBetween(a, b)
  3709. local weldd = Instance.new("ManualWeld")
  3710. weldd.Part0 = a
  3711. weldd.Part1 = b
  3712. weldd.C0 = CFrame.new()
  3713. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3714. weldd.Parent = a
  3715. return weldd
  3716. end
  3717.  
  3718. it=Instance.new
  3719.  
  3720. function nooutline(part)
  3721. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3722. end
  3723.  
  3724. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3725. local fp=it("Part")
  3726. fp.formFactor=formfactor
  3727. fp.Parent=parent
  3728. fp.Reflectance=reflectance
  3729. fp.Transparency=transparency
  3730. fp.CanCollide=false
  3731. fp.Locked=true
  3732. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3733. fp.Name=name
  3734. fp.Size=size
  3735. fp.Position=Character.Torso.Position
  3736. nooutline(fp)
  3737. fp.Material=material
  3738. fp:BreakJoints()
  3739. return fp
  3740. end
  3741.  
  3742. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3743. local mesh=it(Mesh)
  3744. mesh.Parent=part
  3745. if Mesh=="SpecialMesh" then
  3746. mesh.MeshType=meshtype
  3747. mesh.MeshId=meshid
  3748. end
  3749. mesh.Offset=offset
  3750. mesh.Scale=scale
  3751. return mesh
  3752. end
  3753.  
  3754. function weld(parent,part0,part1,c0,c1)
  3755. local weld=it("Weld")
  3756. weld.Parent=parent
  3757. weld.Part0=part0
  3758. weld.Part1=part1
  3759. weld.C0=c0
  3760. weld.C1=c1
  3761. return weld
  3762. end
  3763.  
  3764. Orb=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Institutional white","Handle",Vector3.new(3.20000124, 3.20000124, 3.20000124))
  3765. Orb.Shape = "Ball"
  3766. Orbweld=weld(m,Character["Left Arm"],Orb,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.319931984, 3.51501703, -0.0999984741, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3767. Orb.Transparency = 0
  3768. ----------------------------------------------------
  3769. Player=game:GetService('Players').LocalPlayer
  3770. Character=Player.Character
  3771. Mouse=Player:GetMouse()
  3772. m=Instance.new('Model',Character)
  3773.  
  3774.  
  3775. local function weldBetween(a, b)
  3776. local weldd = Instance.new("ManualWeld")
  3777. weldd.Part0 = a
  3778. weldd.Part1 = b
  3779. weldd.C0 = CFrame.new()
  3780. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3781. weldd.Parent = a
  3782. return weldd
  3783. end
  3784.  
  3785. it=Instance.new
  3786.  
  3787. function nooutline(part)
  3788. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3789. end
  3790.  
  3791. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3792. local fp=it("Part")
  3793. fp.formFactor=formfactor
  3794. fp.Parent=parent
  3795. fp.Reflectance=reflectance
  3796. fp.Transparency=transparency
  3797. fp.CanCollide=false
  3798. fp.Locked=true
  3799. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3800. fp.Name=name
  3801. fp.Size=size
  3802. fp.Position=Character.Torso.Position
  3803. nooutline(fp)
  3804. fp.Material=material
  3805. fp:BreakJoints()
  3806. return fp
  3807. end
  3808.  
  3809. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3810. local mesh=it(Mesh)
  3811. mesh.Parent=part
  3812. if Mesh=="SpecialMesh" then
  3813. mesh.MeshType=meshtype
  3814. mesh.MeshId=meshid
  3815. end
  3816. mesh.Offset=offset
  3817. mesh.Scale=scale
  3818. return mesh
  3819. end
  3820.  
  3821. function weld(parent,part0,part1,c0,c1)
  3822. local weld=it("Weld")
  3823. weld.Parent=parent
  3824. weld.Part0=part0
  3825. weld.Part1=part1
  3826. weld.C0=c0
  3827. weld.C1=c1
  3828. return weld
  3829. end
  3830.  
  3831. WIngs=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Lily white","Handle",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  3832. WIngsweld=weld(m,Character["Torso"],WIngs,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.0159111, -1.20853615, -6.0207634, 0.866024971, 0.250001013, -0.433012992, -0.326577812, 0.938599944, -0.111252062, 0.378612816, 0.237759501, 0.894495845))
  3833. mesh("BlockMesh",WIngs,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  3834. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3835. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0145301819, -1.5309906, 1.12540245, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
  3836. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3837. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3838. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012840271, -2.20268631, 1.11525655, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
  3839. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3840. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3841. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 1.69621086, 2.74610329, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3842. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3843. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3844. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128326416, 3.14628506, 2.63505173, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.757224739, -0.653154373, 2.98023224e-008, -0.653154373, 0.757224917))
  3845. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3846. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3847. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 1.01108551, 2.51173878, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.0735907629, -0.997288585, 0, -0.997288525, 0.0735907704))
  3848. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3849. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3850. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 0.396331787, 2.11554885, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.187033802, -0.982353449, -7.4505806e-009, -0.982353449, -0.187033832))
  3851. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3852. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3853. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, -0.0868225098, 1.57054901, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.434913546, -0.900472343, 0, -0.900472283, -0.434913576))
  3854. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3855. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3856. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128173828, 2.42856979, 2.78783226, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, -0.826882541, 0.562374532))
  3857. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3858. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3859. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128173828, -0.416015625, 0.917181015, -1, 1.86264515e-008, 5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
  3860. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3861. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3862. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, 0.159194946, -1.12555099, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  3863. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3864. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3865. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140304565, -3.38129997, -2.7243309, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.329198927, 0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
  3866. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3867. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3868. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140457153, 1.33783531, 2.71401596, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3869. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3870. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Lily white","Part",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  3871. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.78812122, 1.92715263, -2.28927612, 0.49999845, -0.565649092, 0.655776381, 0.565651298, 0.786692977, 0.24729073, -0.655774534, 0.247295752, 0.713305533))
  3872. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  3873. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3874. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80215645, 2.86511993, 0.140659332, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3875. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3876. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3877. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80046654, -4.2369194, -0.140804291, -0.49999845, 0.565649092, -0.655776381, -0.433012724, 0.492487878, 0.754954159, 0.750001132, 0.661435425, -0.00130999088))
  3878. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3879. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3880. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80215645, -4.90860367, -0.150947571, -0.49999845, 0.565649092, -0.655776381, -0.433012724, 0.492487878, 0.754954159, 0.750001132, 0.661435425, -0.00130999088))
  3881. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3882. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3883. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80265999, -4.14035034, -0.33956337, 0.49999845, -0.565649092, 0.655776381, -0.750000596, 0.0957893208, 0.654464483, -0.433013558, -0.819063783, -0.376342565))
  3884. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3885. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3886. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095482, 3.22347641, 0.17275238, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3887. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3888. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3889. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, -4.81201553, -0.349707603, 0.49999845, -0.565649092, 0.655776381, -0.750000596, 0.0957893208, 0.654464483, -0.433013558, -0.819063783, -0.376342565))
  3890. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3891. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3892. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 2.76852798, 0.339404106, 0.49999845, -0.565649092, 0.655776381, 0.750000596, -0.0957893208, -0.654464483, 0.433013558, 0.819063783, 0.376342565))
  3893. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3894. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3895. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095482, 3.18227959, -0.357192993, -0.49999845, 0.565649092, -0.655776381, -2.98023224e-007, -0.757224619, -0.653154492, -0.866026402, -0.326576054, 0.378611445))
  3896. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3897. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3898. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094719, 3.23778915, -0.0931434631, -0.49999845, 0.565649092, -0.655776381, 0.224142939, -0.646899283, -0.728890419, -0.836517453, -0.511431754, 0.196662545))
  3899. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3900. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3901. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80093193, 3.15235138, 0.421354294, -0.49999845, 0.565649092, -0.655776381, 0.612372398, -0.304515153, -0.729568839, -0.61237365, -0.766362667, -0.194130719))
  3902. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3903. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3904. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095387, 3.00566101, 0.650568962, -0.49999845, 0.565649092, -0.655776381, 0.749999642, -0.0957909003, -0.654465079, -0.433014959, -0.819063544, -0.376341343))
  3905. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3906. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3907. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094147, 2.81278229, 0.830840111, -0.49999845, 0.565649092, -0.655776381, 0.836516857, 0.119463086, -0.534760058, -0.224145442, -0.815947115, -0.532906353))
  3908. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3909. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3910. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094433, 2.57622147, 0.953166008, -0.49999845, 0.565649092, -0.655776381, 0.866026282, 0.326575905, -0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
  3911. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3912. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3913. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 0.963986397, 2.83012009, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  3914. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3915. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3916. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, -3.00747108, -2.84039688, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
  3917. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3918. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3919. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128250122, 3.25563431, 2.63391113, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.757224739, 0.653154373, 2.98023224e-008, -0.653154373, 0.757224917))
  3920. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3921. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3922. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128440857, 2.53445959, 2.8150177, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.900472701, 0.434912592, 0, -0.434912592, 0.90047276))
  3923. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3924. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3925. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 1.79145408, 2.79978943, 1, -1.86264515e-008, -5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, -0.187033504, 0.982353628))
  3926. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3927. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3928. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128364563, -0.414859772, 1.02649212, 1, -1.86264515e-008, -5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, -1.49011612e-008, 0.757224798, 0.653154254))
  3929. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3930. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3931. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 0.451953888, 2.2096405, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.94426012, -0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
  3932. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3933. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3934. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128364563, 1.08917046, 2.58826447, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  3935. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3936. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3937. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, -0.057434082, 1.67582893, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.826882601, -0.562374711, 0, 0.562374711, 0.82688272))
  3938. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3939. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3940. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140419006, -1.82085991, 1.02886391, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
  3941. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3942. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3943. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.014541626, -2.33579445, -2.83024597, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
  3944. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3945. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3946. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0123214722, -1.149189, 1.03900719, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
  3947. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3948. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3949. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.01404953, -0.222623825, -1.03916359, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  3950. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3951. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3952. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80045509, -4.03017044, 0.229810715, -0.49999845, 0.565649092, -0.655776381, -0.836517692, -0.511431158, 0.196663141, -0.224142194, 0.6468997, 0.7288903))
  3953. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3954. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3955. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094051, 3.2564106, 0.190433502, 0.49999845, -0.565649092, 0.655776381, 0.433015227, 0.819063604, 0.376341105, -0.749999583, 0.0957911685, 0.654465318))
  3956. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3957. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3958. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093765, 3.05438042, 0.688827515, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
  3959. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3960. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3961. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093765, 3.21963882, -0.358337402, 0.49999845, -0.565649092, 0.655776381, 2.98023224e-007, 0.757224619, 0.653154492, -0.866026402, -0.326576054, 0.378611445))
  3962. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3963. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3964. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80095196, 3.27416515, -0.0845680237, 0.49999845, -0.565649092, 0.655776381, 0.224145487, 0.815947115, 0.532906294, -0.836516857, -0.119463041, 0.534760058))
  3965. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3966. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3967. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094719, 2.57737732, 0.990515709, 0.49999845, -0.565649092, 0.655776381, 0.866026282, 0.326575905, -0.378611505, 4.32133675e-007, 0.757224679, 0.653154492))
  3968. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3969. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3970. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 3.0253334, 0.682353973, 0.49999845, -0.565649092, 0.655776381, 0.75000155, 0.66143465, -0.00131103396, -0.433011711, 0.492488772, 0.7549541))
  3971. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3972. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3973. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.8026638, -4.42617226, -0.68901062, 0.49999845, -0.565649092, 0.655776381, -0.612375081, -0.766361952, -0.194129199, 0.612371087, -0.304516733, -0.729569316))
  3974. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3975. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3976. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093575, -5.09785843, -0.699146271, 0.49999845, -0.565649092, 0.655776381, -0.612375081, -0.766361952, -0.194129199, 0.612371087, -0.304516733, -0.729569316))
  3977. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3978. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3979. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 2.8235321, 0.866632462, 0.49999845, -0.565649092, 0.655776381, 0.836517394, 0.511432052, -0.196662098, -0.224143416, 0.646898985, 0.728890657))
  3980. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3981. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3982. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80217552, -4.70182419, 0.219669342, -0.49999845, 0.565649092, -0.655776381, -0.836517692, -0.511431158, 0.196663141, -0.224142194, 0.6468997, 0.7288903))
  3983. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3984. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3985. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80096149, 3.17957115, 0.446971893, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
  3986. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3987. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3988. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216312, 2.65835953, -0.229951859, -0.49999845, 0.565649092, -0.655776381, 0.836517692, 0.511431158, -0.196663141, 0.224142194, -0.6468997, -0.7288903))
  3989. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3990. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3991. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0123329163, -2.7096405, -2.71417046, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.329198927, 0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
  3992. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3993. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  3994. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000423431396, 0.000568389893, 0.0205516815, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3995. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3996. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  3997. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.397033691, 0.00685501099, 0.361976624, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3998. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  3999. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  4000. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000408172607, 0.000564575195, 0.0234174728, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4001. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4002. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  4003. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000427246094, 0.00227355957, 0.0205459595, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4004. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4005. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  4006. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000438690186, 0.00173950195, 0.0229845047, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4007. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4008. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4009. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146331787, -3.40140152, -1.11369061, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  4010. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4011. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4012. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, 1.63386917, 1.11945939, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
  4013. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4014. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4015. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122375488, -6.76598835, 0.57843399, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.608101726, 0.793859124, 0, -0.793859184, 0.608101785))
  4016. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4017. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  4018. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.385643005, 0.0125732422, -0.371212006, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4019. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  4020. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4021. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0115966797, -0.543251038, 1.7864542, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.434913546, 0.900472343, 0, -0.900472283, -0.434913576))
  4022. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4023. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4024. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0116043091, -1.59219742, 2.67541885, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, -0.997288525, 0.0735907704))
  4025. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4026. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4027. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0115814209, -2.22006989, 2.7550087, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  4028. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4029. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4030. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.011592865, -1.02312088, 2.25215411, 1, -1.86264515e-008, -5.96046448e-008, 0, -0.187033802, 0.982353449, -7.4505806e-009, -0.982353449, -0.187033832))
  4031. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4032. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  4033. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0116004944, -0.851036072, 0.823085785, 1, -1.86264515e-008, -5.96046448e-008, 5.96046448e-008, -0.653154254, 0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
  4034. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4035. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  4036. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0116004944, -4.12805939, 3.14675999, -1, 1.86264515e-008, 5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
  4037. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4038. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4039. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146331787, -1.75381827, 0.0856170654, 1, -1.86264515e-008, -5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, -0.187033504, 0.982353628))
  4040. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4041. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4042. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146331787, -1.7653625, 1.58002472, -1, 1.86264515e-008, 5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, 0.187033504, -0.982353628))
  4043. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4044. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4045. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146217346, 1.84269714, 2.61419201, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, 0.484992713, -0.874518216, 0, -0.874518156, -0.484992743))
  4046. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4047. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4048. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -1.39143753, -1.12134099, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  4049. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4050. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4051. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, -4.44521141, -2.69960213, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.484992713, 0.874518216, 0, 0.874518156, 0.484992743))
  4052. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4053. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4054. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146102905, -1.24437332, -1.12705016, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  4055. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4056. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4057. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.012260437, 2.08576965, -1.09300995, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
  4058. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4059. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4060. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, 2.07419205, 2.7586441, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, -2.98023224e-008, -0.329200208, -0.94426012))
  4061. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4062. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4063. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, 2.81254005, -2.72010994, 1, -1.86264515e-008, -5.96046448e-008, 0, -0.329198927, -0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
  4064. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4065. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4066. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0122528076, -0.0657215118, 2.71253204, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  4067. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4068. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4069. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, -4.58002281, 2.72588158, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  4070. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4071. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4072. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122489929, -2.57005119, 2.71822929, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  4073. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4074. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4075. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122451782, 4.16341972, -0.663871765, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, -0.608101726, -0.793859124, 0, 0.793859184, -0.608101785))
  4076. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4077. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  4078. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0115814209, -4.30217743, 3.24400997, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.627695382, -0.778459072, -1.49011612e-008, -0.778458953, -0.627695441))
  4079. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4080. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  4081. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99267197, 4.78870678, -0.0154352188, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4082. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4083. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  4084. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.59518433, 4.79498959, 0.32599926, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4085. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  4086. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  4087. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99268341, 4.7886982, -0.0125761032, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4088. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4089. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  4090. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99270248, 4.79042339, -0.0154447556, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4091. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4092. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  4093. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99266815, 4.78983879, -0.0129785538, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4094. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4095. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4096. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80036545, 4.80890846, 2.25815582, 0.49999845, -0.565649092, 0.655776381, 0.176621437, -0.674706042, -0.716642678, 0.847824514, 0.474144399, -0.237446278))
  4097. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4098. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4099. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037117, -4.09732819, 0.144859314, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  4100. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4101. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4102. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -6.10728073, 0.152519226, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  4103. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4104. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4105. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037498, -0.499183655, 4.28593826, 0.49999845, -0.565649092, 0.655776381, -0.75000155, -0.66143465, 0.00131103396, 0.433011711, -0.492488772, -0.7549541))
  4106. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4107. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4108. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.802742, 1.36500931, 0.337909698, 0.49999845, -0.565649092, 0.655776381, 0.750000596, -0.0957893208, -0.654464483, 0.433013558, 0.819063783, 0.376342565))
  4109. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4110. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4111. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80034828, 1.46158218, 0.139152527, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  4112. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4113. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4114. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037212, -0.487609863, -2.62030792, -0.49999845, 0.565649092, -0.655776381, -0.75000155, -0.66143465, 0.00131103396, -0.433011711, 0.492488772, 0.7549541))
  4115. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4116. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4117. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80035973, 4.33980179, -0.146759033, 0.49999845, -0.565649092, 0.655776381, 0.433012724, -0.492487878, -0.754954159, 0.750001132, 0.661435425, -0.00130999088))
  4118. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4119. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4120. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -7.41146851, -2.34357452, 0.49999845, -0.565649092, 0.655776381, -0.176621437, 0.674706042, 0.716642678, -0.847824514, -0.474144399, 0.237446278))
  4121. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4122. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4123. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.8027401, 4.77935791, 2.0391655, -0.49999845, 0.565649092, -0.655776381, 0.847824097, 0.16527845, -0.50386256, -0.176623657, -0.807913423, -0.562209845))
  4124. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4125. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4126. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274773, -0.288840294, -2.52373123, 0.49999845, -0.565649092, 0.655776381, 0.433015227, 0.819063604, 0.376341105, -0.749999583, 0.0957911685, 0.654465318))
  4127. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4128. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  4129. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.60663605, 4.80071163, -0.407197952, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4130. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  4131. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4132. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274963, -0.300402641, 4.18932724, -0.49999845, 0.565649092, -0.655776381, 0.433015227, 0.819063604, 0.376341105, 0.749999583, -0.0957911685, -0.654465318))
  4133. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4134. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4135. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80271721, -4.00077438, 0.34360981, -0.49999845, 0.565649092, -0.655776381, -0.750000596, 0.0957893208, 0.654464483, 0.433013558, 0.819063783, 0.376342565))
  4136. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4137. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4138. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.802742, 4.24324417, -0.345514297, -0.49999845, 0.565649092, -0.655776381, 0.750000596, -0.0957893208, -0.654464483, -0.433013558, -0.819063783, -0.376342565))
  4139. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4140. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4141. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274391, -7.38192749, -2.1245718, -0.49999845, 0.565649092, -0.655776381, -0.847824097, -0.16527845, 0.50386256, 0.176623657, 0.807913423, 0.562209845))
  4142. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4143. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4144. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971504, -3.44285583, 1.04676247, 0.49999845, -0.565649092, 0.655776381, -0.836516857, -0.119463086, 0.534760058, -0.224145442, -0.815947115, -0.532906353))
  4145. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4146. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4147. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971695, -3.73348618, 0.58502388, 0.49999845, -0.565649092, 0.655776381, -0.612372398, 0.304515153, 0.729568839, -0.61237365, -0.766362667, -0.194130719))
  4148. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4149. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4150. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.802742, -6.01073456, 0.351270676, -0.49999845, 0.565649092, -0.655776381, -0.750000596, 0.0957893208, 0.654464483, 0.433013558, 0.819063783, 0.376342565))
  4151. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4152. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4153. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79972649, -3.63246918, 0.787195206, 0.49999845, -0.565649092, 0.655776381, -0.749999642, 0.0957909003, 0.654465079, -0.433014959, -0.819063544, -0.376341343))
  4154. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4155. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  4156. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.79971886, -1.31037903, 3.18079185, -0.49999845, 0.565649092, -0.655776381, 0.865550399, 0.301296592, -0.400053799, -0.0287068337, -0.767633677, -0.640245616))
  4157. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4158. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  4159. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.79972172, -1.1358223, 3.18273926, -0.49999845, 0.565649092, -0.655776381, 0.866026282, 0.326575905, -0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
  4160. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4161. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4162. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.7997303, -3.74736404, 0.181629181, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  4163. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4164. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  4165. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971409, -3.84326553, 0.859061241, 0.49999845, -0.565649092, 0.655776381, -0.866026282, -0.326575905, 0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
  4166. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4167. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4168. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146179199, -0.439552307, 2.82862473, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  4169. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4170. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4171. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, 2.43866539, -2.83621216, -1, 1.86264515e-008, 5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
  4172. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4173. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4174. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, 2.19028473, 2.38479328, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, 0.997288525, -0.0735907704))
  4175. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4176. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4177. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146331787, 2.20183945, -0.719162941, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, -0.997288525, 0.0735907704))
  4178. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4179. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4180. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140457153, -2.31531954, 2.80868149, -1, 1.86264515e-008, 5.96046448e-008, -5.58793545e-009, -0.982353508, -0.187033504, 0, -0.187033504, 0.982353628))
  4181. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4182. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4183. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -1.67030334, 2.75189209, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  4184. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4185. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4186. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0145950317, -6.44722939, 0.805679321, -1, 1.86264515e-008, 5.96046448e-008, 1.11758709e-008, -0.970244586, -0.242127106, 0, -0.242127106, 0.970244527))
  4187. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4188. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4189. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140609741, -0.572654724, 1.89173317, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.826882601, 0.562374711, 0, 0.562374711, 0.82688272))
  4190. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4191. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4192. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -1.07876587, 2.34624863, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
  4193. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4194. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4195. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -4.20618105, 2.84195328, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  4196. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4197. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4198. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -2.19620895, 2.83431244, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  4199. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4200. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4201. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, 3.84465933, -0.891094208, -1, 1.86264515e-008, 5.96046448e-008, -1.11758709e-008, 0.970244586, 0.242127106, 0, 0.242127106, -0.970244527))
  4202. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4203. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4204. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012260437, 1.25204659, 1.03306961, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
  4205. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4206. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4207. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122413635, -3.0195713, -1.02729225, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  4208. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4209. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4210. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0122451782, -1.66742134, 0.467433929, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, -0.826882541, 0.562374532))
  4211. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4212. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4213. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122451782, -1.67897987, 1.19819832, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, 0.826882541, -0.562374532))
  4214. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4215. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4216. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122489929, 1.50705338, 2.41267586, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.609420419, -0.792847335, 0, 0.792847276, 0.609420419))
  4217. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4218. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4219. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012260437, -1.00959778, -1.03495979, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  4220. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4221. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4222. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, -4.10961151, -2.49808693, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.609420419, 0.792847335, 0, -0.792847276, -0.609420419))
  4223. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4224. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4225. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.012260437, -1.6261673, -1.04066467, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  4226. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4227. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  4228. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -0.852184296, 0.906645775, -1, 1.86264515e-008, 5.96046448e-008, 5.96046448e-008, -0.653154254, 0.757224917, -1.49011612e-008, 0.757224798, 0.653154254))
  4229. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4230. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4231. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80034447, -0.86977005, 4.07917023, 0.49999845, -0.565649092, 0.655776381, 0.224142939, -0.646899283, -0.728890419, 0.836517453, 0.511431754, -0.196662545))
  4232. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4233. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4234. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038261, -7.09912872, -2.63088512, 0.49999845, -0.565649092, 0.655776381, -0.864648581, -0.283361614, 0.414836287, -0.0488298535, -0.774433494, -0.630768061))
  4235. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4236. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4237. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -3.89056778, -0.225765228, 0.49999845, -0.565649092, 0.655776381, -0.836517692, -0.511431158, 0.196663141, 0.224142194, -0.6468997, -0.7288903))
  4238. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4239. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4240. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038261, -5.9005394, -0.218101501, 0.49999845, -0.565649092, 0.655776381, -0.836517692, -0.511431158, 0.196663141, 0.224142194, -0.6468997, -0.7288903))
  4241. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4242. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4243. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037498, -0.858222961, -2.41352463, -0.49999845, 0.565649092, -0.655776381, 0.224142939, -0.646899283, -0.728890419, -0.836517453, -0.511431754, 0.196662545))
  4244. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4245. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4246. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037594, 4.49656296, 2.54547501, 0.49999845, -0.565649092, 0.655776381, 0.864648581, 0.283361614, -0.414836287, 0.0488298535, 0.774433494, 0.630768061))
  4247. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4248. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4249. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.8027277, 0.0490112305, 4.47517967, -0.49999845, 0.565649092, -0.655776381, -0.612372398, 0.304515153, 0.729568839, 0.61237365, 0.766362667, 0.194130719))
  4250. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4251. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4252. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274391, 0.0605697632, -2.80956078, 0.49999845, -0.565649092, 0.655776381, -0.612372398, 0.304515153, 0.729568839, -0.61237365, -0.766362667, -0.194130719))
  4253. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4254. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4255. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274677, 4.52905464, -0.69493866, -0.49999845, 0.565649092, -0.655776381, 0.612375081, 0.766361952, 0.194129199, 0.612371087, -0.304516733, -0.729569316))
  4256. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4257. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4258. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274773, 1.65083885, 0.687343597, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
  4259. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4260. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4261. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80273438, 5.16016769, 1.79669189, -0.49999845, 0.565649092, -0.655776381, 0.390038431, 0.823161662, 0.412643731, 0.773221493, -0.0494567379, -0.632204533))
  4262. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4263. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4264. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038166, 4.13302612, 0.223876953, 0.49999845, -0.565649092, 0.655776381, 0.836517692, 0.511431158, -0.196663141, -0.224142194, 0.6468997, 0.7288903))
  4265. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4266. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4267. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80273819, -4.28659248, 0.693054199, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
  4268. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4269. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4270. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80276012, -6.29656792, 0.700717926, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
  4271. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4272. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4273. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216217, -3.78028393, 0.199310303, -0.49999845, 0.565649092, -0.655776381, -0.433015227, -0.819063604, -0.376341105, -0.749999583, 0.0957911685, 0.654465318))
  4274. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4275. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4276. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216694, -3.76069069, 0.610641479, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
  4277. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4278. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4279. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80275726, -7.76274252, -1.88209915, -0.49999845, 0.565649092, -0.655776381, -0.390038431, -0.823161662, -0.412643731, -0.773221493, 0.0494567379, 0.632204533))
  4280. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4281. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  4282. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216217, -3.84443283, 0.870663643, -0.49999845, 0.565649092, -0.655776381, -0.866026282, -0.326575905, 0.378611505, 4.32133675e-007, 0.757224679, 0.653154492))
  4283. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4284. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4285. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80217838, -3.45362091, 1.0825386, -0.49999845, 0.565649092, -0.655776381, -0.836517394, -0.511432052, 0.196662098, -0.224143416, 0.646898985, 0.728890657))
  4286. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4287. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4288. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216312, -3.65211487, 0.818996429, -0.49999845, 0.565649092, -0.655776381, -0.75000155, -0.66143465, 0.00131103396, -0.433011711, 0.492488772, 0.7549541))
  4289. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4290. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4291. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037689, 1.2548027, -0.231477737, -0.49999845, 0.565649092, -0.655776381, 0.836517692, 0.511431158, -0.196663141, 0.224142194, -0.6468997, -0.7288903))
  4292. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4293. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  4294. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.37387466, 0.0131607056, 3.24288177, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4295. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  4296. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4297. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45108032, -0.324279785, 3.24173164, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4298. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4299. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  4300. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45108795, 0.0165786743, 3.23201942, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4301. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4302. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4303. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45106888, 0.370029449, 3.24633598, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4304. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4305. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4306. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458839417, 5.15813541, 3.2103529, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4307. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4308. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4309. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458843231, 4.46384811, 3.20575047, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4310. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4311. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  4312. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458824158, 4.80470562, 3.19602489, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4313. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4314. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  4315. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.381649017, 4.80128193, 3.20690632, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4316. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  4317.  
  4318.  
  4319.  
  4320.  
  4321. Player=game:GetService('Players').LocalPlayer
  4322. Character=Player.Character
  4323. Mouse=Player:GetMouse()
  4324. m=Instance.new('Model',Character)
  4325.  
  4326.  
  4327. local function weldBetween(a, b)
  4328. local weldd = Instance.new("ManualWeld")
  4329. weldd.Part0 = a
  4330. weldd.Part1 = b
  4331. weldd.C0 = CFrame.new()
  4332. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4333. weldd.Parent = a
  4334. return weldd
  4335. end
  4336.  
  4337. it=Instance.new
  4338.  
  4339. function nooutline(part)
  4340. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4341. end
  4342.  
  4343. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4344. local fp=it("Part")
  4345. fp.formFactor=formfactor
  4346. fp.Parent=parent
  4347. fp.Reflectance=reflectance
  4348. fp.Transparency=transparency
  4349. fp.CanCollide=false
  4350. fp.Locked=true
  4351. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4352. fp.Name=name
  4353. fp.Size=size
  4354. fp.Position=Character.Torso.Position
  4355. nooutline(fp)
  4356. fp.Material=material
  4357. fp:BreakJoints()
  4358. return fp
  4359. end
  4360.  
  4361. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4362. local mesh=it(Mesh)
  4363. mesh.Parent=part
  4364. if Mesh=="SpecialMesh" then
  4365. mesh.MeshType=meshtype
  4366. mesh.MeshId=meshid
  4367. end
  4368. mesh.Offset=offset
  4369. mesh.Scale=scale
  4370. return mesh
  4371. end
  4372.  
  4373. function weld(parent,part0,part1,c0,c1)
  4374. local weld=it("Weld")
  4375. weld.Parent=parent
  4376. weld.Part0=part0
  4377. weld.Part1=part1
  4378. weld.C0=c0
  4379. weld.C1=c1
  4380. return weld
  4381. end
  4382.  
  4383. BladeEnd=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 2.40790987, 0.825482368))
  4384. BladeEndweld=weld(m,Character["Right Arm"],BladeEnd,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450769424, -5.79949188, -1.7236805, -0.999986351, -0.00451200129, -0.00263599772, 0.00276065455, -0.0278460663, -0.999610126, 0.00443684589, -0.999605477, 0.0278581958))
  4385. mesh("BlockMesh",BladeEnd,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4386. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 2.93125677, 0.825482368))
  4387. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.90734863e-005, -5.98527908, 0.00445604324, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4388. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4389. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
  4390. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-005, -2.39555359, 3.80643082, 1, -5.3551048e-009, 1.5788828e-009, -1.62981451e-009, 0.500003278, 0.866030395, 5.12227416e-009, -0.866027415, 0.500004888))
  4391. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4392. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
  4393. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-006, 2.40819931, 3.84829712, 1, -5.3551048e-009, 1.5788828e-009, 4.07453626e-009, -0.499998868, 0.866032958, 3.95812094e-009, -0.866030097, -0.500000536))
  4394. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.834210217))
  4395. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
  4396. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.33514404e-005, 0.468460083, -1.15685654, 1, -5.3551048e-009, 1.5788828e-009, 1.62981451e-009, -0.500003278, -0.866030395, -5.12227416e-009, 0.866027415, -0.500004888))
  4397. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4398. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 3.13969851, 0.398512334))
  4399. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.7220459e-006, -2.85785294, 0.00391054153, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4400. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4401. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
  4402. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.458122253, -1.16581345, 1, -5.3551048e-009, 1.5788828e-009, -4.07453626e-009, 0.499998868, -0.866032958, -3.95812094e-009, 0.866030097, 0.500000536))
  4403. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4404. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4405. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00392150879, -0.000373840332, 6.66751862, 1, -3.30619514e-008, -9.9773024e-007, 1.00096076e-006, 1.07847154e-006, 1.00000679, -2.28174031e-008, -1.00000346, 1.09151006e-006))
  4406. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.884725809, 0.0892784372))
  4407. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4408. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00390815735, 6.52303314, 1.88164616, 1, -5.3551048e-009, 1.5788828e-009, 5.58793545e-009, -0.965928555, 0.258823007, -4.65661287e-010, -0.258822083, -0.965931714))
  4409. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4410. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4411. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391769409, 0.0489282608, 6.86997986, 1, -3.30619514e-008, -9.9773024e-007, 1.00096076e-006, 1.07847154e-006, 1.00000679, -2.28174031e-008, -1.00000346, 1.09151006e-006))
  4412. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.616281807, 0.0892784372))
  4413. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4414. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391578674, 5.61977386, 3.36309242, 1, -3.30619514e-008, -9.9773024e-007, 4.8102811e-007, -0.866027653, 0.50000453, -8.77771527e-007, -0.500002861, -0.866030633))
  4415. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.794125915, 0.0892784372))
  4416. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.452364713, 0.333971083))
  4417. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0039100647, -6.65688705, 0.13747406, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4418. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 1, 0.0892784372))
  4419. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4420. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391578674, 6.71179581, 0.134818077, 1, -5.3551048e-009, 1.5788828e-009, 5.3551048e-009, -1.00000346, 5.58793545e-009, -1.5788828e-009, 5.58793545e-009, -1.00000691))
  4421. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.34112677, 0.0892784372))
  4422. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4423. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00389480591, 4.77613449, 4.91134644, 1, -5.3551048e-009, 1.5788828e-009, 4.88944352e-009, -0.707108498, 0.707112134, 2.79396772e-009, -0.707109809, -0.707111001))
  4424. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4425. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4426. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00392341614, 5.84634399, 3.51166153, 1, -5.3551048e-009, 1.5788828e-009, 5.3551048e-009, -0.86602813, 0.500003815, 1.62981451e-009, -0.500002027, -0.866031051))
  4427. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4428. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4429. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00389862061, 1.71303558, 6.64987946, 1, -3.30619514e-008, -9.9773024e-007, 9.61008482e-007, -0.258820415, 0.96593225, -2.80793756e-007, -0.965929031, -0.258821368))
  4430. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4431. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.672227144, 1.760818))
  4432. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00542259216, -0.378371716, 8.37445831, -1, -8.87969509e-006, 4.24777681e-006, -4.31565422e-006, 0.00727553666, -0.999980152, 8.85874033e-006, -0.999976993, -0.00727554969))
  4433. mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.774613976, 1, 1))
  4434. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 5.69591618, 0.333971083))
  4435. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000516891479, -2.73707199, -0.00561141968, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4436. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.844456613, 1, 0.458388805))
  4437. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 8.72168827, 1.36339724))
  4438. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00561523438, -3.13931656, -0.0179476738, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4439. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.760567904, 1, 1))
  4440. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.681192338, 1.760818))
  4441. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00429534912, -0.295157909, 8.37542725, 1, 8.87969509e-006, -4.24777681e-006, 4.31533408e-006, -0.0072765369, 0.999980271, 8.85874033e-006, -0.999976933, -0.0072765518))
  4442. mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.767835736, 1, 1))
  4443. Handle=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 3.65670252, 0.333971083))
  4444. Handleweld=weld(m,BladeEnd,Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00547122955, -5.38523102, -0.00175476074, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1.36788003e-006, -1.00000346, 2.09547579e-006, 1, 1.35786831e-006, 1.63512595e-007))
  4445. mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(0.677820504, 1, 0.80868715))
  4446. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4447. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00848770142, 4.68890381, 5.0786438, -1, 5.3551048e-009, -1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, -4.88944352e-009, 0.707108498, -0.707112134))
  4448. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.567087829))
  4449. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.90585577, 1.45080817))
  4450. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0022315979, 2.16143417, -0.0224318504, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4451. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4452. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4453. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000429153442, -0.148144245, 1.37475967, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4454. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4455. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4456. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00186729431, 0.705814362, 1.8845787, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
  4457. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
  4458. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.730286956, 0.333971083))
  4459. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00281333923, 2.86053848, 0.11316824, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4460. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
  4461. Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.51886344, 0.333971083, 0.636532664))
  4462. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00347757339, -0.00207901001, 2.874897, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4463. mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.842242956, 1))
  4464. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4465. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000751495361, 0.735794067, 2.04483795, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
  4466. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4467. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.750458777, 0.333971083))
  4468. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00281143188, 2.86390305, -0.125523567, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4469. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
  4470. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 2.43250322))
  4471. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225639343, 3.24793243, -0.0257816315, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4472. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4473. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
  4474. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00573730469, 5.12487411, 5.07043457, 1, -5.3551048e-009, 1.5788828e-009, -4.88944352e-009, 0.707108498, -0.707112134, -2.79396772e-009, 0.707109809, 0.707111001))
  4475. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4476. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4477. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00847434998, 5.07132339, 5.49375916, -1, 5.3551048e-009, -1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, -4.88944352e-009, 0.707108498, -0.707112134))
  4478. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
  4479. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
  4480. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225067139, 0.240013123, -0.00784635544, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4481. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.869846582, 1, 1))
  4482. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4483. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00223922729, 3.48665237, -0.0140166283, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4484. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 0.414765924))
  4485. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.23496354, 0.333971083))
  4486. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0057144165, 6.50336838, 0.0964884758, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4487. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.637554169))
  4488. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4489. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00573348999, 4.2307663, -4.09196472, 1, -5.3551048e-009, 1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, 4.88944352e-009, -0.707108498, 0.707112134))
  4490. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 0.452999234, 0.452998996))
  4491. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
  4492. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00227165222, 3.39096451, 0.390414715, 1, -5.3551048e-009, 1.5788828e-009, -5.58793545e-009, 0.965928555, -0.258823007, 4.65661287e-010, 0.258822083, 0.965931714))
  4493. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4494. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
  4495. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225067139, 3.38317871, -0.408802032, 1, -5.3551048e-009, 1.5788828e-009, -4.42378223e-009, 0.965928733, 0.25882256, 2.96859071e-009, -0.258821636, 0.965931952))
  4496. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4497. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.530070603, 0.595068455))
  4498. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00849342346, -3.96007156, 6.41414642, -1.00000012, 2.06101686e-006, 1.94132008e-006, 5.31668775e-007, -0.539589584, 0.841935158, 2.77510844e-006, 0.841932237, 0.539591372))
  4499. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 1, 1))
  4500. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.452745259, 0.333971083))
  4501. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00574302673, 4.75794983, 4.6880188, 1, -5.3551048e-009, 1.5788828e-009, -4.88944352e-009, 0.707108498, -0.707112134, -2.79396772e-009, 0.707109809, 0.707111001))
  4502. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4503. Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.356368661))
  4504. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00491142273, -3.52550125, -0.00119590759, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1.36788003e-006, -1.00000346, 2.09547579e-006, 1, 1.35786831e-006, 1.63512595e-007))
  4505. mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.788553476, 0.718087614, 1))
  4506. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
  4507. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224113464, 0.895763397, 0.829719543, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 0.866027653, -0.50000453, -1.39698386e-009, 0.500002861, 0.866030633))
  4508. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4509. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4510. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000440597534, -0.138348579, 0.894599915, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4511. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4512. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4513. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000467300415, -0.172971725, -4.87036133, 1, -3.86452302e-006, 5.11141843e-006, 5.13588748e-006, 0.00727250986, -0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4514. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4515. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4516. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00296974182, 0.775684357, 2.01208115, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
  4517. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4518. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4519. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000457763672, -0.0884757042, 7.14133453, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4520. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4521. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4522. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00278663635, 2.60951233, -0.0151414871, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4523. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 0.683390796, 0.723476529))
  4524. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4525. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00187492371, 0.745685577, 1.8518219, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
  4526. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
  4527. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4528. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00299263, -1.55075121, 3.68893433, -1, 9.7672455e-007, -1.02919876e-006, -1.01856858e-006, 0.007278217, 0.99998033, 9.73697752e-007, 0.999976873, -0.00727825798))
  4529. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4530. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4531. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000438690186, -0.132833481, 0.892940521, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4532. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4533. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4534. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000461578369, -0.098233223, -4.87198639, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4535. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4536. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4537. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000400543213, -0.123067856, 1.37639999, 1, -3.86452302e-006, 5.11141843e-006, 5.13588748e-006, 0.00727250986, -0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4538. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4539. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4540. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00226783752, -1.49668598, 3.68751907, 1, 2.25845724e-008, 1.00135367e-006, 9.98486939e-007, 0.00727552548, -0.999980271, -4.02797014e-008, 0.999976993, 0.00727553107))
  4541. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4542. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
  4543. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00223731995, -6.00695419, -0.00337791443, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4544. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.861234307, 1, 1))
  4545. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4546. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000419616699, -0.182757378, 7.13973236, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4547. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4548. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
  4549. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224304199, 0.873001099, -0.876026154, 1, -5.3551048e-009, 1.5788828e-009, -3.25962901e-009, 0.866028011, 0.500003994, 3.95812094e-009, -0.500002265, 0.866030872))
  4550. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4551. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.397666305, 1.13997447))
  4552. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000431060791, -0.155970097, 8.00754547, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4553. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.798337698, 1, 1))
  4554. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.435768574, 1.13997447))
  4555. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00150680542, -0.259859562, 8.01216888, -1, -8.87969509e-006, 4.24777681e-006, -4.31565422e-006, 0.00727553666, -0.999980152, 8.85874033e-006, -0.999976993, -0.00727554969))
  4556. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.805115938, 1, 1))
  4557. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
  4558. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00572776794, 3.31259918, 1.56507874, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 0.86602813, -0.500003815, -1.62981451e-009, 0.500002027, 0.866031051))
  4559. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4560. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4561. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00847244263, 1.56596184, 3.68146133, -1, 5.3551048e-009, -1.5788828e-009, -1.62981451e-009, 0.500003278, 0.866030395, -5.12227416e-009, 0.866027415, -0.500004888))
  4562. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
  4563. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4564. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00846862793, -0.113676071, -3.98678207, -1, 5.3551048e-009, -1.5788828e-009, -6.54836185e-010, -0.114217885, -0.993462563, 5.3551048e-009, -0.993459225, 0.11421828))
  4565. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.563732326))
  4566. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.652221978))
  4567. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00847244263, 2.12783813, 4.00239944, 1, 5.0291419e-008, 2.00066279e-006, 1.7893035e-006, 0.418343931, -0.908295453, -8.91042873e-007, 0.908292413, 0.418345362))
  4568. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.523465693, 1))
  4569. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.534553051))
  4570. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00848197937, -0.114953518, 4.34464645, 1, -5.3551048e-009, 1.5788828e-009, -6.54836185e-010, -0.114217885, -0.993462563, -5.3551048e-009, 0.993459165, -0.114218257))
  4571. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 1))
  4572. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 1.76913583, 0.333971083))
  4573. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00280761719, 2.54881287, -0.00673675537, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4574. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 1, 0.444966584))
  4575. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4576. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00242233276, 0.781448364, 1.95035934, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
  4577. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
  4578. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4579. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.11886787, -0.00262260437, 3.30176163, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4580. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4581. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4582. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00124740601, -0.197305202, 1.52207947, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4583. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4584. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4585. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.12582397, -0.00260162354, 3.30752563, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4586. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4587. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4588. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00125694275, -0.156280041, 1.52334595, 1, -3.86452302e-006, 5.11141843e-006, 5.13573468e-006, 0.00727050938, -0.999980271, 3.81702557e-006, 0.999976993, 0.00727053359))
  4589. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4590. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
  4591. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00126838684, 2.85546875, 0.447472572, 1, 2.25845724e-008, 1.00135367e-006, -4.02797014e-008, 0.999976933, 0.00727766939, -9.98494215e-007, -0.00727765262, 0.999980211))
  4592. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
  4593. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
  4594. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00126075745, 1.30287552, 1.671875, -1, 3.86452302e-006, -5.11141843e-006, -9.32952389e-007, 0.701947451, 0.712235808, 6.33043237e-006, 0.712233365, -0.701949954))
  4595. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
  4596. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
  4597. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00127220154, 2.8675766, 0.511937141, -1, 3.86452302e-006, -5.11141843e-006, 3.81679274e-006, 0.999976873, 0.00727466121, 5.1354582e-006, 0.00727464817, -0.999980271))
  4598. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
  4599. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4600. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00128173828, 0.741531372, 1.98311234, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
  4601. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
  4602. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4603. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00129127502, 2.06131363, -1.58065796, -1, 3.86452302e-006, -5.11141843e-006, 6.3306652e-006, 0.712233424, -0.701949954, 9.32952389e-007, -0.701947451, -0.712235808))
  4604. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.873242319))
  4605. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4606. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.65778923, -0.00261688232, 3.554142, 9.13976692e-007, -0.298402101, 0.954447031, 1, 2.66823918e-007, -8.68145435e-007, -4.42378223e-009, 0.954443753, 0.298403084))
  4607. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4608. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4609. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.071811676, -0.00623512268, 6.19100571, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4610. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4611. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4612. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718102455, -0.00624275208, 6.83526611, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4613. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4614. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4615. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718164444, -0.00625419617, 6.99786377, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4616. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4617. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4618. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718173981, -0.00625228882, 6.02839279, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4619. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4620. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
  4621. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00294113159, -1.51745224, 3.69674301, 1, 2.25845724e-008, 1.00135367e-006, 9.98486939e-007, 0.00727552548, -0.999980271, -4.02797014e-008, 0.999976993, 0.00727553107))
  4622. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
  4623. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4624. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00124549866, -0.169769287, 1.02795029, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4625. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4626. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4627. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00121879578, -0.147402763, -4.72467804, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4628. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4629. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4630. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00126075745, 2.0196228, -1.61859512, 1, 2.25845724e-008, 1.00135367e-006, -7.34464265e-007, 0.70194453, 0.712238789, -6.76838681e-007, -0.712236404, 0.701947033))
  4631. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.940353274))
  4632. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
  4633. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00123596191, 1.31023407, 1.65644073, 1, 4.13204543e-006, 4.88809019e-006, 5.71715645e-007, 0.701945722, -0.712237537, -6.37990888e-006, 0.712235212, 0.701948166))
  4634. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
  4635. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
  4636. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224876404, -5.9966774, -0.00673389435, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4637. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
  4638. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4639. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00121307373, -0.206172466, -4.72341537, 1, -3.86452302e-006, 5.11141843e-006, 5.13573468e-006, 0.00727050938, -0.999980271, 3.81702557e-006, 0.999976993, 0.00727053359))
  4640. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4641. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4642. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00122642517, -0.219696999, 7.27475739, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4643. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4644. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4645. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.709104538, 0.00263023376, 3.57127762, 5.24742063e-007, -0.298404753, -0.954446197, -1, 1.02631748e-006, -8.71201337e-007, 1.22864731e-006, 0.954442978, -0.298405796))
  4646. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4647. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4648. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00124359131, -0.133904457, 7.27602386, 1, 1.88290142e-006, -4.05231549e-006, 4.06897016e-006, -0.00727054104, 0.99998033, 1.86357647e-006, -0.999976873, -0.00727054477))
  4649. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4650. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
  4651. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0022354126, 0.250286102, -0.011218071, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4652. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
  4653. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4654. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00124740601, -0.18379879, 1.0292511, 1, 1.88290142e-006, -4.05231549e-006, 4.06897016e-006, -0.00727054104, 0.99998033, 1.86357647e-006, -0.999976873, -0.00727054477))
  4655. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4656. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4657. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0027923584, 2.42457581, -2.43035126, 1, -5.3551048e-009, 1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, 4.88944352e-009, -0.707108498, 0.707112134))
  4658. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 0.317635983, 0.314100146))
  4659. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.620843053, 0.333971083, 0.636532664))
  4660. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00516605377, -0.00261116028, 2.88111496, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4661. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.832176328, 1))
  4662. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
  4663. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00233078003, -1.57151031, 3.69814682, -1, 9.7672455e-007, -1.02919876e-006, -1.01856858e-006, 0.007278217, 0.99998033, 9.73697752e-007, 0.999976873, -0.00727825798))
  4664. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
  4665.  
  4666. Player=game:GetService('Players').LocalPlayer
  4667. Character=Player.Character
  4668. Mouse=Player:GetMouse()
  4669. m=Instance.new('Model',Character)
  4670.  
  4671.  
  4672. local function weldBetween(a, b)
  4673. local weldd = Instance.new("ManualWeld")
  4674. weldd.Part0 = a
  4675. weldd.Part1 = b
  4676. weldd.C0 = CFrame.new()
  4677. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4678. weldd.Parent = a
  4679. return weldd
  4680. end
  4681.  
  4682. it=Instance.new
  4683.  
  4684. function nooutline(part)
  4685. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4686. end
  4687.  
  4688. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4689. local fp=it("Part")
  4690. fp.formFactor=formfactor
  4691. fp.Parent=parent
  4692. fp.Reflectance=reflectance
  4693. fp.Transparency=transparency
  4694. fp.CanCollide=false
  4695. fp.Locked=true
  4696. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4697. fp.Name=name
  4698. fp.Size=size
  4699. fp.Position=Character.Torso.Position
  4700. nooutline(fp)
  4701. fp.Material=material
  4702. fp:BreakJoints()
  4703. return fp
  4704. end
  4705.  
  4706. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4707. local mesh=it(Mesh)
  4708. mesh.Parent=part
  4709. if Mesh=="SpecialMesh" then
  4710. mesh.MeshType=meshtype
  4711. mesh.MeshId=meshid
  4712. end
  4713. mesh.Offset=offset
  4714. mesh.Scale=scale
  4715. return mesh
  4716. end
  4717.  
  4718. function weld(parent,part0,part1,c0,c1)
  4719. local weld=it("Weld")
  4720. weld.Parent=parent
  4721. weld.Part0=part0
  4722. weld.Part1=part1
  4723. weld.C0=c0
  4724. weld.C1=c1
  4725. return weld
  4726. end
  4727.  
  4728. Face=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Institutional white","Handle",Vector3.new(2.39999938, 2.39999938, 2.39999938))
  4729. Face.Shape = "Ball"
  4730. Faceweld=weld(m,Character["Head"],Face,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0199375153, 0.150016785, -0.590007782, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  4731.  
  4732.  
  4733. Player=game:GetService('Players').LocalPlayer
  4734. Character=Player.Character
  4735. Mouse=Player:GetMouse()
  4736. m=Instance.new('Model',Character)
  4737.  
  4738.  
  4739. local function weldBetween(a, b)
  4740. local weldd = Instance.new("ManualWeld")
  4741. weldd.Part0 = a
  4742. weldd.Part1 = b
  4743. weldd.C0 = CFrame.new()
  4744. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4745. weldd.Parent = a
  4746. return weldd
  4747. end
  4748.  
  4749. it=Instance.new
  4750.  
  4751. function nooutline(part)
  4752. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4753. end
  4754.  
  4755. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4756. local fp=it("Part")
  4757. fp.formFactor=formfactor
  4758. fp.Parent=parent
  4759. fp.Reflectance=reflectance
  4760. fp.Transparency=transparency
  4761. fp.CanCollide=false
  4762. fp.Locked=true
  4763. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4764. fp.Name=name
  4765. fp.Size=size
  4766. fp.Position=Character.Torso.Position
  4767. nooutline(fp)
  4768. fp.Material=material
  4769. fp:BreakJoints()
  4770. return fp
  4771. end
  4772.  
  4773. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4774. local mesh=it(Mesh)
  4775. mesh.Parent=part
  4776. if Mesh=="SpecialMesh" then
  4777. mesh.MeshType=meshtype
  4778. mesh.MeshId=meshid
  4779. end
  4780. mesh.Offset=offset
  4781. mesh.Scale=scale
  4782. return mesh
  4783. end
  4784.  
  4785. function weld(parent,part0,part1,c0,c1)
  4786. local weld=it("Weld")
  4787. weld.Parent=parent
  4788. weld.Part0=part0
  4789. weld.Part1=part1
  4790. weld.C0=c0
  4791. weld.C1=c1
  4792. return weld
  4793. end
  4794.  
  4795. Back=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(4.37000132, 3.20000124, 1.59000123))
  4796. Backweld=weld(m,Character["Torso"],Back,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0149364471, -0.464990616, 1.0450058, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  4797.  
  4798. local size = 40,40,40
  4799.  
  4800.  
  4801. ----------------------------------------------------
  4802. Player=game:GetService('Players').LocalPlayer
  4803. Character=Player.Character
  4804. Mouse=Player:GetMouse()
  4805. m=Instance.new('Model',Character)
  4806.  
  4807.  
  4808. local function weldBetween(a, b)
  4809. local weldd = Instance.new("ManualWeld")
  4810. weldd.Part0 = a
  4811. weldd.Part1 = b
  4812. weldd.C0 = CFrame.new()
  4813. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4814. weldd.Parent = a
  4815. return weldd
  4816. end
  4817.  
  4818. it=Instance.new
  4819.  
  4820. function nooutline(part)
  4821. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4822. end
  4823.  
  4824. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4825. local fp=it("Part")
  4826. fp.formFactor=formfactor
  4827. fp.Parent=parent
  4828. fp.Reflectance=reflectance
  4829. fp.Transparency=transparency
  4830. fp.CanCollide=false
  4831. fp.Locked=true
  4832. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4833. fp.Name=name
  4834. fp.Size=size
  4835. fp.Position=Character.Torso.Position
  4836. nooutline(fp)
  4837. fp.Material=material
  4838. fp:BreakJoints()
  4839. return fp
  4840. end
  4841.  
  4842. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4843. local mesh=it(Mesh)
  4844. mesh.Parent=part
  4845. if Mesh=="SpecialMesh" then
  4846. mesh.MeshType=meshtype
  4847. mesh.MeshId=meshid
  4848. end
  4849. mesh.Offset=offset
  4850. mesh.Scale=scale
  4851. return mesh
  4852. end
  4853.  
  4854. function weld(parent,part0,part1,c0,c1)
  4855. local weld=it("Weld")
  4856. weld.Parent=parent
  4857. weld.Part0=part0
  4858. weld.Part1=part1
  4859. weld.C0=c0
  4860. weld.C1=c1
  4861. return weld
  4862. end
  4863.  
  4864. F3=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Really black","Handle",Vector3.new(30.6000023, 30.6000023, 30.6000023))
  4865. F3weld=weld(m,Character["Torso"],F3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.35006237, -0.479990005, 1.62999344, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  4866. F3.Name = "F3"
  4867. F3.Shape = "Ball"
  4868. F3.CanCollide = false
  4869. F3.Size = Vector3.new(size)
  4870. F3.Transparency = 0.7
  4871. F3.Material = "Neon"
  4872. F3.Anchored = true
  4873. F3.BrickColor = BrickColor.new(0,0,0)
  4874. F3.Locked = true
  4875. F3.Archivable = false
  4876.  
  4877.  
  4878.  
  4879. local p = F3
  4880. local me = game.Players.LocalPlayer.Character
  4881. game.Workspace.CodedOverLordPlush.Humanoid.JumpPower = 400
  4882.  
  4883.  
  4884. p.Shape = "Ball"
  4885.  
  4886. game:GetService('RunService').Stepped:connect(function()
  4887. p.CFrame = me.Torso.CFrame * CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
  4888. end)
  4889.  
  4890.  
  4891. wait(0.1)
  4892.  
  4893. F3.CanCollide = false
  4894. F3.CanCollide = false
  4895.  
  4896.  
  4897. F3.Transparency = 0.9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement