Orangeplayer1431

SCUTI DEN

Aug 23rd, 2017
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 295.64 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153. p = game.Players.LocalPlayer
  154. char = p.Character
  155. torso = char.Torso
  156. neck = char.Torso.Neck
  157. hum = char.Humanoid
  158.  
  159. CV="Pastel blue"
  160.  
  161. local txt = Instance.new("BillboardGui", char)
  162. txt.Adornee = char .Head
  163. txt.Name = "_status"
  164. txt.Size = UDim2.new(2, 0, 1.2, 0)
  165. txt.StudsOffset = Vector3.new(-9, 8, 0)
  166. local text = Instance.new("TextLabel", txt)
  167. text.Size = UDim2.new(10, 0, 7, 0)
  168. text.FontSize = "Size24"
  169. text.TextScaled = true
  170. text.TextTransparency = 0
  171. text.BackgroundTransparency = 1
  172. text.TextTransparency = 0
  173. text.TextStrokeTransparency = 0
  174. text.Font = "SciFi"
  175. text.TextStrokeColor3 = Color3.new(0,0,0)
  176.  
  177. v=Instance.new("Part")
  178. v.Name = "ColorBrick"
  179. v.Parent=p.Character
  180. v.FormFactor="Symmetric"
  181. v.Anchored=true
  182. v.CanCollide=false
  183. v.BottomSurface="Smooth"
  184. v.TopSurface="Smooth"
  185. v.Size=Vector3.new(10,5,3)
  186. v.Transparency=1
  187. v.CFrame=char.Torso.CFrame
  188. v.BrickColor=BrickColor.new(CV)
  189. v.Transparency=1
  190. text.TextColor3 = Color3.new(1,1,1)
  191. v.Shape="Block"
  192. text.Text = "Sigma"
  193.  
  194. --[[User: TheDarkRevenant
  195. Script: Absalom (Armored).lua
  196. Pass: cUpnjTnT]]
  197.  
  198. local p = game.Players.LocalPlayer
  199. local char = p.Character
  200. local mouse = p:GetMouse()
  201. local larm = char["Left Arm"]
  202. local rarm = char["Right Arm"]
  203. local lleg = char["Left Leg"]
  204. local rleg = char["Right Leg"]
  205. local hed = char.Head
  206. local torso = char.Torso
  207. local hum = char.Humanoid
  208. local cam = game.Workspace.CurrentCamera
  209. local root = char.HumanoidRootPart
  210. local deb = false
  211. local shot = 0
  212. local l = game:GetService("Lighting")
  213. local rs = game:GetService("RunService").RenderStepped
  214. local debris=game:service"Debris"
  215. local stanceToggle = "Normal"
  216. math.randomseed(os.time())
  217. hum.WalkSpeed = 7
  218. char.Health:Destroy()
  219. hum.MaxHealth = 50000
  220. wait(0.1)
  221. hum.Health = 50000
  222. ----------------------------------------------------
  223. ypcall(function()
  224. char.Shirt:Destroy()
  225. char.Pants:Destroy()
  226. shirt = Instance.new("Shirt", char)
  227. shirt.Name = "Shirt"
  228. pants = Instance.new("Pants", char)
  229. pants.Name = "Pants"
  230. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  231. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  232. end)
  233. ----------------------------------------------------
  234. Debounces = {
  235. on = false;
  236. ks = false;
  237. CanAttack = true;
  238. CanJoke = true;
  239. NoIdl = false;
  240. Slashing = false;
  241. Slashed = false;
  242. Grabbing = false;
  243. Grabbed = false;
  244. }
  245. local Touche = {char.Name, }
  246. ----------------------------------------------------
  247. function lerp(a, b, t) -- Linear interpolation
  248. return a + (b - a)*t
  249. end
  250.  
  251. function slerp(a, b, t) --Spherical interpolation
  252. dot = a:Dot(b)
  253. if dot > 0.99999 or dot < -0.99999 then
  254. return t <= 0.5 and a or b
  255. else
  256. r = math.acos(dot)
  257. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  258. end
  259. end
  260.  
  261. function matrixInterpolate(a, b, t)
  262. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  263. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  264. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  265. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  266. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  267. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  268. local t = v1:Dot(v2)
  269. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  270. return CFrame.new()
  271. end
  272. return CFrame.new(
  273. v0.x, v0.y, v0.z,
  274. v1.x, v1.y, v1.z,
  275. v2.x, v2.y, v2.z,
  276. v3.x, v3.y, v3.z)
  277. end
  278. ----------------------------------------------------
  279. function genWeld(a,b)
  280. local w = Instance.new("Weld",a)
  281. w.Part0 = a
  282. w.Part1 = b
  283. return w
  284. end
  285. function weld(a, b)
  286. local weld = Instance.new("Weld")
  287. weld.Name = "W"
  288. weld.Part0 = a
  289. weld.Part1 = b
  290. weld.C0 = a.CFrame:inverse() * b.CFrame
  291. weld.Parent = a
  292. return weld;
  293. end
  294. ----------------------------------------------------
  295. function Lerp(c1,c2,al)
  296. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  297. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  298. for i,v in pairs(com1) do
  299. com1[i] = v+(com2[i]-v)*al
  300. end
  301. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  302. end
  303. ----------------------------------------------------
  304. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  305. local wld = Instance.new("Weld", wp1)
  306. wld.Part0 = wp0
  307. wld.Part1 = wp1
  308. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  309. end
  310. ----------------------------------------------------
  311. function Tween(a,b,c)
  312. return a+(b-a)*c
  313. end
  314. ----------------------------------------------------
  315. function nwPrt(prnt,siz,cf,col)
  316. local prt=Instance.new("Part")
  317. prt.Parent=prnt
  318. prt.FormFactor=3
  319. prt.Name="Part"
  320. prt.Size=siz
  321. prt.CanCollide=false
  322. prt.Anchored=true
  323. prt.Locked=true
  324. prt.TopSurface=10
  325. prt.BottomSurface=10
  326. prt.FrontSurface=10
  327. prt.BackSurface=10
  328. prt.LeftSurface=10
  329. prt.RightSurface=10
  330. prt:BreakJoints()
  331. prt.CFrame=cf or CFrame.new(30,10,30)
  332. prt.Material="Neon"
  333. prt.BrickColor=BrickColor.new(col)
  334. m=Instance.new("SpecialMesh",prt)
  335. m.MeshType=6
  336. return prt
  337. end
  338. ----------------------------------------------------
  339. function nwSnd(prnt,pch,vol,id)
  340. local s=Instance.new("Sound",prnt)
  341. s.Pitch=pch
  342. s.Volume=vol
  343. s.SoundId="rbxassetid://"..id
  344. s.PlayOnRemove=true
  345. return s
  346. end
  347. ----------------------------------------------------
  348. function newRay(start,face,range,wat)
  349. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  350. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  351. return rey,hit,pos
  352. end
  353. ----------------------------------------------------
  354. for i,v in pairs(char:children()) do
  355. if v:IsA("Hat") then
  356. v:Destroy()
  357. end
  358. end
  359. for i,v in pairs(hed:children()) do
  360. if v:IsA("Sound") then
  361. v:Destroy()
  362. end
  363. end
  364. ----------------------------------------------------
  365. function HasntTouched(plrname)
  366. local ret = true
  367. for _, v in pairs(Touche) do
  368. if v == plrname then
  369. ret = false
  370. end
  371. end
  372. return ret
  373. end
  374. ----------------------------------------------------
  375. larm.Size = larm.Size * 2
  376. rarm.Size = rarm.Size * 2
  377. lleg.Size = lleg.Size * 2
  378. rleg.Size = rleg.Size * 2
  379. torso.Size = torso.Size * 2
  380. hed.Size = hed.Size * 2
  381. root.Size = root.Size * 2
  382. ----------------------------------------------------
  383. newWeld(torso, larm, -1.5, 0.5, 0)
  384. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  385. newWeld(torso, rarm, 1.5, 0.5, 0)
  386. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  387. newWeld(torso, hed, 0, 1.5, 0)
  388. newWeld(torso, lleg, -0.5, -1, 0)
  389. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  390. newWeld(torso, rleg, 0.5, -1, 0)
  391. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  392. newWeld(root, torso, 0, -1, 0)
  393. torso.Weld.C1 = CFrame.new(0, -1, 0)
  394. ----------------------------------------------------
  395. hed.face.Texture = "rbxassetid://340355951"
  396. z=Instance.new('Decal',hed)
  397. z.Face = 'Front'
  398. z.Texture='rbxassetid://340355951'
  399. z1=Instance.new('Decal',hed)
  400. z1.Face = 'Right'
  401. hed.BrickColor = BrickColor.new("Institutional white")
  402. lite = Instance.new("PointLight", torso)
  403. lite.Brightness = 1
  404. lite.Range = 600
  405. lite.Color = Color3.new(1, 1, 1)
  406. --[[local hed2 = hed:Clone()
  407. hed2.CanCollide = false
  408. hed2.Parent = char
  409. hed2:ClearAllChildren()
  410. hed2.Transparency = 1
  411. hed2.Name = "gottem"
  412. local w = Instance.new("Weld",hed2)
  413. w.Part0 = hed
  414. w.Part1 = hed2
  415. w.C0 = CFrame.new(0,0,-0.175)
  416. z=Instance.new("SurfaceGui",hed2)
  417. z.Enabled = true
  418. z.Face = "Front"
  419. z.Adornee = hed2
  420. z.CanvasSize = Vector2.new(100,100)
  421. local face = Instance.new("ImageLabel",z)
  422. face.Size = UDim2.new(1,-30,1,0)
  423. face.Position = UDim2.new(0,15,0,0)
  424. face.BackgroundTransparency = 1
  425. face.Image='rbxassetid://340355951']]--
  426. ----------------------------------------------------
  427. z = Instance.new("Sound", char)
  428. z.SoundId = "rbxassetid://0"--2233908
  429. z.Looped = true
  430. z.Pitch = 1
  431. z.Volume = 2
  432. wait(.01)
  433. z:Play()
  434. ----------------------------------------------------
  435. local m = Instance.new("Model")
  436. m.Name = "Absolution"
  437. p1 = Instance.new("Part", m)
  438. p1.BrickColor = BrickColor.new("Institutional white")
  439. p1.Material = "Neon"
  440. p1.FormFactor = Enum.FormFactor.Custom
  441. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  442. 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)
  443. p1.CanCollide = false
  444. p1.Locked = true
  445. p1.Elasticity = 0
  446. p1.BottomSurface = Enum.SurfaceType.Smooth
  447. p1.TopSurface = Enum.SurfaceType.Smooth
  448. b1 = Instance.new("SpecialMesh", p1)
  449. b1.MeshType = Enum.MeshType.Wedge
  450. b1.Name = "Mesh"
  451. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  452. p2 = Instance.new("Part", m)
  453. p2.BrickColor = BrickColor.new("Really black")
  454. p2.FormFactor = Enum.FormFactor.Custom
  455. p2.Size = Vector3.new(1, 2.9000001, 1)
  456. 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)
  457. p2.CanCollide = false
  458. p2.Locked = true
  459. p2.Elasticity = 0
  460. p2.BottomSurface = Enum.SurfaceType.Smooth
  461. p2.TopSurface = Enum.SurfaceType.Smooth
  462. b2 = Instance.new("BlockMesh", p2)
  463. b2.Name = "Mesh"
  464. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  465. p3 = Instance.new("Part", m)
  466. p3.BrickColor = BrickColor.new("Institutional white")
  467. p3.Material = "Neon"
  468. p3.FormFactor = Enum.FormFactor.Custom
  469. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  470. 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)
  471. p3.CanCollide = false
  472. p3.Locked = true
  473. p3.Elasticity = 0
  474. p3.BottomSurface = Enum.SurfaceType.Smooth
  475. p3.TopSurface = Enum.SurfaceType.Smooth
  476. b3 = Instance.new("SpecialMesh", p3)
  477. b3.MeshType = Enum.MeshType.Wedge
  478. b3.Name = "Mesh"
  479. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  480. p4 = Instance.new("Part", m)
  481. p4.BrickColor = BrickColor.new("Institutional white")
  482. p4.Material = "Neon"
  483. p4.FormFactor = Enum.FormFactor.Custom
  484. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  485. 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)
  486. p4.CanCollide = false
  487. p4.Locked = true
  488. p4.Elasticity = 0
  489. p4.BottomSurface = Enum.SurfaceType.Smooth
  490. p4.TopSurface = Enum.SurfaceType.Smooth
  491. b4 = Instance.new("SpecialMesh", p4)
  492. b4.MeshType = Enum.MeshType.Wedge
  493. b4.Name = "Mesh"
  494. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  495. p5 = Instance.new("Part", m)
  496. p5.BrickColor = BrickColor.new("Institutional white")
  497. p5.Material = "Neon"
  498. p5.FormFactor = Enum.FormFactor.Custom
  499. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  500. 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)
  501. p5.CanCollide = false
  502. p5.Locked = true
  503. p5.Elasticity = 0
  504. p5.BottomSurface = Enum.SurfaceType.Smooth
  505. p5.TopSurface = Enum.SurfaceType.Smooth
  506. b5 = Instance.new("SpecialMesh", p5)
  507. b5.MeshType = Enum.MeshType.Wedge
  508. b5.Name = "Mesh"
  509. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  510. p6 = Instance.new("Part", m)
  511. p6.Name = "Handle"
  512. p6.BrickColor = BrickColor.new("Really black")
  513. p6.FormFactor = Enum.FormFactor.Custom
  514. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  515. 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)
  516. p6.CanCollide = false
  517. p6.Locked = true
  518. p6.Elasticity = 0
  519. p6.BottomSurface = Enum.SurfaceType.Smooth
  520. p6.TopSurface = Enum.SurfaceType.Smooth
  521. b6 = Instance.new("BlockMesh", p6)
  522. b6.Name = "Mesh"
  523. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  524. p7 = Instance.new("Part", m)
  525. p7.BrickColor = BrickColor.new("Institutional white")
  526. p7.Material = "Neon"
  527. p7.FormFactor = Enum.FormFactor.Custom
  528. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  529. 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)
  530. p7.CanCollide = false
  531. p7.Locked = true
  532. p7.Elasticity = 0
  533. p7.BottomSurface = Enum.SurfaceType.Smooth
  534. p7.TopSurface = Enum.SurfaceType.Smooth
  535. b7 = Instance.new("SpecialMesh", p7)
  536. b7.MeshType = Enum.MeshType.Wedge
  537. b7.Name = "Mesh"
  538. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  539. p8 = Instance.new("Part", m)
  540. p8.BrickColor = BrickColor.new("Institutional white")
  541. p8.Material = "Neon"
  542. p8.FormFactor = Enum.FormFactor.Custom
  543. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  544. 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)
  545. p8.CanCollide = false
  546. p8.Locked = true
  547. p8.Elasticity = 0
  548. p8.BottomSurface = Enum.SurfaceType.Smooth
  549. p8.TopSurface = Enum.SurfaceType.Smooth
  550. b8 = Instance.new("SpecialMesh", p8)
  551. b8.MeshType = Enum.MeshType.Wedge
  552. b8.Name = "Mesh"
  553. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  554. p9 = Instance.new("Part", m)
  555. p9.BrickColor = BrickColor.new("Really black")
  556. p9.FormFactor = Enum.FormFactor.Custom
  557. p9.Size = Vector3.new(1, 1.07999957, 1)
  558. 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)
  559. p9.CanCollide = false
  560. p9.Locked = true
  561. p9.Elasticity = 0
  562. p9.BottomSurface = Enum.SurfaceType.Smooth
  563. p9.TopSurface = Enum.SurfaceType.Smooth
  564. b9 = Instance.new("BlockMesh", p9)
  565. b9.Name = "Mesh"
  566. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  567. p10 = Instance.new("Part", m)
  568. p10.BrickColor = BrickColor.new("Really black")
  569. p10.FormFactor = Enum.FormFactor.Custom
  570. p10.Size = Vector3.new(1, 1.41999948, 1)
  571. 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)
  572. p10.CanCollide = false
  573. p10.Locked = true
  574. p10.Elasticity = 0
  575. p10.BottomSurface = Enum.SurfaceType.Smooth
  576. p10.TopSurface = Enum.SurfaceType.Smooth
  577. b10 = Instance.new("BlockMesh", p10)
  578. b10.Name = "Mesh"
  579. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  580. p11 = Instance.new("Part", m)
  581. p11.BrickColor = BrickColor.new("Really black")
  582. p11.FormFactor = Enum.FormFactor.Custom
  583. p11.Size = Vector3.new(1, 1.50999951, 1)
  584. 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)
  585. p11.CanCollide = false
  586. p11.Locked = true
  587. p11.Elasticity = 0
  588. p11.BottomSurface = Enum.SurfaceType.Smooth
  589. p11.TopSurface = Enum.SurfaceType.Smooth
  590. b11 = Instance.new("BlockMesh", p11)
  591. b11.Name = "Mesh"
  592. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  593. p12 = Instance.new("Part", m)
  594. p12.Name = "BladeCenter"
  595. p12.BrickColor = BrickColor.new("Dark stone grey")
  596. p12.Material = Enum.Material.Concrete
  597. p12.FormFactor = Enum.FormFactor.Symmetric
  598. p12.Size = Vector3.new(1, 2, 2)
  599. 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)
  600. p12.CanCollide = false
  601. p12.Locked = true
  602. p12.BottomSurface = Enum.SurfaceType.Smooth
  603. p12.TopSurface = Enum.SurfaceType.Smooth
  604. b12 = Instance.new("SpecialMesh", p12)
  605. b12.MeshType = Enum.MeshType.Brick
  606. b12.Name = "Mesh"
  607. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  608. p13 = Instance.new("Part", m)
  609. p13.BrickColor = BrickColor.new("Really black")
  610. p13.FormFactor = Enum.FormFactor.Custom
  611. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  612. 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)
  613. p13.CanCollide = false
  614. p13.Locked = true
  615. p13.Elasticity = 0
  616. p13.BottomSurface = Enum.SurfaceType.Smooth
  617. p13.TopSurface = Enum.SurfaceType.Smooth
  618. b13 = Instance.new("BlockMesh", p13)
  619. b13.Name = "Mesh"
  620. b13.Scale = Vector3.new(1, 1, 0.400000006)
  621. p14 = Instance.new("Part", m)
  622. p14.BrickColor = BrickColor.new("Really black")
  623. p14.FormFactor = Enum.FormFactor.Custom
  624. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  625. 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)
  626. p14.CanCollide = false
  627. p14.Locked = true
  628. p14.Elasticity = 0
  629. p14.BottomSurface = Enum.SurfaceType.Smooth
  630. p14.TopSurface = Enum.SurfaceType.Smooth
  631. b14 = Instance.new("BlockMesh", p14)
  632. b14.Name = "Mesh"
  633. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  634. p15 = Instance.new("Part", m)
  635. p15.BrickColor = BrickColor.new("Really black")
  636. p15.FormFactor = Enum.FormFactor.Custom
  637. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  638. 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)
  639. p15.CanCollide = false
  640. p15.Locked = true
  641. p15.Elasticity = 0
  642. p15.BottomSurface = Enum.SurfaceType.Smooth
  643. p15.TopSurface = Enum.SurfaceType.Smooth
  644. b15 = Instance.new("BlockMesh", p15)
  645. b15.Name = "Mesh"
  646. b15.Scale = Vector3.new(1, 1, 0.400000006)
  647. p16 = Instance.new("Part", m)
  648. p16.BrickColor = BrickColor.new("Really black")
  649. p16.FormFactor = Enum.FormFactor.Custom
  650. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  651. 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)
  652. p16.CanCollide = false
  653. p16.Locked = true
  654. p16.Elasticity = 0
  655. p16.BottomSurface = Enum.SurfaceType.Smooth
  656. p16.TopSurface = Enum.SurfaceType.Smooth
  657. b16 = Instance.new("BlockMesh", p16)
  658. b16.Name = "Mesh"
  659. b16.Scale = Vector3.new(1, 1, 0.400000006)
  660. p17 = Instance.new("Part", m)
  661. p17.BrickColor = BrickColor.new("Really black")
  662. p17.FormFactor = Enum.FormFactor.Custom
  663. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  664. 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)
  665. p17.CanCollide = false
  666. p17.Locked = true
  667. p17.Elasticity = 0
  668. p17.BottomSurface = Enum.SurfaceType.Smooth
  669. p17.TopSurface = Enum.SurfaceType.Smooth
  670. b17 = Instance.new("BlockMesh", p17)
  671. b17.Name = "Mesh"
  672. b17.Scale = Vector3.new(1, 1, 0.400000006)
  673. p18 = Instance.new("WedgePart", m)
  674. p18.BrickColor = BrickColor.new("Dark stone grey")
  675. p18.Name = "BladePart1"
  676. p18.Material = Enum.Material.Concrete
  677. p18.Name = "Wedge"
  678. p18.FormFactor = Enum.FormFactor.Symmetric
  679. p18.Size = Vector3.new(1, 4, 2)
  680. 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)
  681. p18.CanCollide = false
  682. p18.Locked = true
  683. p18.BottomSurface = Enum.SurfaceType.Smooth
  684. p18.TopSurface = Enum.SurfaceType.Smooth
  685. b18 = Instance.new("SpecialMesh", p18)
  686. b18.MeshType = Enum.MeshType.Wedge
  687. b18.Name = "Mesh"
  688. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  689. p19 = Instance.new("WedgePart", m)
  690. p19.BrickColor = BrickColor.new("Dark stone grey")
  691. p19.Name = "BladePart2"
  692. p19.Material = Enum.Material.Concrete
  693. p19.Name = "Wedge"
  694. p19.FormFactor = Enum.FormFactor.Symmetric
  695. p19.Size = Vector3.new(1, 4, 2)
  696. 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)
  697. p19.CanCollide = false
  698. p19.Locked = true
  699. p19.BottomSurface = Enum.SurfaceType.Smooth
  700. p19.TopSurface = Enum.SurfaceType.Smooth
  701. b19 = Instance.new("SpecialMesh", p19)
  702. b19.MeshType = Enum.MeshType.Wedge
  703. b19.Name = "Mesh"
  704. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  705. p20 = Instance.new("Part", m)
  706. p20.BrickColor = BrickColor.new("Really black")
  707. p20.FormFactor = Enum.FormFactor.Custom
  708. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  709. 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)
  710. p20.CanCollide = false
  711. p20.Locked = true
  712. p20.Elasticity = 0
  713. p20.BottomSurface = Enum.SurfaceType.Smooth
  714. p20.TopSurface = Enum.SurfaceType.Smooth
  715. b20 = Instance.new("BlockMesh", p20)
  716. b20.Name = "Mesh"
  717. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  718. p21 = Instance.new("Part", m)
  719. p21.BrickColor = BrickColor.new("Institutional white")
  720. p21.Material = "Neon"
  721. p21.FormFactor = Enum.FormFactor.Custom
  722. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  723. 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)
  724. p21.CanCollide = false
  725. p21.Locked = true
  726. p21.Elasticity = 0
  727. p21.BottomSurface = Enum.SurfaceType.Smooth
  728. p21.TopSurface = Enum.SurfaceType.Smooth
  729. b21 = Instance.new("SpecialMesh", p21)
  730. b21.MeshType = Enum.MeshType.Wedge
  731. b21.Name = "Mesh"
  732. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  733. w1 = Instance.new("Weld", p1)
  734. w1.Name = "Part_Weld"
  735. w1.Part0 = p1
  736. 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)
  737. w1.Part1 = p2
  738. 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)
  739. w2 = Instance.new("Weld", p2)
  740. w2.Name = "Part_Weld"
  741. w2.Part0 = p2
  742. 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)
  743. w2.Part1 = p3
  744. 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)
  745. w3 = Instance.new("Weld", p3)
  746. w3.Name = "Part_Weld"
  747. w3.Part0 = p3
  748. 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)
  749. w3.Part1 = p4
  750. 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)
  751. w4 = Instance.new("Weld", p4)
  752. w4.Name = "Part_Weld"
  753. w4.Part0 = p4
  754. 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)
  755. w4.Part1 = p5
  756. 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)
  757. w5 = Instance.new("Weld", p5)
  758. w5.Name = "Part_Weld"
  759. w5.Part0 = p5
  760. 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)
  761. w5.Part1 = p6
  762. 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)
  763. w6 = Instance.new("Weld", p6)
  764. w6.Name = "Part_Weld"
  765. w6.Part0 = p6
  766. 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)
  767. w6.Part1 = p7
  768. 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)
  769. w7 = Instance.new("Weld", p7)
  770. w7.Name = "Part_Weld"
  771. w7.Part0 = p7
  772. 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)
  773. w7.Part1 = p8
  774. 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)
  775. w8 = Instance.new("Weld", p8)
  776. w8.Name = "Part_Weld"
  777. w8.Part0 = p8
  778. 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)
  779. w8.Part1 = p9
  780. 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)
  781. w9 = Instance.new("Weld", p9)
  782. w9.Name = "Part_Weld"
  783. w9.Part0 = p9
  784. 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)
  785. w9.Part1 = p10
  786. 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)
  787. w10 = Instance.new("Weld", p10)
  788. w10.Name = "Part_Weld"
  789. w10.Part0 = p10
  790. 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)
  791. w10.Part1 = p11
  792. 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)
  793. w11 = Instance.new("Weld", p11)
  794. w11.Name = "Part_Weld"
  795. w11.Part0 = p11
  796. 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)
  797. w11.Part1 = p12
  798. 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)
  799. w12 = Instance.new("Weld", p12)
  800. w12.Name = "Part_Weld"
  801. w12.Part0 = p12
  802. 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)
  803. w12.Part1 = p13
  804. 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)
  805. w13 = Instance.new("Weld", p13)
  806. w13.Name = "Part_Weld"
  807. w13.Part0 = p13
  808. 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)
  809. w13.Part1 = p14
  810. 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)
  811. w14 = Instance.new("Weld", p14)
  812. w14.Name = "Part_Weld"
  813. w14.Part0 = p14
  814. 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)
  815. w14.Part1 = p15
  816. 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)
  817. w15 = Instance.new("Weld", p15)
  818. w15.Name = "Part_Weld"
  819. w15.Part0 = p15
  820. 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)
  821. w15.Part1 = p16
  822. 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)
  823. w16 = Instance.new("Weld", p16)
  824. w16.Name = "Part_Weld"
  825. w16.Part0 = p16
  826. 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)
  827. w16.Part1 = p17
  828. 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)
  829. w17 = Instance.new("Weld", p17)
  830. w17.Name = "Wedge_Weld"
  831. w17.Part0 = p17
  832. 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)
  833. w17.Part1 = p18
  834. 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)
  835. w18 = Instance.new("Weld", p18)
  836. w18.Name = "Wedge_Weld"
  837. w18.Part0 = p18
  838. 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)
  839. w18.Part1 = p19
  840. 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)
  841. w19 = Instance.new("Weld", p19)
  842. w19.Name = "Part_Weld"
  843. w19.Part0 = p19
  844. 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)
  845. w19.Part1 = p20
  846. 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)
  847. w20 = Instance.new("Weld", p20)
  848. w20.Name = "Part_Weld"
  849. w20.Part0 = p20
  850. 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)
  851. w20.Part1 = p21
  852. 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)
  853. m.Parent = char
  854. m:MakeJoints()
  855. ----------------------------------------------------
  856. local cor = Instance.new("Part", char.Absolution)
  857. cor.Name = "Thingy"
  858. cor.Locked = true
  859. cor.BottomSurface = 0
  860. cor.CanCollide = false
  861. cor.Size = Vector3.new(1, 13, 1)
  862. cor.Transparency = 1
  863. cor.TopSurface = 0
  864. corw = Instance.new("Weld", cor)
  865. corw.Part0 = rarm
  866. corw.Part1 = cor
  867. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  868. corw.C1 = CFrame.new(0, 0, 0)
  869. weld1 = Instance.new("Weld", char.Absolution)
  870. weld1.Part0 = cor
  871. weld1.Part1 = p6
  872. weld1.C0 = CFrame.new(0, 0, 0)
  873. ----------------------------------------------------
  874. hitb = Instance.new("Part", char.Absolution)
  875. hitb.Name = "Thingy2"
  876. hitb.Locked = true
  877. hitb.BottomSurface = 0
  878. hitb.CanCollide = false
  879. hitb.Size = Vector3.new(0, 8, 6)
  880. hitb.Transparency = 1
  881. hitb.TopSurface = 0
  882. weld2 = Instance.new("Weld", char.Absolution)
  883. weld2.Part0 = hitb
  884. weld2.Part1 = p12
  885. weld2.C0 = CFrame.new(0, .6, 1)
  886. ----------------------------------------------------
  887. local m = Instance.new("Model")
  888. m.Name = "Claw"
  889. p1 = Instance.new("Part", m)
  890. p1.BrickColor = BrickColor.new("Really black")
  891. p1.FormFactor = Enum.FormFactor.Custom
  892. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  893. 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)
  894. p1.CanCollide = false
  895. p1.Locked = true
  896. p1.BottomSurface = Enum.SurfaceType.Smooth
  897. p1.TopSurface = Enum.SurfaceType.Smooth
  898. b1 = Instance.new("BlockMesh", p1)
  899. b1.Name = "Mesh"
  900. p2 = Instance.new("WedgePart", m)
  901. p2.BrickColor = BrickColor.new("Really black")
  902. p2.Name = "Wedge"
  903. p2.FormFactor = Enum.FormFactor.Custom
  904. p2.Size = Vector3.new(3, 1, 0.5)
  905. 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)
  906. p2.CanCollide = false
  907. p2.Locked = true
  908. p2.BottomSurface = Enum.SurfaceType.Smooth
  909. p2.TopSurface = Enum.SurfaceType.Smooth
  910. p3 = Instance.new("Part", m)
  911. p3.BrickColor = BrickColor.new("Really black")
  912. p3.FormFactor = Enum.FormFactor.Custom
  913. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  914. 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)
  915. p3.CanCollide = false
  916. p3.Locked = true
  917. p3.BottomSurface = Enum.SurfaceType.Smooth
  918. p3.TopSurface = Enum.SurfaceType.Smooth
  919. b2 = Instance.new("BlockMesh", p3)
  920. b2.Name = "Mesh"
  921. p4 = Instance.new("WedgePart", m)
  922. p4.BrickColor = BrickColor.new("Really black")
  923. p4.Name = "Wedge"
  924. p4.FormFactor = Enum.FormFactor.Custom
  925. p4.Size = Vector3.new(3, 1, 0.5)
  926. 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)
  927. p4.CanCollide = false
  928. p4.Locked = true
  929. p4.BottomSurface = Enum.SurfaceType.Smooth
  930. p4.TopSurface = Enum.SurfaceType.Smooth
  931. p5 = Instance.new("Part", m)
  932. p5.BrickColor = BrickColor.new("Really black")
  933. p5.FormFactor = Enum.FormFactor.Custom
  934. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  935. 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)
  936. p5.CanCollide = false
  937. p5.Locked = true
  938. p5.BottomSurface = Enum.SurfaceType.Smooth
  939. p5.TopSurface = Enum.SurfaceType.Smooth
  940. b3 = Instance.new("BlockMesh", p5)
  941. b3.Name = "Mesh"
  942. p6 = Instance.new("Part", m)
  943. p6.BrickColor = BrickColor.new("Really black")
  944. p6.FormFactor = Enum.FormFactor.Custom
  945. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  946. 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)
  947. p6.CanCollide = false
  948. p6.Locked = true
  949. p6.BottomSurface = Enum.SurfaceType.Smooth
  950. p6.TopSurface = Enum.SurfaceType.Smooth
  951. b4 = Instance.new("BlockMesh", p6)
  952. b4.Name = "Mesh"
  953. p7 = Instance.new("Part", m)
  954. p7.BrickColor = BrickColor.new("Really black")
  955. p7.FormFactor = Enum.FormFactor.Custom
  956. p7.Size = Vector3.new(3, 1, 1.20000005)
  957. 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)
  958. p7.CanCollide = false
  959. p7.Locked = true
  960. p7.BottomSurface = Enum.SurfaceType.Smooth
  961. p7.TopSurface = Enum.SurfaceType.Smooth
  962. b5 = Instance.new("BlockMesh", p7)
  963. b5.Name = "Mesh"
  964. p8 = Instance.new("Part", m)
  965. p8.BrickColor = BrickColor.new("Institutional white")
  966. p8.Material = "Neon"
  967. p8.FormFactor = Enum.FormFactor.Symmetric
  968. p8.Size = Vector3.new(1, 1, 1)
  969. 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)
  970. p8.CanCollide = false
  971. p8.Locked = true
  972. b6 = Instance.new("SpecialMesh", p8)
  973. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  974. b6.TextureId = ""
  975. b6.MeshType = Enum.MeshType.FileMesh
  976. b6.Name = "Mesh"
  977. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  978. p9 = Instance.new("Part", m)
  979. p9.BrickColor = BrickColor.new("Really black")
  980. p9.FormFactor = Enum.FormFactor.Custom
  981. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  982. 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)
  983. p9.CanCollide = false
  984. p9.Locked = true
  985. p9.BottomSurface = Enum.SurfaceType.Smooth
  986. p9.TopSurface = Enum.SurfaceType.Smooth
  987. b7 = Instance.new("BlockMesh", p9)
  988. b7.Name = "Mesh"
  989. p10 = Instance.new("Part", m)
  990. p10.BrickColor = BrickColor.new("Institutional white")
  991. p10.Material = "Neon"
  992. p10.FormFactor = Enum.FormFactor.Symmetric
  993. p10.Size = Vector3.new(1, 1, 1)
  994. 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)
  995. p10.CanCollide = false
  996. p10.Locked = true
  997. b8 = Instance.new("SpecialMesh", p10)
  998. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  999. b8.TextureId = ""
  1000. b8.MeshType = Enum.MeshType.FileMesh
  1001. b8.Name = "Mesh"
  1002. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1003. p11 = Instance.new("Part", m)
  1004. p11.BrickColor = BrickColor.new("Really black")
  1005. p11.FormFactor = Enum.FormFactor.Custom
  1006. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  1007. 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)
  1008. p11.CanCollide = false
  1009. p11.Locked = true
  1010. p11.BottomSurface = Enum.SurfaceType.Smooth
  1011. p11.TopSurface = Enum.SurfaceType.Smooth
  1012. b9 = Instance.new("BlockMesh", p11)
  1013. b9.Name = "Mesh"
  1014. p12 = Instance.new("Part", m)
  1015. p12.BrickColor = BrickColor.new("Really black")
  1016. p12.FormFactor = Enum.FormFactor.Custom
  1017. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  1018. 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)
  1019. p12.CanCollide = false
  1020. p12.Locked = true
  1021. p12.BottomSurface = Enum.SurfaceType.Smooth
  1022. p12.TopSurface = Enum.SurfaceType.Smooth
  1023. b10 = Instance.new("BlockMesh", p12)
  1024. b10.Name = "Mesh"
  1025. p13 = Instance.new("Part", m)
  1026. p13.BrickColor = BrickColor.new("Really black")
  1027. p13.FormFactor = Enum.FormFactor.Custom
  1028. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  1029. 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)
  1030. p13.CanCollide = false
  1031. p13.Locked = true
  1032. p13.BottomSurface = Enum.SurfaceType.Smooth
  1033. p13.TopSurface = Enum.SurfaceType.Smooth
  1034. b11 = Instance.new("BlockMesh", p13)
  1035. b11.Name = "Mesh"
  1036. p14 = Instance.new("Part", m)
  1037. p14.BrickColor = BrickColor.new("Institutional white")
  1038. p14.Material = "Neon"
  1039. p14.FormFactor = Enum.FormFactor.Symmetric
  1040. p14.Size = Vector3.new(1, 1, 1)
  1041. 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)
  1042. p14.CanCollide = false
  1043. p14.Locked = true
  1044. b12 = Instance.new("SpecialMesh", p14)
  1045. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1046. b12.TextureId = ""
  1047. b12.MeshType = Enum.MeshType.FileMesh
  1048. b12.Name = "Mesh"
  1049. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1050. p15 = Instance.new("Part", m)
  1051. p15.BrickColor = BrickColor.new("Medium stone grey")
  1052. p15.Transparency = 1
  1053. p15.Name = "ArmPart"
  1054. p15.FormFactor = Enum.FormFactor.Custom
  1055. p15.Size = Vector3.new(2, 1, 1)
  1056. 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)
  1057. p15.CanCollide = false
  1058. p15.Locked = true
  1059. p15.BottomSurface = Enum.SurfaceType.Smooth
  1060. p15.TopSurface = Enum.SurfaceType.Smooth
  1061. b13 = Instance.new("BlockMesh", p15)
  1062. b13.Name = "Mesh"
  1063. p16 = Instance.new("Part", m)
  1064. p16.BrickColor = BrickColor.new("Really black")
  1065. p16.FormFactor = Enum.FormFactor.Custom
  1066. p16.Size = Vector3.new(3, 1, 2.4000001)
  1067. 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)
  1068. p16.CanCollide = false
  1069. p16.Locked = true
  1070. p16.BottomSurface = Enum.SurfaceType.Smooth
  1071. p16.TopSurface = Enum.SurfaceType.Smooth
  1072. b14 = Instance.new("BlockMesh", p16)
  1073. b14.Name = "Mesh"
  1074. p17 = Instance.new("Part", m)
  1075. p17.BrickColor = BrickColor.new("Really black")
  1076. p17.FormFactor = Enum.FormFactor.Custom
  1077. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  1078. 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)
  1079. p17.CanCollide = false
  1080. p17.Locked = true
  1081. p17.BottomSurface = Enum.SurfaceType.Smooth
  1082. p17.TopSurface = Enum.SurfaceType.Smooth
  1083. b15 = Instance.new("BlockMesh", p17)
  1084. b15.Name = "Mesh"
  1085. p18 = Instance.new("Part", m)
  1086. p18.BrickColor = BrickColor.new("Institutional white")
  1087. p18.Material = "Neon"
  1088. p18.FormFactor = Enum.FormFactor.Symmetric
  1089. p18.Size = Vector3.new(1, 1, 1)
  1090. 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)
  1091. p18.CanCollide = false
  1092. p18.Locked = true
  1093. b16 = Instance.new("SpecialMesh", p18)
  1094. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1095. b16.TextureId = ""
  1096. b16.MeshType = Enum.MeshType.FileMesh
  1097. b16.Name = "Mesh"
  1098. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1099. p19 = Instance.new("Part", m)
  1100. p19.BrickColor = BrickColor.new("Institutional white")
  1101. p19.Material = "Neon"
  1102. p19.FormFactor = Enum.FormFactor.Symmetric
  1103. p19.Size = Vector3.new(1, 1, 1)
  1104. 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)
  1105. p19.CanCollide = false
  1106. p19.Locked = true
  1107. b17 = Instance.new("SpecialMesh", p19)
  1108. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1109. b17.TextureId = ""
  1110. b17.MeshType = Enum.MeshType.FileMesh
  1111. b17.Name = "Mesh"
  1112. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1113. p20 = Instance.new("Part", m)
  1114. p20.BrickColor = BrickColor.new("Really black")
  1115. p20.FormFactor = Enum.FormFactor.Custom
  1116. p20.Size = Vector3.new(3, 1, 2.4000001)
  1117. 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)
  1118. p20.CanCollide = false
  1119. p20.Locked = true
  1120. p20.BottomSurface = Enum.SurfaceType.Smooth
  1121. p20.TopSurface = Enum.SurfaceType.Smooth
  1122. b18 = Instance.new("BlockMesh", p20)
  1123. b18.Name = "Mesh"
  1124. p21 = Instance.new("Part", m)
  1125. p21.BrickColor = BrickColor.new("Really black")
  1126. p21.FormFactor = Enum.FormFactor.Custom
  1127. p21.Size = Vector3.new(3, 1, 1.19999993)
  1128. 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)
  1129. p21.CanCollide = false
  1130. p21.Locked = true
  1131. p21.BottomSurface = Enum.SurfaceType.Smooth
  1132. p21.TopSurface = Enum.SurfaceType.Smooth
  1133. b19 = Instance.new("BlockMesh", p21)
  1134. b19.Name = "Mesh"
  1135. p22 = Instance.new("WedgePart", m)
  1136. p22.BrickColor = BrickColor.new("Really black")
  1137. p22.Name = "Wedge"
  1138. p22.FormFactor = Enum.FormFactor.Custom
  1139. p22.Size = Vector3.new(3, 1, 0.5)
  1140. 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)
  1141. p22.CanCollide = false
  1142. p22.Locked = true
  1143. p22.BottomSurface = Enum.SurfaceType.Smooth
  1144. p22.TopSurface = Enum.SurfaceType.Smooth
  1145. p23 = Instance.new("Part", m)
  1146. p23.BrickColor = BrickColor.new("Really black")
  1147. p23.FormFactor = Enum.FormFactor.Custom
  1148. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  1149. 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)
  1150. p23.CanCollide = false
  1151. p23.Locked = true
  1152. p23.BottomSurface = Enum.SurfaceType.Smooth
  1153. p23.TopSurface = Enum.SurfaceType.Smooth
  1154. b20 = Instance.new("BlockMesh", p23)
  1155. b20.Name = "Mesh"
  1156. p24 = Instance.new("WedgePart", m)
  1157. p24.BrickColor = BrickColor.new("Really black")
  1158. p24.Name = "Wedge"
  1159. p24.FormFactor = Enum.FormFactor.Custom
  1160. p24.Size = Vector3.new(3, 1, 0.5)
  1161. 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)
  1162. p24.CanCollide = false
  1163. p24.Locked = true
  1164. p24.BottomSurface = Enum.SurfaceType.Smooth
  1165. p24.TopSurface = Enum.SurfaceType.Smooth
  1166. p25 = Instance.new("Part", m)
  1167. p25.BrickColor = BrickColor.new("Institutional white")
  1168. p25.Material = "Neon"
  1169. p25.FormFactor = Enum.FormFactor.Symmetric
  1170. p25.Size = Vector3.new(1, 1, 1)
  1171. 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)
  1172. p25.CanCollide = false
  1173. p25.Locked = true
  1174. p25.BottomSurface = Enum.SurfaceType.Smooth
  1175. p25.TopSurface = Enum.SurfaceType.Smooth
  1176. b21 = Instance.new("SpecialMesh", p25)
  1177. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1178. b21.TextureId = ""
  1179. b21.MeshType = Enum.MeshType.FileMesh
  1180. b21.Name = "Mesh"
  1181. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1182. p26 = Instance.new("Part", m)
  1183. p26.BrickColor = BrickColor.new("Really black")
  1184. p26.FormFactor = Enum.FormFactor.Symmetric
  1185. p26.Size = Vector3.new(1, 1, 1)
  1186. 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)
  1187. p26.CanCollide = false
  1188. p26.Locked = true
  1189. p26.BottomSurface = Enum.SurfaceType.Smooth
  1190. p26.TopSurface = Enum.SurfaceType.Smooth
  1191. b22 = Instance.new("SpecialMesh", p26)
  1192. b22.MeshType = Enum.MeshType.Brick
  1193. b22.Name = "Mesh"
  1194. w1 = Instance.new("Weld", p1)
  1195. w1.Name = "Wedge_Weld"
  1196. w1.Part0 = p1
  1197. 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)
  1198. w1.Part1 = p2
  1199. 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)
  1200. w2 = Instance.new("Weld", p2)
  1201. w2.Name = "Part_Weld"
  1202. w2.Part0 = p2
  1203. 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)
  1204. w2.Part1 = p3
  1205. 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)
  1206. w3 = Instance.new("Weld", p3)
  1207. w3.Name = "Wedge_Weld"
  1208. w3.Part0 = p3
  1209. 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)
  1210. w3.Part1 = p4
  1211. 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)
  1212. w4 = Instance.new("Weld", p4)
  1213. w4.Name = "Part_Weld"
  1214. w4.Part0 = p4
  1215. 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)
  1216. w4.Part1 = p5
  1217. 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)
  1218. w5 = Instance.new("Weld", p5)
  1219. w5.Name = "Part_Weld"
  1220. w5.Part0 = p5
  1221. 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)
  1222. w5.Part1 = p6
  1223. 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)
  1224. w6 = Instance.new("Weld", p6)
  1225. w6.Name = "Part_Weld"
  1226. w6.Part0 = p6
  1227. 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)
  1228. w6.Part1 = p7
  1229. 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)
  1230. w7 = Instance.new("Weld", p7)
  1231. w7.Name = "Part_Weld"
  1232. w7.Part0 = p7
  1233. 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)
  1234. w7.Part1 = p8
  1235. 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)
  1236. w8 = Instance.new("Weld", p8)
  1237. w8.Name = "Part_Weld"
  1238. w8.Part0 = p8
  1239. 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)
  1240. w8.Part1 = p9
  1241. 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)
  1242. w9 = Instance.new("Weld", p9)
  1243. w9.Name = "Part_Weld"
  1244. w9.Part0 = p9
  1245. 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)
  1246. w9.Part1 = p10
  1247. 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)
  1248. w10 = Instance.new("Weld", p10)
  1249. w10.Name = "Part_Weld"
  1250. w10.Part0 = p10
  1251. 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)
  1252. w10.Part1 = p11
  1253. 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)
  1254. w11 = Instance.new("Weld", p11)
  1255. w11.Name = "Part_Weld"
  1256. w11.Part0 = p11
  1257. 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)
  1258. w11.Part1 = p12
  1259. 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)
  1260. w12 = Instance.new("Weld", p12)
  1261. w12.Name = "Part_Weld"
  1262. w12.Part0 = p12
  1263. 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)
  1264. w12.Part1 = p13
  1265. 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)
  1266. w13 = Instance.new("Weld", p13)
  1267. w13.Name = "Part_Weld"
  1268. w13.Part0 = p13
  1269. 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)
  1270. w13.Part1 = p14
  1271. 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)
  1272. w14 = Instance.new("Weld", p14)
  1273. w14.Name = "ArmPart_Weld"
  1274. w14.Part0 = p14
  1275. 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)
  1276. w14.Part1 = p15
  1277. 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)
  1278. w15 = Instance.new("Weld", p15)
  1279. w15.Name = "Part_Weld"
  1280. w15.Part0 = p15
  1281. 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)
  1282. w15.Part1 = p16
  1283. 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)
  1284. w16 = Instance.new("Weld", p16)
  1285. w16.Name = "Part_Weld"
  1286. w16.Part0 = p16
  1287. 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)
  1288. w16.Part1 = p17
  1289. 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)
  1290. w17 = Instance.new("Weld", p17)
  1291. w17.Name = "Part_Weld"
  1292. w17.Part0 = p17
  1293. 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)
  1294. w17.Part1 = p18
  1295. 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)
  1296. w18 = Instance.new("Weld", p18)
  1297. w18.Name = "Part_Weld"
  1298. w18.Part0 = p18
  1299. 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)
  1300. w18.Part1 = p19
  1301. 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)
  1302. w19 = Instance.new("Weld", p19)
  1303. w19.Name = "Part_Weld"
  1304. w19.Part0 = p19
  1305. 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)
  1306. w19.Part1 = p20
  1307. 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)
  1308. w20 = Instance.new("Weld", p20)
  1309. w20.Name = "Part_Weld"
  1310. w20.Part0 = p20
  1311. 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)
  1312. w20.Part1 = p21
  1313. 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)
  1314. w21 = Instance.new("Weld", p21)
  1315. w21.Name = "Wedge_Weld"
  1316. w21.Part0 = p21
  1317. 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)
  1318. w21.Part1 = p22
  1319. 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)
  1320. w22 = Instance.new("Weld", p22)
  1321. w22.Name = "Part_Weld"
  1322. w22.Part0 = p22
  1323. 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)
  1324. w22.Part1 = p23
  1325. 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)
  1326. w23 = Instance.new("Weld", p23)
  1327. w23.Name = "Wedge_Weld"
  1328. w23.Part0 = p23
  1329. 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)
  1330. w23.Part1 = p24
  1331. 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)
  1332. w24 = Instance.new("Weld", p24)
  1333. w24.Name = "Part_Weld"
  1334. w24.Part0 = p24
  1335. 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)
  1336. w24.Part1 = p25
  1337. 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)
  1338. w25 = Instance.new("Weld", p25)
  1339. w25.Name = "Part_Weld"
  1340. w25.Part0 = p25
  1341. 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)
  1342. w25.Part1 = p26
  1343. 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)
  1344. m.Parent = char
  1345. m:MakeJoints()
  1346. ----------------------------------------------------
  1347. local cor2 = Instance.new("Part", char.Claw)
  1348. cor2.Name = "Thingy"
  1349. cor2.Locked = true
  1350. cor2.BottomSurface = 0
  1351. cor2.CanCollide = false
  1352. cor2.Size = Vector3.new(2, 1, 1)
  1353. cor2.Transparency = 1
  1354. cor2.TopSurface = 0
  1355. corw2 = Instance.new("Weld", cor2)
  1356. corw2.Part0 = larm
  1357. corw2.Part1 = cor2
  1358. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1359. corw2.C1 = CFrame.new(0, 0, 0)
  1360. weld2 = Instance.new("Weld", char.Claw)
  1361. weld2.Part0 = cor2
  1362. weld2.Part1 = char.Claw.ArmPart
  1363. weld2.C0 = CFrame.new(0, 0, 0)
  1364. ----------------------------------------------------
  1365. local m = Instance.new("Model")
  1366. m.Name = "LeftArm"
  1367. p1 = Instance.new("WedgePart", m)
  1368. p1.BrickColor = BrickColor.new("Institutional white")
  1369. p1.Material = Enum.Material.Neon
  1370. p1.Name = "Wedge"
  1371. p1.FormFactor = Enum.FormFactor.Custom
  1372. p1.Size = Vector3.new(1, 1.19999981, 4)
  1373. p1.CFrame = CFrame.new(60.830101, 8.39941978, -13.7674818, 1.52359269e-006, -0.707334042, 0.707343757, -2.62521735e-006, 0.707093, 0.707071185, -1.00027835, 3.43534703e-006, 4.43342998e-007)
  1374. p1.CanCollide = false
  1375. p1.Locked = true
  1376. p1.TopSurface = Enum.SurfaceType.Smooth
  1377. b1 = Instance.new("SpecialMesh", p1)
  1378. b1.MeshType = Enum.MeshType.Wedge
  1379. b1.Name = "Mesh"
  1380. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1381. p2 = Instance.new("WedgePart", m)
  1382. p2.BrickColor = BrickColor.new("Institutional white")
  1383. p2.Material = Enum.Material.Neon
  1384. p2.Name = "Wedge"
  1385. p2.FormFactor = Enum.FormFactor.Custom
  1386. p2.Size = Vector3.new(1, 1.19999981, 4)
  1387. p2.CFrame = CFrame.new(60.8306694, 8.39941502, -12.5672398, 1.56085741e-006, -0.707337618, 0.707340181, -2.7146209e-006, 0.707089424, 0.707074761, -1.00027835, 3.34575839e-006, 4.06471969e-007)
  1388. p2.CanCollide = false
  1389. p2.Locked = true
  1390. p2.TopSurface = Enum.SurfaceType.Smooth
  1391. b2 = Instance.new("SpecialMesh", p2)
  1392. b2.MeshType = Enum.MeshType.Wedge
  1393. b2.Name = "Mesh"
  1394. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1395. p3 = Instance.new("WedgePart", m)
  1396. p3.BrickColor = BrickColor.new("Institutional white")
  1397. p3.Material = Enum.Material.Neon
  1398. p3.Name = "Wedge"
  1399. p3.FormFactor = Enum.FormFactor.Custom
  1400. p3.Size = Vector3.new(1, 1.19999981, 4)
  1401. p3.CFrame = CFrame.new(60.8312187, 8.39939976, -13.1675138, 1.66519976e-006, -0.707341254, 0.707336545, -2.72952207e-006, 0.707085788, 0.707078397, -1.00027835, 3.26143936e-006, 4.69727013e-007)
  1402. p3.CanCollide = false
  1403. p3.Locked = true
  1404. p3.TopSurface = Enum.SurfaceType.Smooth
  1405. b3 = Instance.new("SpecialMesh", p3)
  1406. b3.MeshType = Enum.MeshType.Wedge
  1407. b3.Name = "Mesh"
  1408. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1409. p4 = Instance.new("WedgePart", m)
  1410. p4.BrickColor = BrickColor.new("Institutional white")
  1411. p4.Material = Enum.Material.Neon
  1412. p4.Name = "Wedge"
  1413. p4.FormFactor = Enum.FormFactor.Custom
  1414. p4.Size = Vector3.new(1, 1.19999981, 4)
  1415. p4.CFrame = CFrame.new(60.8317757, 8.39937305, -13.1676111, 1.74718321e-006, -0.70734489, 0.707332909, -2.7742235e-006, 0.707082152, 0.707082033, -1.00027835, 3.17185027e-006, 4.96093037e-007)
  1416. p4.CanCollide = false
  1417. p4.Locked = true
  1418. p4.TopSurface = Enum.SurfaceType.Smooth
  1419. b4 = Instance.new("SpecialMesh", p4)
  1420. b4.MeshType = Enum.MeshType.Wedge
  1421. b4.Name = "Mesh"
  1422. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1423. p5 = Instance.new("WedgePart", m)
  1424. p5.BrickColor = BrickColor.new("Institutional white")
  1425. p5.Material = Enum.Material.Neon
  1426. p5.Name = "Wedge"
  1427. p5.FormFactor = Enum.FormFactor.Custom
  1428. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1429. p5.CFrame = CFrame.new(60.4623528, 9.0813055, -13.1677084, -1.74365277e-006, 0.422768414, 0.90661031, 3.01146247e-006, -0.90627563, 0.422602654, 1.00028574, -3.16541991e-006, -6.48408104e-007)
  1430. p5.CanCollide = false
  1431. p5.Locked = true
  1432. p5.TopSurface = Enum.SurfaceType.Smooth
  1433. b5 = Instance.new("SpecialMesh", p5)
  1434. b5.MeshType = Enum.MeshType.Wedge
  1435. b5.Name = "Mesh"
  1436. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1437. p6 = Instance.new("WedgePart", m)
  1438. p6.BrickColor = BrickColor.new("Institutional white")
  1439. p6.Material = Enum.Material.Neon
  1440. p6.Name = "Wedge"
  1441. p6.FormFactor = Enum.FormFactor.Custom
  1442. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1443. p6.CFrame = CFrame.new(60.4629173, 9.08128643, -13.7679863, -1.75857326e-006, 0.422772557, 0.906618714, 3.13068858e-006, -0.906274974, 0.422602147, 1.00029314, -3.27979569e-006, -6.11540997e-007)
  1444. p6.CanCollide = false
  1445. p6.Locked = true
  1446. p6.TopSurface = Enum.SurfaceType.Smooth
  1447. b6 = Instance.new("SpecialMesh", p6)
  1448. b6.MeshType = Enum.MeshType.Wedge
  1449. b6.Name = "Mesh"
  1450. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1451. p7 = Instance.new("WedgePart", m)
  1452. p7.BrickColor = BrickColor.new("Institutional white")
  1453. p7.Material = Enum.Material.Neon
  1454. p7.Name = "Wedge"
  1455. p7.FormFactor = Enum.FormFactor.Custom
  1456. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1457. p7.CFrame = CFrame.new(60.4634781, 9.0812645, -12.5677195, -1.77349398e-006, 0.422776699, 0.906627119, 3.24991538e-006, -0.906274319, 0.42260164, 1.00030053, -3.39417238e-006, -5.74673834e-007)
  1458. p7.CanCollide = false
  1459. p7.Locked = true
  1460. p7.TopSurface = Enum.SurfaceType.Smooth
  1461. b7 = Instance.new("SpecialMesh", p7)
  1462. b7.MeshType = Enum.MeshType.Wedge
  1463. b7.Name = "Mesh"
  1464. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1465. p8 = Instance.new("Part", m)
  1466. p8.BrickColor = BrickColor.new("Really black")
  1467. p8.Material = Enum.Material.Neon
  1468. p8.FormFactor = Enum.FormFactor.Custom
  1469. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1470. p8.CFrame = CFrame.new(62.1344833, 9.89923668, -14.2683573, 1.0003655, -9.00030136e-006, -1.6914961e-006, -8.34465027e-007, 0.999961495, 3.15914986e-006, -2.15653972e-006, 3.05826416e-006, 1.00030792)
  1471. p8.CanCollide = false
  1472. p8.Locked = true
  1473. p8.BottomSurface = Enum.SurfaceType.Smooth
  1474. p8.TopSurface = Enum.SurfaceType.Smooth
  1475. b8 = Instance.new("SpecialMesh", p8)
  1476. b8.MeshType = Enum.MeshType.Sphere
  1477. b8.Name = "Mesh"
  1478. p9 = Instance.new("Part", m)
  1479. p9.BrickColor = BrickColor.new("Really black")
  1480. p9.Material = Enum.Material.Neon
  1481. p9.FormFactor = Enum.FormFactor.Custom
  1482. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1483. p9.CFrame = CFrame.new(62.1350441, 7.19933271, -14.2684784, 1.00037432, -9.11423649e-006, -1.78677055e-006, -8.82557742e-007, 0.999960482, 3.17407398e-006, -2.19382355e-006, 3.14769591e-006, 1.00031543)
  1484. p9.CanCollide = false
  1485. p9.Locked = true
  1486. p9.BottomSurface = Enum.SurfaceType.Smooth
  1487. p9.TopSurface = Enum.SurfaceType.Smooth
  1488. b9 = Instance.new("SpecialMesh", p9)
  1489. b9.MeshType = Enum.MeshType.Sphere
  1490. b9.Name = "Mesh"
  1491. p10 = Instance.new("Part", m)
  1492. p10.BrickColor = BrickColor.new("Institutional white")
  1493. p10.Material = Enum.Material.Neon
  1494. p10.FormFactor = Enum.FormFactor.Custom
  1495. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1496. p10.CFrame = CFrame.new(62.4732666, 7.92819929, -14.2685785, -0.906659067, -0.422771662, -1.80169195e-006, 0.422602057, -0.906270981, 3.2933026e-006, 3.38190716e-006, -1.99476835e-006, 1.00032294)
  1497. p10.CanCollide = false
  1498. p10.Locked = true
  1499. p10.BottomSurface = Enum.SurfaceType.Smooth
  1500. p10.TopSurface = Enum.SurfaceType.Smooth
  1501. p11 = Instance.new("Part", m)
  1502. p11.BrickColor = BrickColor.new("Institutional white")
  1503. p11.Material = Enum.Material.Neon
  1504. p11.FormFactor = Enum.FormFactor.Custom
  1505. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1506. p11.CFrame = CFrame.new(62.4794731, 9.45469475, -14.2686787, -0.819467902, 0.573809147, -1.81661335e-006, -0.573551893, -0.819118977, 3.41253167e-006, -9.27350783e-008, -4.03244348e-006, 1.00033033)
  1507. p11.CanCollide = false
  1508. p11.Locked = true
  1509. p11.BottomSurface = Enum.SurfaceType.Smooth
  1510. p11.TopSurface = Enum.SurfaceType.Smooth
  1511. p12 = Instance.new("Part", m)
  1512. p12.BrickColor = BrickColor.new("Really black")
  1513. p12.Material = Enum.Material.Neon
  1514. p12.FormFactor = Enum.FormFactor.Custom
  1515. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1516. p12.CFrame = CFrame.new(62.7369499, 6.29933262, -14.2688055, 1.00040102, -9.53674316e-006, -1.84644205e-006, -1.25169754e-006, 0.999957919, 3.50196092e-006, -2.25187659e-006, 3.46763295e-006, 1.00033784)
  1517. p12.CanCollide = false
  1518. p12.Locked = true
  1519. p12.BottomSurface = Enum.SurfaceType.Smooth
  1520. p12.TopSurface = Enum.SurfaceType.Smooth
  1521. b10 = Instance.new("SpecialMesh", p12)
  1522. b10.MeshType = Enum.MeshType.Sphere
  1523. b10.Name = "Mesh"
  1524. p13 = Instance.new("Part", m)
  1525. p13.BrickColor = BrickColor.new("Institutional white")
  1526. p13.Material = Enum.Material.Neon
  1527. p13.FormFactor = Enum.FormFactor.Custom
  1528. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1529. p13.CFrame = CFrame.new(62.8003883, 10.1991549, -13.2136488, 1.00040984, -9.59636054e-006, -1.88372474e-006, -1.43051466e-006, 0.999956846, 3.58340549e-006, -2.3487878e-006, 3.4825357e-006, 1.00034535)
  1530. p13.CanCollide = false
  1531. p13.Locked = true
  1532. p13.BottomSurface = Enum.SurfaceType.Smooth
  1533. p13.TopSurface = Enum.SurfaceType.Smooth
  1534. b11 = Instance.new("SpecialMesh", p13)
  1535. b11.MeshType = Enum.MeshType.Sphere
  1536. b11.Name = "Mesh"
  1537. p14 = Instance.new("Part", m)
  1538. p14.BrickColor = BrickColor.new("Really black")
  1539. p14.Material = Enum.Material.Neon
  1540. p14.FormFactor = Enum.FormFactor.Custom
  1541. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1542. p14.CFrame = CFrame.new(62.7374802, 9.79915905, -14.2689018, 1.00041437, -9.80505502e-006, -1.96572228e-006, -1.37091877e-006, 0.999956131, 3.62812011e-006, -2.37115751e-006, 3.4527211e-006, 1.00034904)
  1543. p14.CanCollide = false
  1544. p14.Locked = true
  1545. p14.BottomSurface = Enum.SurfaceType.Smooth
  1546. p14.TopSurface = Enum.SurfaceType.Smooth
  1547. b12 = Instance.new("SpecialMesh", p14)
  1548. b12.MeshType = Enum.MeshType.Sphere
  1549. b12.Name = "Mesh"
  1550. p15 = Instance.new("Part", m)
  1551. p15.BrickColor = BrickColor.new("Really black")
  1552. p15.Material = Enum.Material.Metal
  1553. p15.Name = "Main"
  1554. p15.FormFactor = Enum.FormFactor.Custom
  1555. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1556. p15.CFrame = CFrame.new(62.838131, 8.1992178, -13.1686192, 1.00041902, -9.80505047e-006, -1.96572933e-006, -1.54973122e-006, 0.999955654, 3.62813353e-006, -2.38607572e-006, 3.57197018e-006, 1.00035274)
  1557. p15.CanCollide = false
  1558. p15.Locked = true
  1559. p15.BottomSurface = Enum.SurfaceType.Smooth
  1560. p15.TopSurface = Enum.SurfaceType.Smooth
  1561. p16 = Instance.new("Part", m)
  1562. p16.BrickColor = BrickColor.new("Really black")
  1563. p16.Material = Enum.Material.Neon
  1564. p16.FormFactor = Enum.FormFactor.Custom
  1565. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1566. p16.CFrame = CFrame.new(62.9387741, 8.79918098, -14.2691231, 1.0004282, -9.95411301e-006, -2.00301338e-006, -1.66894927e-006, 0.999954581, 3.71756369e-006, -2.46808372e-006, 3.61668594e-006, 1.00036013)
  1567. p16.CanCollide = false
  1568. p16.Locked = true
  1569. p16.BottomSurface = Enum.SurfaceType.Smooth
  1570. p16.TopSurface = Enum.SurfaceType.Smooth
  1571. b13 = Instance.new("SpecialMesh", p16)
  1572. b13.MeshType = Enum.MeshType.Sphere
  1573. b13.Name = "Mesh"
  1574. p17 = Instance.new("Part", m)
  1575. p17.BrickColor = BrickColor.new("Institutional white")
  1576. p17.Material = Enum.Material.Neon
  1577. p17.FormFactor = Enum.FormFactor.Custom
  1578. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1579. p17.CFrame = CFrame.new(63.0825539, 6.854743, -14.2692442, -0.866409063, -0.50020963, -2.099928e-006, 0.499978155, -0.86598444, 3.73249213e-006, 4.01878242e-006, -1.94999211e-006, 1.00036764)
  1580. p17.CanCollide = false
  1581. p17.Locked = true
  1582. p17.BottomSurface = Enum.SurfaceType.Smooth
  1583. p17.TopSurface = Enum.SurfaceType.Smooth
  1584. p18 = Instance.new("Part", m)
  1585. p18.BrickColor = BrickColor.new("Institutional white")
  1586. p18.Material = Enum.Material.Neon
  1587. p18.FormFactor = Enum.FormFactor.Custom
  1588. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1589. p18.CFrame = CFrame.new(63.1831665, 8.15466595, -14.2693415, -0.906707585, 0.422816038, -2.11485258e-006, -0.422596663, -0.906265914, 3.8437388e-006, 6.9698217e-007, -4.50413063e-006, 1.00037515)
  1590. p18.CanCollide = false
  1591. p18.Locked = true
  1592. p18.BottomSurface = Enum.SurfaceType.Smooth
  1593. p18.TopSurface = Enum.SurfaceType.Smooth
  1594. p19 = Instance.new("Part", m)
  1595. p19.BrickColor = BrickColor.new("Institutional white")
  1596. p19.Material = Enum.Material.Neon
  1597. p19.FormFactor = Enum.FormFactor.Custom
  1598. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1599. p19.CFrame = CFrame.new(63.2069473, 8.53140068, -14.2694473, -0.707418501, 0.707425714, -2.09994369e-006, -0.707068563, -0.707078457, 3.72453474e-006, -9.59315798e-007, -4.56575162e-006, 1.00037515)
  1600. p19.CanCollide = false
  1601. p19.Locked = true
  1602. p19.BottomSurface = Enum.SurfaceType.Smooth
  1603. p19.TopSurface = Enum.SurfaceType.Smooth
  1604. p20 = Instance.new("Part", m)
  1605. p20.BrickColor = BrickColor.new("Institutional white")
  1606. p20.Material = Enum.Material.Neon
  1607. p20.FormFactor = Enum.FormFactor.Custom
  1608. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1609. p20.CFrame = CFrame.new(63.2280884, 9.68191624, -14.2694416, -0.342169315, 0.940117717, -2.11486008e-006, -0.93964541, -0.342010528, 3.84375198e-006, -2.7989995e-006, -3.73256239e-006, 1.00037885)
  1610. p20.CanCollide = false
  1611. p20.Locked = true
  1612. p20.BottomSurface = Enum.SurfaceType.Smooth
  1613. p20.TopSurface = Enum.SurfaceType.Smooth
  1614. p21 = Instance.new("Part", m)
  1615. p21.BrickColor = BrickColor.new("Institutional white")
  1616. p21.Material = Enum.Material.Neon
  1617. p21.FormFactor = Enum.FormFactor.Custom
  1618. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1619. p21.CFrame = CFrame.new(63.3539009, 9.07959557, -14.2694454, 0.707428038, 0.707422554, -2.12876989e-006, -0.707079053, 0.707067132, 3.83015185e-006, -4.56554562e-006, 9.7875602e-007, 1.00037885)
  1620. p21.CanCollide = false
  1621. p21.Locked = true
  1622. p21.BottomSurface = Enum.SurfaceType.Smooth
  1623. p21.TopSurface = Enum.SurfaceType.Smooth
  1624. p22 = Instance.new("Part", m)
  1625. p22.BrickColor = BrickColor.new("Really black")
  1626. p22.Material = Enum.Material.Neon
  1627. p22.FormFactor = Enum.FormFactor.Custom
  1628. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1629. p22.CFrame = CFrame.new(63.4412346, 7.49916172, -14.269558, 1.0004549, -5.30481339e-006, -2.11486781e-006, -7.24196434e-006, 0.999951959, 3.84376608e-006, -2.5650661e-006, 4.02606338e-006, 1.00038254)
  1630. p22.CanCollide = false
  1631. p22.Locked = true
  1632. p22.BottomSurface = Enum.SurfaceType.Smooth
  1633. p22.TopSurface = Enum.SurfaceType.Smooth
  1634. b14 = Instance.new("SpecialMesh", p22)
  1635. b14.MeshType = Enum.MeshType.Sphere
  1636. b14.Name = "Mesh"
  1637. p23 = Instance.new("Part", m)
  1638. p23.BrickColor = BrickColor.new("Really black")
  1639. p23.Material = Enum.Material.Neon
  1640. p23.FormFactor = Enum.FormFactor.Custom
  1641. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1642. p23.CFrame = CFrame.new(63.5412827, 8.29912186, -14.2695541, 1.00045943, -5.54520193e-006, -2.12978443e-006, -7.22709638e-006, 0.999951601, 3.96298356e-006, -2.56507747e-006, 4.02606247e-006, 1.00038624)
  1643. p23.CanCollide = false
  1644. p23.Locked = true
  1645. p23.BottomSurface = Enum.SurfaceType.Smooth
  1646. p23.TopSurface = Enum.SurfaceType.Smooth
  1647. b15 = Instance.new("SpecialMesh", p23)
  1648. b15.MeshType = Enum.MeshType.Sphere
  1649. b15.Name = "Mesh"
  1650. p24 = Instance.new("Part", m)
  1651. p24.BrickColor = BrickColor.new("Really black")
  1652. p24.Material = Enum.Material.Neon
  1653. p24.FormFactor = Enum.FormFactor.Custom
  1654. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1655. p24.CFrame = CFrame.new(63.7413521, 9.49905682, -14.2695513, 1.00045943, -5.51538596e-006, -2.12978443e-006, -7.25689733e-006, 0.999951601, 3.96298356e-006, -2.56507769e-006, 4.02606247e-006, 1.00038624)
  1656. p24.CanCollide = false
  1657. p24.Locked = true
  1658. p24.BottomSurface = Enum.SurfaceType.Smooth
  1659. p24.TopSurface = Enum.SurfaceType.Smooth
  1660. b16 = Instance.new("SpecialMesh", p24)
  1661. b16.MeshType = Enum.MeshType.Sphere
  1662. b16.Name = "Mesh"
  1663. w1 = Instance.new("Weld", p1)
  1664. w1.Name = "Wedge_Weld"
  1665. w1.Part0 = p1
  1666. w1.C0 = CFrame.new(-13.7623367, 38.4686089, -47.5196228, 1.82382877e-007, -1.21785519e-007, -1.0000037, -0.707109988, 0.707106709, -1.20249211e-007, 0.707110047, 0.707106352, 1.16605563e-007)
  1667. w1.Part1 = p2
  1668. w1.C1 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1669. w2 = Instance.new("Weld", p2)
  1670. w2.Name = "Wedge_Weld"
  1671. w2.Part0 = p2
  1672. w2.C0 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1673. w2.Part1 = p3
  1674. w2.C1 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1675. w3 = Instance.new("Weld", p3)
  1676. w3.Name = "Wedge_Weld"
  1677. w3.Part0 = p3
  1678. w3.C0 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1679. w3.Part1 = p4
  1680. w3.C1 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1681. w4 = Instance.new("Weld", p4)
  1682. w4.Name = "Wedge_Weld"
  1683. w4.Part0 = p4
  1684. w4.C0 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1685. w4.Part1 = p5
  1686. w4.C1 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1687. w5 = Instance.new("Weld", p5)
  1688. w5.Name = "Wedge_Weld"
  1689. w5.Part0 = p5
  1690. w5.C0 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1691. w5.Part1 = p6
  1692. w5.C1 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1693. w6 = Instance.new("Weld", p6)
  1694. w6.Name = "Wedge_Weld"
  1695. w6.Part0 = p6
  1696. w6.C0 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1697. w6.Part1 = p7
  1698. w6.C1 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1699. w7 = Instance.new("Weld", p7)
  1700. w7.Name = "Part_Weld"
  1701. w7.Part0 = p7
  1702. w7.C0 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1703. w7.Part1 = p8
  1704. w7.C1 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1705. w8 = Instance.new("Weld", p8)
  1706. w8.Name = "Part_Weld"
  1707. w8.Part0 = p8
  1708. w8.C0 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1709. w8.Part1 = p9
  1710. w8.C1 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1711. w9 = Instance.new("Weld", p9)
  1712. w9.Name = "Part_Weld"
  1713. w9.Part0 = p9
  1714. w9.C0 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1715. w9.Part1 = p10
  1716. w9.C1 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1717. w10 = Instance.new("Weld", p10)
  1718. w10.Name = "Part_Weld"
  1719. w10.Part0 = p10
  1720. w10.C0 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1721. w10.Part1 = p11
  1722. w10.C1 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1723. w11 = Instance.new("Weld", p11)
  1724. w11.Name = "Part_Weld"
  1725. w11.Part0 = p11
  1726. w11.C0 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1727. w11.Part1 = p12
  1728. w11.C1 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1729. w12 = Instance.new("Weld", p12)
  1730. w12.Name = "Part_Weld"
  1731. w12.Part0 = p12
  1732. w12.C0 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1733. w12.Part1 = p13
  1734. w12.C1 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1735. w13 = Instance.new("Weld", p13)
  1736. w13.Name = "Part_Weld"
  1737. w13.Part0 = p13
  1738. w13.C0 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1739. w13.Part1 = p14
  1740. w13.C1 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1741. w14 = Instance.new("Weld", p14)
  1742. w14.Name = "Part_Weld"
  1743. w14.Part0 = p14
  1744. w14.C0 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1745. w14.Part1 = p15
  1746. w14.C1 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1747. w15 = Instance.new("Weld", p15)
  1748. w15.Name = "Part_Weld"
  1749. w15.Part0 = p15
  1750. w15.C0 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1751. w15.Part1 = p16
  1752. w15.C1 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1753. w16 = Instance.new("Weld", p16)
  1754. w16.Name = "Part_Weld"
  1755. w16.Part0 = p16
  1756. w16.C0 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1757. w16.Part1 = p17
  1758. w16.C1 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1759. w17 = Instance.new("Weld", p17)
  1760. w17.Name = "Part_Weld"
  1761. w17.Part0 = p17
  1762. w17.C0 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1763. w17.Part1 = p18
  1764. w17.C1 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1765. w18 = Instance.new("Weld", p18)
  1766. w18.Name = "Part_Weld"
  1767. w18.Part0 = p18
  1768. w18.C0 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1769. w18.Part1 = p19
  1770. w18.C1 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1771. w19 = Instance.new("Weld", p19)
  1772. w19.Name = "Part_Weld"
  1773. w19.Part0 = p19
  1774. w19.C0 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1775. w19.Part1 = p20
  1776. w19.C1 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1777. w20 = Instance.new("Weld", p20)
  1778. w20.Name = "Part_Weld"
  1779. w20.Part0 = p20
  1780. w20.C0 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1781. w20.Part1 = p21
  1782. w20.C1 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1783. w21 = Instance.new("Weld", p21)
  1784. w21.Name = "Part_Weld"
  1785. w21.Part0 = p21
  1786. w21.C0 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1787. w21.Part1 = p22
  1788. w21.C1 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1789. w22 = Instance.new("Weld", p22)
  1790. w22.Name = "Part_Weld"
  1791. w22.Part0 = p22
  1792. w22.C0 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1793. w22.Part1 = p23
  1794. w22.C1 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1795. w23 = Instance.new("Weld", p23)
  1796. w23.Name = "Part_Weld"
  1797. w23.Part0 = p23
  1798. w23.C0 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1799. w23.Part1 = p24
  1800. w23.C1 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1801. w24 = Instance.new("Weld", p24)
  1802. w24.Name = "Part_Weld"
  1803. w24.Part0 = p24
  1804. w24.C0 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1805. m.Parent = larm
  1806. m:MakeJoints()
  1807. ----------------------------------------------------
  1808. local cor3 = Instance.new("Part", larm.LeftArm)
  1809. cor3.Name = "Thingy"
  1810. cor3.Locked = true
  1811. cor3.BottomSurface = 0
  1812. cor3.CanCollide = false
  1813. cor3.Size = Vector3.new(2, 1, 1)
  1814. cor3.Transparency = 1
  1815. cor3.TopSurface = 0
  1816. corw2 = Instance.new("Weld", cor3)
  1817. corw2.Part0 = larm
  1818. corw2.Part1 = cor3
  1819. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1820. corw2.C1 = CFrame.new(0, 0, 0)
  1821. weld2 = Instance.new("Weld", larm.LeftArm)
  1822. weld2.Part0 = cor3
  1823. weld2.Part1 = p15
  1824. weld2.C0 = CFrame.new(0, 0, 0)
  1825. ----------------------------------------------------
  1826. local m = Instance.new("Model")
  1827. m.Name = "RightArm"
  1828. p1 = Instance.new("WedgePart", m)
  1829. p1.BrickColor = BrickColor.new("Institutional white")
  1830. p1.Material = Enum.Material.Neon
  1831. p1.Name = "Wedge"
  1832. p1.FormFactor = Enum.FormFactor.Custom
  1833. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1834. p1.CFrame = CFrame.new(71.7528229, 9.08148766, -13.7657108, 2.20961255e-007, -0.422704399, -0.906498253, -1.70178805e-006, -0.906287491, 0.422612786, -1.00018191, -1.16194826e-006, 2.39246219e-006)
  1835. p1.CanCollide = false
  1836. p1.Locked = true
  1837. p1.TopSurface = Enum.SurfaceType.Smooth
  1838. b1 = Instance.new("SpecialMesh", p1)
  1839. b1.MeshType = Enum.MeshType.Wedge
  1840. b1.Name = "Mesh"
  1841. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1842. p2 = Instance.new("WedgePart", m)
  1843. p2.BrickColor = BrickColor.new("Institutional white")
  1844. p2.Material = Enum.Material.Neon
  1845. p2.Name = "Wedge"
  1846. p2.FormFactor = Enum.FormFactor.Custom
  1847. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1848. p2.CFrame = CFrame.new(71.7534714, 9.08147335, -12.5655851, 3.25293399e-007, -0.422708124, -0.906506479, -1.7167032e-006, -0.906286299, 0.422612339, -1.0001893, -1.13135729e-006, 2.49332743e-006)
  1849. p2.CanCollide = false
  1850. p2.Locked = true
  1851. p2.TopSurface = Enum.SurfaceType.Smooth
  1852. b2 = Instance.new("SpecialMesh", p2)
  1853. b2.MeshType = Enum.MeshType.Wedge
  1854. b2.Name = "Mesh"
  1855. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1856. p3 = Instance.new("WedgePart", m)
  1857. p3.BrickColor = BrickColor.new("Institutional white")
  1858. p3.Material = Enum.Material.Neon
  1859. p3.Name = "Wedge"
  1860. p3.FormFactor = Enum.FormFactor.Custom
  1861. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1862. p3.CFrame = CFrame.new(71.7541199, 9.08145237, -13.1658068, 4.29627249e-007, -0.422711849, -0.906514704, -1.73161834e-006, -0.906285107, 0.422611892, -1.0001967, -1.10076587e-006, 2.59419403e-006)
  1863. p3.CanCollide = false
  1864. p3.Locked = true
  1865. p3.TopSurface = Enum.SurfaceType.Smooth
  1866. b3 = Instance.new("SpecialMesh", p3)
  1867. b3.MeshType = Enum.MeshType.Wedge
  1868. b3.Name = "Mesh"
  1869. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1870. p4 = Instance.new("WedgePart", m)
  1871. p4.BrickColor = BrickColor.new("Institutional white")
  1872. p4.Material = Enum.Material.Neon
  1873. p4.Name = "Wedge"
  1874. p4.FormFactor = Enum.FormFactor.Custom
  1875. p4.Size = Vector3.new(1, 1.19999981, 4)
  1876. p4.CFrame = CFrame.new(71.4245453, 8.39948177, -13.7660398, -5.32960883e-007, 0.70726943, -0.707265258, 1.90324067e-006, 0.707083881, 0.707096815, 1.0001967, 9.87842554e-008, 2.61978244e-006)
  1877. p4.CanCollide = false
  1878. p4.Locked = true
  1879. p4.TopSurface = Enum.SurfaceType.Smooth
  1880. b4 = Instance.new("SpecialMesh", p4)
  1881. b4.MeshType = Enum.MeshType.Wedge
  1882. b4.Name = "Mesh"
  1883. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1884. p5 = Instance.new("WedgePart", m)
  1885. p5.BrickColor = BrickColor.new("Institutional white")
  1886. p5.Material = Enum.Material.Neon
  1887. p5.Name = "Wedge"
  1888. p5.FormFactor = Enum.FormFactor.Custom
  1889. p5.Size = Vector3.new(1, 1.19999981, 4)
  1890. p5.CFrame = CFrame.new(71.4251862, 8.39946651, -13.1660223, -6.3729243e-007, 0.707273066, -0.707261622, 1.91814229e-006, 0.707080245, 0.707100451, 1.0001967, 1.62003985e-007, 2.53547341e-006)
  1891. p5.CanCollide = false
  1892. p5.Locked = true
  1893. p5.TopSurface = Enum.SurfaceType.Smooth
  1894. b5 = Instance.new("SpecialMesh", p5)
  1895. b5.MeshType = Enum.MeshType.Wedge
  1896. b5.Name = "Mesh"
  1897. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1898. p6 = Instance.new("WedgePart", m)
  1899. p6.BrickColor = BrickColor.new("Institutional white")
  1900. p6.Material = Enum.Material.Neon
  1901. p6.Name = "Wedge"
  1902. p6.FormFactor = Enum.FormFactor.Custom
  1903. p6.Size = Vector3.new(1, 1.19999981, 4)
  1904. p6.CFrame = CFrame.new(71.4258194, 8.39945126, -12.5660009, -7.41623865e-007, 0.707276702, -0.707257986, 1.93304436e-006, 0.707076609, 0.707104087, 1.0001967, 2.25224142e-007, 2.45116462e-006)
  1905. p6.CanCollide = false
  1906. p6.Locked = true
  1907. p6.TopSurface = Enum.SurfaceType.Smooth
  1908. b6 = Instance.new("SpecialMesh", p6)
  1909. b6.MeshType = Enum.MeshType.Wedge
  1910. b6.Name = "Mesh"
  1911. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1912. p7 = Instance.new("Part", m)
  1913. p7.BrickColor = BrickColor.new("Really black")
  1914. p7.Material = Enum.Material.Neon
  1915. p7.FormFactor = Enum.FormFactor.Custom
  1916. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1917. p7.CFrame = CFrame.new(70.3255081, 6.6994977, -14.2663507, 1.00023162, 1.31726265e-005, -7.92685455e-007, -1.94311142e-005, 0.999976158, 1.97985287e-006, -1.62725564e-006, 1.86058458e-006, 1.00020039)
  1918. p7.CanCollide = false
  1919. p7.Locked = true
  1920. p7.BottomSurface = Enum.SurfaceType.Smooth
  1921. p7.TopSurface = Enum.SurfaceType.Smooth
  1922. b7 = Instance.new("SpecialMesh", p7)
  1923. b7.MeshType = Enum.MeshType.Sphere
  1924. b7.Name = "Mesh"
  1925. p8 = Instance.new("Part", m)
  1926. p8.BrickColor = BrickColor.new("Institutional white")
  1927. p8.Material = Enum.Material.Neon
  1928. p8.FormFactor = Enum.FormFactor.Custom
  1929. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1930. p8.CFrame = CFrame.new(70.0060196, 9.16293144, -14.2664633, 0.881308079, -0.429463804, -0.198316693, 0.401435703, 0.900625467, -0.166355878, 0.250050306, 0.0670034215, 0.966122985)
  1931. p8.CanCollide = false
  1932. p8.Locked = true
  1933. p8.BottomSurface = Enum.SurfaceType.Smooth
  1934. p8.TopSurface = Enum.SurfaceType.Smooth
  1935. p9 = Instance.new("Part", m)
  1936. p9.BrickColor = BrickColor.new("Really black")
  1937. p9.Material = Enum.Material.Neon
  1938. p9.FormFactor = Enum.FormFactor.Custom
  1939. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1940. p9.CFrame = CFrame.new(70.2268219, 8.59942532, -14.2665701, 1.00024557, 1.30422413e-005, -8.7916851e-007, -1.95577741e-005, 0.999974489, 1.9967556e-006, -1.75833702e-006, 2.01165676e-006, 1.00021148)
  1941. p9.CanCollide = false
  1942. p9.Locked = true
  1943. p9.BottomSurface = Enum.SurfaceType.Smooth
  1944. p9.TopSurface = Enum.SurfaceType.Smooth
  1945. b8 = Instance.new("SpecialMesh", p9)
  1946. b8.MeshType = Enum.MeshType.Sphere
  1947. b8.Name = "Mesh"
  1948. p10 = Instance.new("Part", m)
  1949. p10.BrickColor = BrickColor.new("Really black")
  1950. p10.Material = Enum.Material.Neon
  1951. p10.FormFactor = Enum.FormFactor.Custom
  1952. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1953. p10.CFrame = CFrame.new(69.8274002, 9.5993948, -14.266675, 1.00025487, 1.30049675e-005, -9.23888138e-007, -1.9595207e-005, 0.999973536, 2.11597762e-006, -1.80306665e-006, 2.13088947e-006, 1.00021887)
  1954. p10.CanCollide = false
  1955. p10.Locked = true
  1956. p10.BottomSurface = Enum.SurfaceType.Smooth
  1957. p10.TopSurface = Enum.SurfaceType.Smooth
  1958. b9 = Instance.new("SpecialMesh", p10)
  1959. b9.MeshType = Enum.MeshType.Sphere
  1960. b9.Name = "Mesh"
  1961. p11 = Instance.new("Part", m)
  1962. p11.BrickColor = BrickColor.new("Institutional white")
  1963. p11.Material = Enum.Material.Neon
  1964. p11.FormFactor = Enum.FormFactor.Custom
  1965. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1966. p11.CFrame = CFrame.new(69.693718, 7.37976837, -14.2265854, 0.690841019, -0.711695194, -0.129447505, 0.678571701, 0.699464202, -0.224133074, 0.250056893, 0.0670053288, 0.966144204)
  1967. p11.CanCollide = false
  1968. p11.Locked = true
  1969. p11.BottomSurface = Enum.SurfaceType.Smooth
  1970. p11.TopSurface = Enum.SurfaceType.Smooth
  1971. p12 = Instance.new("Part", m)
  1972. p12.BrickColor = BrickColor.new("Institutional white")
  1973. p12.Material = Enum.Material.Neon
  1974. p12.FormFactor = Enum.FormFactor.Custom
  1975. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1976. p12.CFrame = CFrame.new(69.47966, 8.73308277, -14.2467909, 0.176576898, -0.984305978, 0.022559464, 0.951990068, 0.164877579, -0.257825077, 0.25006038, 0.0670051575, 0.966151059)
  1977. p12.CanCollide = false
  1978. p12.Locked = true
  1979. p12.BottomSurface = Enum.SurfaceType.Smooth
  1980. p12.TopSurface = Enum.SurfaceType.Smooth
  1981. p13 = Instance.new("Part", m)
  1982. p13.BrickColor = BrickColor.new("Institutional white")
  1983. p13.Material = Enum.Material.Neon
  1984. p13.FormFactor = Enum.FormFactor.Custom
  1985. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1986. p13.CFrame = CFrame.new(69.3920746, 10.1993351, -13.2118578, 1.00028241, 1.27716921e-005, -1.06170774e-006, -1.99186616e-005, 0.999970496, 2.39908695e-006, -1.93528831e-006, 2.38418579e-006, 1.00024128)
  1987. p13.CanCollide = false
  1988. p13.Locked = true
  1989. p13.BottomSurface = Enum.SurfaceType.Smooth
  1990. p13.TopSurface = Enum.SurfaceType.Smooth
  1991. b10 = Instance.new("SpecialMesh", p13)
  1992. b10.MeshType = Enum.MeshType.Sphere
  1993. b10.Name = "Mesh"
  1994. p14 = Instance.new("Part", m)
  1995. p14.BrickColor = BrickColor.new("Really black")
  1996. p14.Material = Enum.Material.Metal
  1997. p14.Name = "Main"
  1998. p14.FormFactor = Enum.FormFactor.Custom
  1999. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2000. p14.CFrame = CFrame.new(69.4298401, 8.19937706, -13.1668339, 1.00029147, 1.25630004e-005, -1.16605349e-006, -2.0008245e-005, 0.999969125, 2.41400744e-006, -2.03963987e-006, 2.39908786e-006, 1.00024867)
  2001. p14.CanCollide = false
  2002. p14.Locked = true
  2003. p14.BottomSurface = Enum.SurfaceType.Smooth
  2004. p14.TopSurface = Enum.SurfaceType.Smooth
  2005. p15 = Instance.new("Part", m)
  2006. p15.BrickColor = BrickColor.new("Really black")
  2007. p15.Material = Enum.Material.Neon
  2008. p15.FormFactor = Enum.FormFactor.Custom
  2009. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2010. p15.CFrame = CFrame.new(69.1303406, 7.89936399, -14.2672224, 1.00030053, 1.24437429e-005, -1.24804228e-006, -2.02170359e-005, 0.999968052, 2.45872889e-006, -2.07692119e-006, 2.48851507e-006, 1.00025606)
  2011. p15.CanCollide = false
  2012. p15.Locked = true
  2013. p15.BottomSurface = Enum.SurfaceType.Smooth
  2014. p15.TopSurface = Enum.SurfaceType.Smooth
  2015. b11 = Instance.new("SpecialMesh", p15)
  2016. b11.MeshType = Enum.MeshType.Sphere
  2017. b11.Name = "Mesh"
  2018. p16 = Instance.new("Part", m)
  2019. p16.BrickColor = BrickColor.new("Institutional white")
  2020. p16.Material = Enum.Material.Neon
  2021. p16.FormFactor = Enum.FormFactor.Custom
  2022. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  2023. p16.CFrame = CFrame.new(68.9101486, 8.4345789, -14.2572756, 0.881372392, -0.429496199, -0.198331535, 0.401431859, 0.900618315, -0.166353673, 0.250065029, 0.0670081601, 0.966180325)
  2024. p16.CanCollide = false
  2025. p16.Locked = true
  2026. p16.BottomSurface = Enum.SurfaceType.Smooth
  2027. p16.TopSurface = Enum.SurfaceType.Smooth
  2028. p17 = Instance.new("Part", m)
  2029. p17.BrickColor = BrickColor.new("Institutional white")
  2030. p17.Material = Enum.Material.Neon
  2031. p17.FormFactor = Enum.FormFactor.Custom
  2032. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  2033. p17.CFrame = CFrame.new(68.8972092, 7.71862125, -14.2674294, -0.70732069, -0.707330942, -1.25169754e-006, 0.707094371, -0.707072854, 2.48849392e-006, 3.42912972e-006, -4.32133675e-007, 1.00026357)
  2034. p17.CanCollide = false
  2035. p17.Locked = true
  2036. p17.BottomSurface = Enum.SurfaceType.Smooth
  2037. p17.TopSurface = Enum.SurfaceType.Smooth
  2038. p18 = Instance.new("Part", m)
  2039. p18.BrickColor = BrickColor.new("Really black")
  2040. p18.Material = Enum.Material.Neon
  2041. p18.FormFactor = Enum.FormFactor.Custom
  2042. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2043. p18.CFrame = CFrame.new(68.6320877, 8.89929676, -14.2675419, 1.000319, 7.09295273e-006, -1.29642399e-006, -1.53779984e-005, 0.999966145, 2.53321537e-006, -2.20864695e-006, 2.76013293e-006, 1.00027096)
  2044. p18.CanCollide = false
  2045. p18.Locked = true
  2046. p18.BottomSurface = Enum.SurfaceType.Smooth
  2047. p18.TopSurface = Enum.SurfaceType.Smooth
  2048. b12 = Instance.new("SpecialMesh", p18)
  2049. b12.MeshType = Enum.MeshType.Sphere
  2050. b12.Name = "Mesh"
  2051. p19 = Instance.new("Part", m)
  2052. p19.BrickColor = BrickColor.new("Really black")
  2053. p19.Material = Enum.Material.Neon
  2054. p19.FormFactor = Enum.FormFactor.Custom
  2055. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2056. p19.CFrame = CFrame.new(68.6320801, 7.49934578, -14.2675457, 1.00032365, 7.02587113e-006, -1.41567671e-006, -1.53780693e-005, 0.999965429, 2.48852461e-006, -2.20865695e-006, 2.76013111e-006, 1.00027466)
  2057. p19.CanCollide = false
  2058. p19.Locked = true
  2059. p19.BottomSurface = Enum.SurfaceType.Smooth
  2060. p19.TopSurface = Enum.SurfaceType.Smooth
  2061. b13 = Instance.new("SpecialMesh", p19)
  2062. b13.MeshType = Enum.MeshType.Sphere
  2063. b13.Name = "Mesh"
  2064. w1 = Instance.new("Weld", p1)
  2065. w1.Name = "Wedge_Weld"
  2066. w1.Part0 = p1
  2067. w1.C0 = CFrame.new(-13.7623348, 36.7341995, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.9372038e-008)
  2068. w1.Part1 = p2
  2069. w1.C1 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  2070. w2 = Instance.new("Weld", p2)
  2071. w2.Name = "Wedge_Weld"
  2072. w2.Part0 = p2
  2073. w2.C0 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  2074. w2.Part1 = p3
  2075. w2.C1 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  2076. w3 = Instance.new("Weld", p3)
  2077. w3.Name = "Wedge_Weld"
  2078. w3.Part0 = p3
  2079. w3.C0 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  2080. w3.Part1 = p4
  2081. w3.C1 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  2082. w4 = Instance.new("Weld", p4)
  2083. w4.Name = "Wedge_Weld"
  2084. w4.Part0 = p4
  2085. w4.C0 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  2086. w4.Part1 = p5
  2087. w4.C1 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  2088. w5 = Instance.new("Weld", p5)
  2089. w5.Name = "Wedge_Weld"
  2090. w5.Part0 = p5
  2091. w5.C0 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  2092. w5.Part1 = p6
  2093. w5.C1 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  2094. w6 = Instance.new("Weld", p6)
  2095. w6.Name = "Part_Weld"
  2096. w6.Part0 = p6
  2097. w6.C0 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  2098. w6.Part1 = p7
  2099. w6.C1 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  2100. w7 = Instance.new("Weld", p7)
  2101. w7.Name = "Part_Weld"
  2102. w7.Part0 = p7
  2103. w7.C0 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  2104. w7.Part1 = p8
  2105. w7.C1 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  2106. w8 = Instance.new("Weld", p8)
  2107. w8.Name = "Part_Weld"
  2108. w8.Part0 = p8
  2109. w8.C0 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  2110. w8.Part1 = p9
  2111. w8.C1 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  2112. w9 = Instance.new("Weld", p9)
  2113. w9.Name = "Part_Weld"
  2114. w9.Part0 = p9
  2115. w9.C0 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  2116. w9.Part1 = p10
  2117. w9.C1 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  2118. w10 = Instance.new("Weld", p10)
  2119. w10.Name = "Part_Weld"
  2120. w10.Part0 = p10
  2121. w10.C0 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  2122. w10.Part1 = p11
  2123. w10.C1 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  2124. w11 = Instance.new("Weld", p11)
  2125. w11.Name = "Part_Weld"
  2126. w11.Part0 = p11
  2127. w11.C0 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  2128. w11.Part1 = p12
  2129. w11.C1 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  2130. w12 = Instance.new("Weld", p12)
  2131. w12.Name = "Part_Weld"
  2132. w12.Part0 = p12
  2133. w12.C0 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  2134. w12.Part1 = p13
  2135. w12.C1 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2136. w13 = Instance.new("Weld", p13)
  2137. w13.Name = "Part_Weld"
  2138. w13.Part0 = p13
  2139. w13.C0 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2140. w13.Part1 = p14
  2141. w13.C1 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2142. w14 = Instance.new("Weld", p14)
  2143. w14.Name = "Part_Weld"
  2144. w14.Part0 = p14
  2145. w14.C0 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2146. w14.Part1 = p15
  2147. w14.C1 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2148. w15 = Instance.new("Weld", p15)
  2149. w15.Name = "Part_Weld"
  2150. w15.Part0 = p15
  2151. w15.C0 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2152. w15.Part1 = p16
  2153. w15.C1 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  2154. w16 = Instance.new("Weld", p16)
  2155. w16.Name = "Part_Weld"
  2156. w16.Part0 = p16
  2157. w16.C0 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  2158. w16.Part1 = p17
  2159. w16.C1 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2160. w17 = Instance.new("Weld", p17)
  2161. w17.Name = "Part_Weld"
  2162. w17.Part0 = p17
  2163. w17.C0 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2164. w17.Part1 = p18
  2165. w17.C1 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  2166. w18 = Instance.new("Weld", p18)
  2167. w18.Name = "Part_Weld"
  2168. w18.Part0 = p18
  2169. w18.C0 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  2170. w18.Part1 = p19
  2171. w18.C1 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2172. w19 = Instance.new("Weld", p19)
  2173. w19.Name = "Wedge_Weld"
  2174. w19.Part0 = p19
  2175. w19.C0 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2176. m.Parent = rarm
  2177. m:MakeJoints()
  2178. ----------------------------------------------------
  2179. local cor4 = Instance.new("Part", rarm.RightArm)
  2180. cor4.Name = "Thingy"
  2181. cor4.Locked = true
  2182. cor4.BottomSurface = 0
  2183. cor4.CanCollide = false
  2184. cor4.Size = Vector3.new(2, 1, 1)
  2185. cor4.Transparency = 1
  2186. cor4.TopSurface = 0
  2187. corw2 = Instance.new("Weld", cor4)
  2188. corw2.Part0 = rarm
  2189. corw2.Part1 = cor4
  2190. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2191. corw2.C1 = CFrame.new(0, 0, 0)
  2192. weld2 = Instance.new("Weld", rarm.RightArm)
  2193. weld2.Part0 = cor4
  2194. weld2.Part1 = p14
  2195. weld2.C0 = CFrame.new(0, 0, 0)
  2196. ----------------------------------------------------
  2197. local m = Instance.new("Model")
  2198. m.Name = "Torso"
  2199. p1 = Instance.new("Part", m)
  2200. p1.BrickColor = BrickColor.new("Really black")
  2201. p1.Material = Enum.Material.Neon
  2202. p1.FormFactor = Enum.FormFactor.Custom
  2203. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2204. p1.CFrame = CFrame.new(67.3119202, 9.5997963, -14.263937, 1.00006402, 1.86259939e-007, 2.23464554e-008, -1.44914884e-006, 0.999991, -1.49014099e-008, -1.51248571e-006, 5.96053269e-008, 1.00005186)
  2205. p1.CanCollide = false
  2206. p1.Locked = true
  2207. p1.BottomSurface = Enum.SurfaceType.Smooth
  2208. p1.TopSurface = Enum.SurfaceType.Smooth
  2209. b1 = Instance.new("SpecialMesh", p1)
  2210. b1.MeshType = Enum.MeshType.Sphere
  2211. b1.Name = "Mesh"
  2212. p2 = Instance.new("Part", m)
  2213. p2.BrickColor = BrickColor.new("Really black")
  2214. p2.Material = Enum.Material.Neon
  2215. p2.FormFactor = Enum.FormFactor.Custom
  2216. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2217. p2.CFrame = CFrame.new(65.0111618, 9.59981537, -14.2638226, 1.00005496, 2.75671482e-007, 1.2665987e-007, -1.35973096e-006, 0.999992192, -2.98023224e-008, -1.40815973e-006, 4.47034836e-008, 1.00004447)
  2218. p2.CanCollide = false
  2219. p2.Locked = true
  2220. p2.BottomSurface = Enum.SurfaceType.Smooth
  2221. p2.TopSurface = Enum.SurfaceType.Smooth
  2222. b2 = Instance.new("SpecialMesh", p2)
  2223. b2.MeshType = Enum.MeshType.Sphere
  2224. b2.Name = "Mesh"
  2225. p3 = Instance.new("Part", m)
  2226. p3.BrickColor = BrickColor.new("Institutional white")
  2227. p3.Material = Enum.Material.Neon
  2228. p3.FormFactor = Enum.FormFactor.Custom
  2229. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2230. p3.CFrame = CFrame.new(67.6028595, 9.39744663, -14.2168236, 0.491504252, -0.868347466, -0.0669902489, 0.834227681, 0.491479307, -0.249998316, 0.250008702, 0.0669909269, 0.965961695)
  2231. p3.CanCollide = false
  2232. p3.Locked = true
  2233. p3.BottomSurface = Enum.SurfaceType.Smooth
  2234. p3.TopSurface = Enum.SurfaceType.Smooth
  2235. p4 = Instance.new("Part", m)
  2236. p4.BrickColor = BrickColor.new("Institutional white")
  2237. p4.Material = Enum.Material.Neon
  2238. p4.FormFactor = Enum.FormFactor.Custom
  2239. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2240. p4.CFrame = CFrame.new(64.6849442, 9.10655022, -14.2635975, 0.866056859, 0.500018656, 3.35280106e-007, -0.49999845, 0.866020203, -2.98035943e-008, -1.06866298e-006, -5.48167122e-007, 1.00002968)
  2241. p4.CanCollide = false
  2242. p4.Locked = true
  2243. p4.BottomSurface = Enum.SurfaceType.Smooth
  2244. p4.TopSurface = Enum.SurfaceType.Smooth
  2245. p5 = Instance.new("Part", m)
  2246. p5.BrickColor = BrickColor.new("Institutional white")
  2247. p5.Material = Enum.Material.Neon
  2248. p5.FormFactor = Enum.FormFactor.Custom
  2249. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2250. p5.CFrame = CFrame.new(66.9344177, 8.96636868, -14.2634897, -0.866048932, -0.500014246, 4.3958832e-007, 0.499999046, -0.866021395, -4.47044108e-008, 9.70867745e-007, 5.08911796e-007, 1.00002229)
  2251. p5.CanCollide = false
  2252. p5.Locked = true
  2253. p5.BottomSurface = Enum.SurfaceType.Smooth
  2254. p5.TopSurface = Enum.SurfaceType.Smooth
  2255. p6 = Instance.new("Part", m)
  2256. p6.BrickColor = BrickColor.new("Institutional white")
  2257. p6.Material = Enum.Material.Neon
  2258. p6.FormFactor = Enum.FormFactor.Custom
  2259. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2260. p6.CFrame = CFrame.new(65.358757, 9.04366112, -14.2633762, -0.866041601, 0.500008702, 5.43894771e-007, -0.499997824, -0.8660236, -5.96051208e-008, 8.43271948e-007, -5.21275751e-007, 1.0000149)
  2261. p6.CanCollide = false
  2262. p6.Locked = true
  2263. p6.BottomSurface = Enum.SurfaceType.Smooth
  2264. p6.TopSurface = Enum.SurfaceType.Smooth
  2265. p7 = Instance.new("Part", m)
  2266. p7.BrickColor = BrickColor.new("Really black")
  2267. p7.Material = Enum.Material.Neon
  2268. p7.FormFactor = Enum.FormFactor.Custom
  2269. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2270. p7.CFrame = CFrame.new(68.0082169, 9.19989014, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308121e-007, -8.7916851e-007, 5.96046519e-008, 1.00001121)
  2271. p7.CanCollide = false
  2272. p7.Locked = true
  2273. p7.BottomSurface = Enum.SurfaceType.Smooth
  2274. p7.TopSurface = Enum.SurfaceType.Smooth
  2275. b3 = Instance.new("SpecialMesh", p7)
  2276. b3.MeshType = Enum.MeshType.Sphere
  2277. b3.Name = "Mesh"
  2278. p8 = Instance.new("Part", m)
  2279. p8.BrickColor = BrickColor.new("Really black")
  2280. p8.Material = Enum.Material.Neon
  2281. p8.FormFactor = Enum.FormFactor.Custom
  2282. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2283. p8.CFrame = CFrame.new(64.4081497, 8.59989357, -14.2632627, 1.00001383, 5.32715489e-007, 5.6624458e-007, -8.4191629e-007, 0.999997973, -2.980277e-008, -9.08971174e-007, -1.4901623e-008, 1.00001121)
  2284. p8.CanCollide = false
  2285. p8.Locked = true
  2286. p8.BottomSurface = Enum.SurfaceType.Smooth
  2287. p8.TopSurface = Enum.SurfaceType.Smooth
  2288. b4 = Instance.new("SpecialMesh", p8)
  2289. b4.MeshType = Enum.MeshType.Sphere
  2290. b4.Name = "Mesh"
  2291. p9 = Instance.new("Part", m)
  2292. p9.BrickColor = BrickColor.new("Really black")
  2293. p9.Material = Enum.Material.Neon
  2294. p9.FormFactor = Enum.FormFactor.Custom
  2295. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2296. p9.CFrame = CFrame.new(67.8082123, 8.49989128, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308128e-007, -8.7916851e-007, 5.96046448e-008, 1.00001121)
  2297. p9.CanCollide = false
  2298. p9.Locked = true
  2299. p9.BottomSurface = Enum.SurfaceType.Smooth
  2300. p9.TopSurface = Enum.SurfaceType.Smooth
  2301. b5 = Instance.new("SpecialMesh", p9)
  2302. b5.MeshType = Enum.MeshType.Sphere
  2303. b5.Name = "Mesh"
  2304. p10 = Instance.new("Part", m)
  2305. p10.BrickColor = BrickColor.new("Institutional white")
  2306. p10.Material = Enum.Material.Neon
  2307. p10.FormFactor = Enum.FormFactor.Custom
  2308. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2309. p10.CFrame = CFrame.new(67.3000946, 8.34052181, -14.1962805, -0.323144197, -0.934642911, 0.148454338, 0.912730813, -0.349243045, -0.212012067, 0.250002205, 0.0669885725, 0.965932906)
  2310. p10.CanCollide = false
  2311. p10.Locked = true
  2312. p10.BottomSurface = Enum.SurfaceType.Smooth
  2313. p10.TopSurface = Enum.SurfaceType.Smooth
  2314. p11 = Instance.new("Part", m)
  2315. p11.BrickColor = BrickColor.new("Really black")
  2316. p11.Material = Enum.Material.Metal
  2317. p11.Name = "Main"
  2318. p11.FormFactor = Enum.FormFactor.Custom
  2319. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2320. p11.CFrame = CFrame.new(66.1075974, 8.19991207, -13.1631384, 1, 7.67355459e-007, 7.5990539e-007, -7.67355459e-007, 1, -2.98022478e-008, -7.5990539e-007, 2.98016651e-008, 1)
  2321. p11.CanCollide = false
  2322. p11.Locked = true
  2323. p11.BottomSurface = Enum.SurfaceType.Smooth
  2324. p11.TopSurface = Enum.SurfaceType.Smooth
  2325. p12 = Instance.new("Part", m)
  2326. p12.BrickColor = BrickColor.new("Really black")
  2327. p12.Material = Enum.Material.Neon
  2328. p12.FormFactor = Enum.FormFactor.Custom
  2329. p12.Size = Vector3.new(3, 3, 2)
  2330. p12.CFrame = CFrame.new(66.1075974, 8.19991302, -13.5631437, 1.00000453, 6.48145658e-007, 6.55599706e-007, -7.97160624e-007, 0.999999344, -1.49012251e-008, -7.5990863e-007, 2.98017362e-008, 1.0000037)
  2331. p12.CanCollide = false
  2332. p12.Locked = true
  2333. p12.BottomSurface = Enum.SurfaceType.Smooth
  2334. p12.TopSurface = Enum.SurfaceType.Smooth
  2335. b6 = Instance.new("SpecialMesh", p12)
  2336. b6.MeshType = Enum.MeshType.Sphere
  2337. b6.Name = "Mesh"
  2338. p13 = Instance.new("Part", m)
  2339. p13.BrickColor = BrickColor.new("Institutional white")
  2340. p13.Material = Enum.Material.Neon
  2341. p13.FormFactor = Enum.FormFactor.Custom
  2342. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2343. p13.CFrame = CFrame.new(66.1331863, 7.82621098, -12.0632286, 6.04434092e-007, -1.00000906, 6.55602378e-007, 0.999998689, 8.72662156e-007, -1.49012802e-008, 4.47028583e-008, 8.64220965e-007, 1.00000739)
  2344. p13.CanCollide = false
  2345. p13.Locked = true
  2346. p13.BottomSurface = Enum.SurfaceType.Smooth
  2347. p13.TopSurface = Enum.SurfaceType.Smooth
  2348. p14 = Instance.new("Part", m)
  2349. p14.BrickColor = BrickColor.new("Institutional white")
  2350. p14.Material = Enum.Material.Neon
  2351. p14.FormFactor = Enum.FormFactor.Custom
  2352. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2353. p14.CFrame = CFrame.new(65.0837555, 8.11279583, -12.0633221, 0.866040885, 0.500009477, 5.5129766e-007, -0.499999583, 0.866022587, -2.09610107e-013, -8.68580742e-007, -4.3265041e-007, 1.00001478)
  2354. p14.CanCollide = false
  2355. p14.Locked = true
  2356. p14.BottomSurface = Enum.SurfaceType.Smooth
  2357. p14.TopSurface = Enum.SurfaceType.Smooth
  2358. p15 = Instance.new("Part", m)
  2359. p15.BrickColor = BrickColor.new("Institutional white")
  2360. p15.Material = Enum.Material.Neon
  2361. p15.FormFactor = Enum.FormFactor.Custom
  2362. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2363. p15.CFrame = CFrame.new(67.0844116, 8.11277008, -12.0634222, 0.866049111, -0.500013351, 4.46991237e-007, 0.49999693, 0.866022587, 1.49009658e-008, -8.91868751e-007, 6.00952262e-007, 1.00002217)
  2364. p15.CanCollide = false
  2365. p15.Locked = true
  2366. p15.BottomSurface = Enum.SurfaceType.Smooth
  2367. p15.TopSurface = Enum.SurfaceType.Smooth
  2368. p16 = Instance.new("Part", m)
  2369. p16.BrickColor = BrickColor.new("Institutional white")
  2370. p16.Material = Enum.Material.Neon
  2371. p16.FormFactor = Enum.FormFactor.Custom
  2372. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2373. p16.CFrame = CFrame.new(65.484314, 7.30655766, -14.2634888, 0.906336308, 0.422632158, 3.49386681e-007, -0.422617853, 0.906302929, 2.46360354e-008, -1.01209048e-006, -3.84037776e-007, 1.00002587)
  2374. p16.CanCollide = false
  2375. p16.Locked = true
  2376. p16.BottomSurface = Enum.SurfaceType.Smooth
  2377. p16.TopSurface = Enum.SurfaceType.Smooth
  2378. p17 = Instance.new("Part", m)
  2379. p17.BrickColor = BrickColor.new("Institutional white")
  2380. p17.Material = Enum.Material.Neon
  2381. p17.FormFactor = Enum.FormFactor.Custom
  2382. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2383. p17.CFrame = CFrame.new(67.1100159, 7.10342312, -14.2635927, 0.866056919, -0.50001812, 3.65035532e-007, 0.499996245, 0.866021872, 5.96044032e-008, -8.79435504e-007, 6.97014912e-007, 1.00002956)
  2384. p17.CanCollide = false
  2385. p17.Locked = true
  2386. p17.BottomSurface = Enum.SurfaceType.Smooth
  2387. p17.TopSurface = Enum.SurfaceType.Smooth
  2388. p18 = Instance.new("Part", m)
  2389. p18.BrickColor = BrickColor.new("Institutional white")
  2390. p18.Material = Enum.Material.Neon
  2391. p18.FormFactor = Enum.FormFactor.Custom
  2392. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2393. p18.CFrame = CFrame.new(65.6104889, 7.05342484, -14.2637053, -0.707138717, -0.707138956, 3.36865924e-007, 0.707104087, -0.707101464, 1.4901164e-007, 9.95719802e-007, 5.95316749e-007, 1.00003707)
  2394. p18.CanCollide = false
  2395. p18.Locked = true
  2396. p18.BottomSurface = Enum.SurfaceType.Smooth
  2397. p18.TopSurface = Enum.SurfaceType.Smooth
  2398. p19 = Instance.new("Part", m)
  2399. p19.BrickColor = BrickColor.new("Really black")
  2400. p19.Material = Enum.Material.Neon
  2401. p19.FormFactor = Enum.FormFactor.Custom
  2402. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2403. p19.CFrame = CFrame.new(65.2110596, 6.69982004, -14.2638168, 1.00005388, -1.78813906e-007, 3.08695888e-007, -1.7285347e-006, 0.999993682, 2.38419489e-007, -1.15321473e-006, 3.72538381e-007, 1.0000447)
  2404. p19.CanCollide = false
  2405. p19.Locked = true
  2406. p19.BottomSurface = Enum.SurfaceType.Smooth
  2407. p19.TopSurface = Enum.SurfaceType.Smooth
  2408. b7 = Instance.new("SpecialMesh", p19)
  2409. b7.MeshType = Enum.MeshType.Sphere
  2410. b7.Name = "Mesh"
  2411. p20 = Instance.new("Part", m)
  2412. p20.BrickColor = BrickColor.new("Really black")
  2413. p20.Material = Enum.Material.Neon
  2414. p20.FormFactor = Enum.FormFactor.Custom
  2415. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2416. p20.CFrame = CFrame.new(66.7116928, 6.49980783, -14.2639294, 1.00006235, -2.98028993e-007, 2.80525398e-007, -1.8477574e-006, 0.999992907, 3.27827962e-007, -1.18139712e-006, 4.61949412e-007, 1.00005233)
  2417. p20.CanCollide = false
  2418. p20.Locked = true
  2419. p20.BottomSurface = Enum.SurfaceType.Smooth
  2420. p20.TopSurface = Enum.SurfaceType.Smooth
  2421. b8 = Instance.new("SpecialMesh", p20)
  2422. b8.MeshType = Enum.MeshType.Sphere
  2423. b8.Name = "Mesh"
  2424. p21 = Instance.new("Part", m)
  2425. p21.BrickColor = BrickColor.new("Institutional white")
  2426. p21.Material = Enum.Material.Neon
  2427. p21.FormFactor = Enum.FormFactor.Custom
  2428. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2429. p21.CFrame = CFrame.new(67.0623169, 6.40337944, -14.264039, 0.258836836, -0.965994418, 2.52354425e-007, 0.965917706, 0.258818805, 4.17237061e-007, 2.19511691e-007, 1.31106742e-006, 1.00005996)
  2430. p21.CanCollide = false
  2431. p21.Locked = true
  2432. p21.BottomSurface = Enum.SurfaceType.Smooth
  2433. p21.TopSurface = Enum.SurfaceType.Smooth
  2434. p22 = Instance.new("Part", m)
  2435. p22.BrickColor = BrickColor.new("Really black")
  2436. p22.Material = Enum.Material.Neon
  2437. p22.FormFactor = Enum.FormFactor.Custom
  2438. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2439. p22.CFrame = CFrame.new(67.5129166, 6.29977846, -14.2641516, 1.00007939, -5.96046448e-007, 2.24182997e-007, -2.14576721e-006, 0.999991298, 5.06646757e-007, -1.23776351e-006, 6.40773351e-007, 1.00006759)
  2440. p22.CanCollide = false
  2441. p22.Locked = true
  2442. p22.BottomSurface = Enum.SurfaceType.Smooth
  2443. p22.TopSurface = Enum.SurfaceType.Smooth
  2444. b9 = Instance.new("SpecialMesh", p22)
  2445. b9.MeshType = Enum.MeshType.Sphere
  2446. b9.Name = "Mesh"
  2447. w1 = Instance.new("Weld", p1)
  2448. w1.Name = "Part_Weld"
  2449. w1.Part0 = p1
  2450. w1.C0 = CFrame.new(-67.3029404, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2451. w1.Part1 = p2
  2452. w1.C1 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2453. w2 = Instance.new("Weld", p2)
  2454. w2.Name = "Part_Weld"
  2455. w2.Part0 = p2
  2456. w2.C0 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2457. w2.Part1 = p3
  2458. w2.C1 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2459. w3 = Instance.new("Weld", p3)
  2460. w3.Name = "Part_Weld"
  2461. w3.Part0 = p3
  2462. w3.C0 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2463. w3.Part1 = p4
  2464. w3.C1 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2465. w4 = Instance.new("Weld", p4)
  2466. w4.Name = "Part_Weld"
  2467. w4.Part0 = p4
  2468. w4.C0 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2469. w4.Part1 = p5
  2470. w4.C1 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2471. w5 = Instance.new("Weld", p5)
  2472. w5.Name = "Part_Weld"
  2473. w5.Part0 = p5
  2474. w5.C0 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2475. w5.Part1 = p6
  2476. w5.C1 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2477. w6 = Instance.new("Weld", p6)
  2478. w6.Name = "Part_Weld"
  2479. w6.Part0 = p6
  2480. w6.C0 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2481. w6.Part1 = p7
  2482. w6.C1 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2483. w7 = Instance.new("Weld", p7)
  2484. w7.Name = "Part_Weld"
  2485. w7.Part0 = p7
  2486. w7.C0 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2487. w7.Part1 = p8
  2488. w7.C1 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2489. w8 = Instance.new("Weld", p8)
  2490. w8.Name = "Part_Weld"
  2491. w8.Part0 = p8
  2492. w8.C0 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2493. w8.Part1 = p9
  2494. w8.C1 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2495. w9 = Instance.new("Weld", p9)
  2496. w9.Name = "Part_Weld"
  2497. w9.Part0 = p9
  2498. w9.C0 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2499. w9.Part1 = p10
  2500. w9.C1 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2501. w10 = Instance.new("Weld", p10)
  2502. w10.Name = "Main_Weld"
  2503. w10.Part0 = p10
  2504. w10.C0 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2505. w10.Part1 = p11
  2506. w10.C1 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2507. w11 = Instance.new("Weld", p11)
  2508. w11.Name = "Part_Weld"
  2509. w11.Part0 = p11
  2510. w11.C0 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2511. w11.Part1 = p12
  2512. w11.C1 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2513. w12 = Instance.new("Weld", p12)
  2514. w12.Name = "Part_Weld"
  2515. w12.Part0 = p12
  2516. w12.C0 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2517. w12.Part1 = p13
  2518. w12.C1 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2519. w13 = Instance.new("Weld", p13)
  2520. w13.Name = "Part_Weld"
  2521. w13.Part0 = p13
  2522. w13.C0 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2523. w13.Part1 = p14
  2524. w13.C1 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2525. w14 = Instance.new("Weld", p14)
  2526. w14.Name = "Part_Weld"
  2527. w14.Part0 = p14
  2528. w14.C0 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2529. w14.Part1 = p15
  2530. w14.C1 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2531. w15 = Instance.new("Weld", p15)
  2532. w15.Name = "Part_Weld"
  2533. w15.Part0 = p15
  2534. w15.C0 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2535. w15.Part1 = p16
  2536. w15.C1 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2537. w16 = Instance.new("Weld", p16)
  2538. w16.Name = "Part_Weld"
  2539. w16.Part0 = p16
  2540. w16.C0 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2541. w16.Part1 = p17
  2542. w16.C1 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2543. w17 = Instance.new("Weld", p17)
  2544. w17.Name = "Part_Weld"
  2545. w17.Part0 = p17
  2546. w17.C0 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2547. w17.Part1 = p18
  2548. w17.C1 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2549. w18 = Instance.new("Weld", p18)
  2550. w18.Name = "Part_Weld"
  2551. w18.Part0 = p18
  2552. w18.C0 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2553. w18.Part1 = p19
  2554. w18.C1 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2555. w19 = Instance.new("Weld", p19)
  2556. w19.Name = "Part_Weld"
  2557. w19.Part0 = p19
  2558. w19.C0 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2559. w19.Part1 = p20
  2560. w19.C1 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2561. w20 = Instance.new("Weld", p20)
  2562. w20.Name = "Part_Weld"
  2563. w20.Part0 = p20
  2564. w20.C0 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2565. w20.Part1 = p21
  2566. w20.C1 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2567. w21 = Instance.new("Weld", p21)
  2568. w21.Name = "Part_Weld"
  2569. w21.Part0 = p21
  2570. w21.C0 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2571. w21.Part1 = p22
  2572. w21.C1 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2573. w22 = Instance.new("Weld", p22)
  2574. w22.Name = "Wedge_Weld"
  2575. w22.Part0 = p22
  2576. w22.C0 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2577. m.Parent = torso
  2578. m:MakeJoints()
  2579. ----------------------------------------------------
  2580. local cor5 = Instance.new("Part", torso.Torso)
  2581. cor5.Name = "Thingy"
  2582. cor5.Locked = true
  2583. cor5.BottomSurface = 0
  2584. cor5.CanCollide = false
  2585. cor5.Size = Vector3.new(2, 1, 1)
  2586. cor5.Transparency = 1
  2587. cor5.TopSurface = 0
  2588. corw2 = Instance.new("Weld", cor5)
  2589. corw2.Part0 = torso
  2590. corw2.Part1 = cor5
  2591. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2592. corw2.C1 = CFrame.new(0, 0, 0)
  2593. weld2 = Instance.new("Weld", torso.Torso)
  2594. weld2.Part0 = cor5
  2595. weld2.Part1 = p11
  2596. weld2.C0 = CFrame.new(0, 0, 0)
  2597. ----------------------------------------------------
  2598. local m = Instance.new("Model")
  2599. m.Name = "RightLeg"
  2600. p1 = Instance.new("Part", m)
  2601. p1.BrickColor = BrickColor.new("Really black")
  2602. p1.Material = Enum.Material.Neon
  2603. p1.FormFactor = Enum.FormFactor.Custom
  2604. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2605. p1.CFrame = CFrame.new(67.2429962, 5.49923229, -14.269578, 1.00045943, -5.51538596e-006, -2.14306033e-006, -7.25689733e-006, 0.999951601, 3.93318305e-006, -2.55180248e-006, 4.05587616e-006, 1.00038624)
  2606. p1.CanCollide = false
  2607. p1.Locked = true
  2608. p1.BottomSurface = Enum.SurfaceType.Smooth
  2609. p1.TopSurface = Enum.SurfaceType.Smooth
  2610. b1 = Instance.new("SpecialMesh", p1)
  2611. b1.MeshType = Enum.MeshType.Sphere
  2612. b1.Name = "Mesh"
  2613. p2 = Instance.new("Part", m)
  2614. p2.BrickColor = BrickColor.new("Really black")
  2615. p2.Material = Enum.Material.Neon
  2616. p2.FormFactor = Enum.FormFactor.Custom
  2617. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2618. p2.CFrame = CFrame.new(67.6437836, 4.79925013, -14.2696915, 1.00046372, -5.51538369e-006, -2.14306829e-006, -7.37613163e-006, 0.999951243, 3.93319806e-006, -2.57999613e-006, 4.14531632e-006, 1.00039005)
  2619. p2.CanCollide = false
  2620. p2.Locked = true
  2621. p2.BottomSurface = Enum.SurfaceType.Smooth
  2622. p2.TopSurface = Enum.SurfaceType.Smooth
  2623. b2 = Instance.new("SpecialMesh", p2)
  2624. b2.MeshType = Enum.MeshType.Sphere
  2625. b2.Name = "Mesh"
  2626. p3 = Instance.new("Part", m)
  2627. p3.BrickColor = BrickColor.new("Institutional white")
  2628. p3.Material = Enum.Material.Neon
  2629. p3.FormFactor = Enum.FormFactor.Custom
  2630. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2631. p3.CFrame = CFrame.new(66.8881302, 5.17327356, -14.2696877, -0.707441688, -0.707433701, -2.14858301e-006, 0.707077265, -0.707066894, 4.0476084e-006, 4.7538756e-006, -1.07312485e-006, 1.00039387)
  2632. p3.CanCollide = false
  2633. p3.Locked = true
  2634. p3.BottomSurface = Enum.SurfaceType.Smooth
  2635. p3.TopSurface = Enum.SurfaceType.Smooth
  2636. p4 = Instance.new("Part", m)
  2637. p4.BrickColor = BrickColor.new("Really black")
  2638. p4.Material = Enum.Material.Neon
  2639. p4.FormFactor = Enum.FormFactor.Custom
  2640. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2641. p4.CFrame = CFrame.new(66.5432739, 4.7992568, -14.2696896, 1.00046802, -5.54323196e-006, -2.17126149e-006, -7.42077827e-006, 0.999950886, 4.02261594e-006, -2.58000705e-006, 4.14531496e-006, 1.00039387)
  2642. p4.CanCollide = false
  2643. p4.Locked = true
  2644. p4.BottomSurface = Enum.SurfaceType.Smooth
  2645. p4.TopSurface = Enum.SurfaceType.Smooth
  2646. b3 = Instance.new("SpecialMesh", p4)
  2647. b3.MeshType = Enum.MeshType.Sphere
  2648. b3.Name = "Mesh"
  2649. p5 = Instance.new("Part", m)
  2650. p5.BrickColor = BrickColor.new("Institutional white")
  2651. p5.Material = Enum.Material.Neon
  2652. p5.FormFactor = Enum.FormFactor.Custom
  2653. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2654. p5.CFrame = CFrame.new(67.8495178, 4.41932487, -14.269804, -0.906733274, 0.422823101, -2.17126944e-006, -0.422590762, -0.906265974, 4.0226314e-006, 5.74146384e-007, -4.94026517e-006, 1.00039768)
  2655. p5.CanCollide = false
  2656. p5.Locked = true
  2657. p5.BottomSurface = Enum.SurfaceType.Smooth
  2658. p5.TopSurface = Enum.SurfaceType.Smooth
  2659. p6 = Instance.new("Part", m)
  2660. p6.BrickColor = BrickColor.new("Institutional white")
  2661. p6.Material = Enum.Material.Neon
  2662. p6.FormFactor = Enum.FormFactor.Custom
  2663. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2664. p6.CFrame = CFrame.new(66.5438004, 4.21363878, -14.2698011, 1.00047636, -7.68899918e-006, -2.17678416e-006, -5.51342964e-006, 0.999950111, 4.13704174e-006, -2.63088032e-006, 4.20975539e-006, 1.0004015)
  2665. p6.CanCollide = false
  2666. p6.Locked = true
  2667. p6.BottomSurface = Enum.SurfaceType.Smooth
  2668. p6.TopSurface = Enum.SurfaceType.Smooth
  2669. p7 = Instance.new("Part", m)
  2670. p7.BrickColor = BrickColor.new("Really black")
  2671. p7.Material = Enum.Material.Metal
  2672. p7.Name = "Main"
  2673. p7.FormFactor = Enum.FormFactor.Custom
  2674. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2675. p7.CFrame = CFrame.new(67.2447891, 3.99926972, -13.1694622, 1.00048089, -5.69129634e-006, -2.186149e-006, -7.65911773e-006, 0.999949753, 4.1418657e-006, -2.63640663e-006, 4.32419529e-006, 1.00040531)
  2676. p7.CanCollide = false
  2677. p7.Locked = true
  2678. p7.BottomSurface = Enum.SurfaceType.Smooth
  2679. p7.TopSurface = Enum.SurfaceType.Smooth
  2680. p8 = Instance.new("Part", m)
  2681. p8.BrickColor = BrickColor.new("Institutional white")
  2682. p8.Material = Enum.Material.Neon
  2683. p8.FormFactor = Enum.FormFactor.Custom
  2684. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2685. p8.CFrame = CFrame.new(67.1560593, 4.19274044, -14.2700233, -0.766423643, -0.643097878, -2.21435107e-006, 0.642760634, -0.766000509, 4.23129995e-006, 4.88720252e-006, -1.69966381e-006, 1.00041294)
  2686. p8.CanCollide = false
  2687. p8.Locked = true
  2688. p8.BottomSurface = Enum.SurfaceType.Smooth
  2689. p8.TopSurface = Enum.SurfaceType.Smooth
  2690. p9 = Instance.new("WedgePart", m)
  2691. p9.BrickColor = BrickColor.new("Institutional white")
  2692. p9.Material = Enum.Material.Neon
  2693. p9.Name = "Wedge"
  2694. p9.FormFactor = Enum.FormFactor.Custom
  2695. p9.Size = Vector3.new(1, 1.19999981, 4)
  2696. p9.CFrame = CFrame.new(67.3460693, 3.49928832, -10.7686377, -1.00049889, -4.27957411e-006, 4.5400966e-006, 8.07642937e-006, 0.906259179, -0.422600418, 2.61850914e-006, -0.422791958, -0.906690836)
  2697. p9.CanCollide = false
  2698. p9.Locked = true
  2699. p9.TopSurface = Enum.SurfaceType.Smooth
  2700. b4 = Instance.new("SpecialMesh", p9)
  2701. b4.MeshType = Enum.MeshType.Wedge
  2702. b4.Name = "Mesh"
  2703. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2704. p10 = Instance.new("Part", m)
  2705. p10.BrickColor = BrickColor.new("Really black")
  2706. p10.Material = Enum.Material.Neon
  2707. p10.FormFactor = Enum.FormFactor.Custom
  2708. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2709. p10.CFrame = CFrame.new(68.0469971, 3.99923301, -14.2702446, 1.00050783, -6.09550762e-006, -2.27330474e-006, -8.07715332e-006, 0.999947786, 4.38094139e-006, -2.69438578e-006, 4.64916229e-006, 1.0004282)
  2710. p10.CanCollide = false
  2711. p10.Locked = true
  2712. p10.BottomSurface = Enum.SurfaceType.Smooth
  2713. p10.TopSurface = Enum.SurfaceType.Smooth
  2714. b5 = Instance.new("SpecialMesh", p10)
  2715. b5.MeshType = Enum.MeshType.Sphere
  2716. b5.Name = "Mesh"
  2717. p11 = Instance.new("Part", m)
  2718. p11.BrickColor = BrickColor.new("Really black")
  2719. p11.Material = Enum.Material.Neon
  2720. p11.FormFactor = Enum.FormFactor.Custom
  2721. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2722. p11.CFrame = CFrame.new(66.5467682, 3.59925723, -14.2703533, 1.00051641, -6.21477238e-006, -2.30150818e-006, -8.22622587e-006, 0.999947011, 4.47037792e-006, -2.72259308e-006, 4.73860473e-006, 1.00043583)
  2723. p11.CanCollide = false
  2724. p11.Locked = true
  2725. p11.BottomSurface = Enum.SurfaceType.Smooth
  2726. p11.TopSurface = Enum.SurfaceType.Smooth
  2727. b6 = Instance.new("SpecialMesh", p11)
  2728. b6.MeshType = Enum.MeshType.Sphere
  2729. b6.Name = "Mesh"
  2730. p12 = Instance.new("Part", m)
  2731. p12.BrickColor = BrickColor.new("Institutional white")
  2732. p12.Material = Enum.Material.Neon
  2733. p12.FormFactor = Enum.FormFactor.Custom
  2734. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2735. p12.CFrame = CFrame.new(67.558609, 3.39274073, -14.2704687, -0.766450763, -0.643119991, -2.33134415e-006, 0.642759323, -0.765998006, 4.5598149e-006, 5.20550884e-006, -1.92419975e-006, 1.00044346)
  2736. p12.CanCollide = false
  2737. p12.Locked = true
  2738. p12.BottomSurface = Enum.SurfaceType.Smooth
  2739. p12.TopSurface = Enum.SurfaceType.Smooth
  2740. p13 = Instance.new("Part", m)
  2741. p13.BrickColor = BrickColor.new("Really black")
  2742. p13.Material = Enum.Material.Neon
  2743. p13.FormFactor = Enum.FormFactor.Custom
  2744. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2745. p13.CFrame = CFrame.new(67.0482101, 2.79927826, -14.2705812, 1.00053358, -6.43730164e-006, -2.36118058e-006, -8.5234642e-006, 0.999945402, 4.64126742e-006, -2.78064022e-006, 4.90151251e-006, 1.00045109)
  2746. p13.CanCollide = false
  2747. p13.Locked = true
  2748. p13.BottomSurface = Enum.SurfaceType.Smooth
  2749. p13.TopSurface = Enum.SurfaceType.Smooth
  2750. b7 = Instance.new("SpecialMesh", p13)
  2751. b7.MeshType = Enum.MeshType.Sphere
  2752. b7.Name = "Mesh"
  2753. p14 = Instance.new("WedgePart", m)
  2754. p14.BrickColor = BrickColor.new("Institutional white")
  2755. p14.Material = Enum.Material.Neon
  2756. p14.Name = "Wedge"
  2757. p14.FormFactor = Enum.FormFactor.Custom
  2758. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2759. p14.CFrame = CFrame.new(66.8462448, 2.3492887, -14.7586241, 1.00054216, -6.55656913e-006, -2.38459074e-006, -8.61293847e-006, 0.999944568, 4.66311894e-006, -2.81690609e-006, 5.04259924e-006, 1.00045872)
  2760. p14.CanCollide = false
  2761. p14.Locked = true
  2762. p14.TopSurface = Enum.SurfaceType.Smooth
  2763. b8 = Instance.new("SpecialMesh", p14)
  2764. b8.MeshType = Enum.MeshType.Wedge
  2765. b8.Name = "Mesh"
  2766. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2767. p15 = Instance.new("WedgePart", m)
  2768. p15.BrickColor = BrickColor.new("Institutional white")
  2769. p15.Material = Enum.Material.Neon
  2770. p15.Name = "Wedge"
  2771. p15.FormFactor = Enum.FormFactor.Custom
  2772. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2773. p15.CFrame = CFrame.new(68.0474777, 2.34926867, -14.7587423, 1.00055075, -6.67583618e-006, -2.41442808e-006, -8.73221416e-006, 0.999943614, 4.74457238e-006, -2.84674707e-006, 5.12405404e-006, 1.00046635)
  2774. p15.CanCollide = false
  2775. p15.Locked = true
  2776. p15.TopSurface = Enum.SurfaceType.Smooth
  2777. b9 = Instance.new("SpecialMesh", p15)
  2778. b9.MeshType = Enum.MeshType.Wedge
  2779. b9.Name = "Mesh"
  2780. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2781. p16 = Instance.new("WedgePart", m)
  2782. p16.BrickColor = BrickColor.new("Institutional white")
  2783. p16.Material = Enum.Material.Neon
  2784. p16.Name = "Wedge"
  2785. p16.FormFactor = Enum.FormFactor.Custom
  2786. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2787. p16.CFrame = CFrame.new(67.4477234, 2.34926438, -14.7588549, 1.00055933, -6.79510413e-006, -2.44426587e-006, -8.85149075e-006, 0.99994266, 4.82602672e-006, -2.8765885e-006, 5.20550975e-006, 1.00047398)
  2788. p16.CanCollide = false
  2789. p16.Locked = true
  2790. p16.TopSurface = Enum.SurfaceType.Smooth
  2791. b10 = Instance.new("SpecialMesh", p16)
  2792. b10.MeshType = Enum.MeshType.Wedge
  2793. b10.Name = "Mesh"
  2794. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2795. w1 = Instance.new("Weld", p1)
  2796. w1.Name = "Part_Weld"
  2797. w1.Part0 = p1
  2798. w1.C0 = CFrame.new(-67.2025909, -3.50003719, 14.2622871, 1, -8.94065977e-008, 5.79734944e-008, 8.94065977e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2799. w1.Part1 = p2
  2800. w1.C1 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2801. w2 = Instance.new("Weld", p2)
  2802. w2.Name = "Part_Weld"
  2803. w2.Part0 = p2
  2804. w2.C0 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2805. w2.Part1 = p3
  2806. w2.C1 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2807. w3 = Instance.new("Weld", p3)
  2808. w3.Name = "Part_Weld"
  2809. w3.Part0 = p3
  2810. w3.C0 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2811. w3.Part1 = p4
  2812. w3.C1 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2813. w4 = Instance.new("Weld", p4)
  2814. w4.Name = "Part_Weld"
  2815. w4.Part0 = p4
  2816. w4.C0 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2817. w4.Part1 = p5
  2818. w4.C1 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2819. w5 = Instance.new("Weld", p5)
  2820. w5.Name = "Part_Weld"
  2821. w5.Part0 = p5
  2822. w5.C0 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2823. w5.Part1 = p6
  2824. w5.C1 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2825. w6 = Instance.new("Weld", p6)
  2826. w6.Name = "Part_Weld"
  2827. w6.Part0 = p6
  2828. w6.C0 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2829. w6.Part1 = p7
  2830. w6.C1 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2831. w7 = Instance.new("Weld", p7)
  2832. w7.Name = "Part_Weld"
  2833. w7.Part0 = p7
  2834. w7.C0 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2835. w7.Part1 = p8
  2836. w7.C1 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2837. w8 = Instance.new("Weld", p8)
  2838. w8.Name = "Wedge_Weld"
  2839. w8.Part0 = p8
  2840. w8.C0 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2841. w8.Part1 = p9
  2842. w8.C1 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2843. w9 = Instance.new("Weld", p9)
  2844. w9.Name = "Part_Weld"
  2845. w9.Part0 = p9
  2846. w9.C0 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2847. w9.Part1 = p10
  2848. w9.C1 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2849. w10 = Instance.new("Weld", p10)
  2850. w10.Name = "Part_Weld"
  2851. w10.Part0 = p10
  2852. w10.C0 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2853. w10.Part1 = p11
  2854. w10.C1 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2855. w11 = Instance.new("Weld", p11)
  2856. w11.Name = "Part_Weld"
  2857. w11.Part0 = p11
  2858. w11.C0 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2859. w11.Part1 = p12
  2860. w11.C1 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2861. w12 = Instance.new("Weld", p12)
  2862. w12.Name = "Part_Weld"
  2863. w12.Part0 = p12
  2864. w12.C0 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2865. w12.Part1 = p13
  2866. w12.C1 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2867. w13 = Instance.new("Weld", p13)
  2868. w13.Name = "Wedge_Weld"
  2869. w13.Part0 = p13
  2870. w13.C0 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2871. w13.Part1 = p14
  2872. w13.C1 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2873. w14 = Instance.new("Weld", p14)
  2874. w14.Name = "Wedge_Weld"
  2875. w14.Part0 = p14
  2876. w14.C0 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2877. w14.Part1 = p15
  2878. w14.C1 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2879. w15 = Instance.new("Weld", p15)
  2880. w15.Name = "Wedge_Weld"
  2881. w15.Part0 = p15
  2882. w15.C0 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2883. w15.Part1 = p16
  2884. w15.C1 = CFrame.new(-67.4004517, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2885. m.Parent = rleg
  2886. m:MakeJoints()
  2887. ----------------------------------------------------
  2888. local cor6 = Instance.new("Part", rleg.RightLeg)
  2889. cor6.Name = "Thingy"
  2890. cor6.Locked = true
  2891. cor6.BottomSurface = 0
  2892. cor6.CanCollide = false
  2893. cor6.Size = Vector3.new(2, 1, 1)
  2894. cor6.Transparency = 1
  2895. cor6.TopSurface = 0
  2896. corw2 = Instance.new("Weld", cor6)
  2897. corw2.Part0 = rleg
  2898. corw2.Part1 = cor6
  2899. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2900. corw2.C1 = CFrame.new(0, 0, 0)
  2901. weld2 = Instance.new("Weld", rleg.RightLeg)
  2902. weld2.Part0 = cor6
  2903. weld2.Part1 = p7
  2904. weld2.C0 = CFrame.new(0, 0, 0)
  2905. ----------------------------------------------------
  2906. local m = Instance.new("Model")
  2907. m.Name = "LeftLeg"
  2908. p1 = Instance.new("WedgePart", m)
  2909. p1.BrickColor = BrickColor.new("Institutional white")
  2910. p1.Material = Enum.Material.Neon
  2911. p1.Name = "Wedge"
  2912. p1.FormFactor = Enum.FormFactor.Custom
  2913. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2914. p1.CFrame = CFrame.new(64.3107605, 2.34980536, -14.7520046, 1.00008786, -7.1526415e-007, 2.00803143e-007, -2.2649931e-006, 0.999990404, 5.36453001e-007, -1.27237047e-006, 7.81809263e-007, 1.00007522)
  2915. p1.CanCollide = false
  2916. p1.Locked = true
  2917. p1.TopSurface = Enum.SurfaceType.Smooth
  2918. b1 = Instance.new("SpecialMesh", p1)
  2919. b1.MeshType = Enum.MeshType.Wedge
  2920. b1.Name = "Mesh"
  2921. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2922. p2 = Instance.new("WedgePart", m)
  2923. p2.BrickColor = BrickColor.new("Institutional white")
  2924. p2.Material = Enum.Material.Neon
  2925. p2.Name = "Wedge"
  2926. p2.FormFactor = Enum.FormFactor.Custom
  2927. p2.Size = Vector3.new(1, 1.19999981, 4)
  2928. p2.CFrame = CFrame.new(64.9138336, 3.49979234, -10.7640553, -1.00009644, -6.38643314e-007, 1.81689501e-007, 2.53323037e-006, 0.906298041, -0.422614515, 1.23479219e-006, -0.422652602, -0.906383216)
  2929. p2.CanCollide = false
  2930. p2.Locked = true
  2931. p2.TopSurface = Enum.SurfaceType.Smooth
  2932. b2 = Instance.new("SpecialMesh", p2)
  2933. b2.MeshType = Enum.MeshType.Wedge
  2934. b2.Name = "Mesh"
  2935. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2936. p3 = Instance.new("Part", m)
  2937. p3.BrickColor = BrickColor.new("Really black")
  2938. p3.Material = Enum.Material.Metal
  2939. p3.Name = "Main"
  2940. p3.FormFactor = Enum.FormFactor.Custom
  2941. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2942. p3.CFrame = CFrame.new(65.0144501, 3.99976897, -13.1643734, 1.00010526, -9.43461771e-007, 1.5135204e-007, -2.48442234e-006, 0.999988973, 7.74860382e-007, -1.32394814e-006, 8.94069672e-007, 1.00009048)
  2943. p3.CanCollide = false
  2944. p3.Locked = true
  2945. p3.BottomSurface = Enum.SurfaceType.Smooth
  2946. p3.TopSurface = Enum.SurfaceType.Smooth
  2947. p4 = Instance.new("Part", m)
  2948. p4.BrickColor = BrickColor.new("Really black")
  2949. p4.Material = Enum.Material.Neon
  2950. p4.FormFactor = Enum.FormFactor.Custom
  2951. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2952. p4.CFrame = CFrame.new(64.8149185, 4.09976244, -14.2645903, 1.00011396, -1.07351866e-006, 1.23178822e-007, -2.62327239e-006, 0.999988258, 8.64272579e-007, -1.33881622e-006, 1.01328953e-006, 1.00009811)
  2953. p4.CanCollide = false
  2954. p4.Locked = true
  2955. p4.BottomSurface = Enum.SurfaceType.Smooth
  2956. p4.TopSurface = Enum.SurfaceType.Smooth
  2957. b3 = Instance.new("SpecialMesh", p4)
  2958. b3.MeshType = Enum.MeshType.Sphere
  2959. b3.Name = "Mesh"
  2960. p5 = Instance.new("WedgePart", m)
  2961. p5.BrickColor = BrickColor.new("Institutional white")
  2962. p5.Material = Enum.Material.Neon
  2963. p5.Name = "Wedge"
  2964. p5.FormFactor = Enum.FormFactor.Custom
  2965. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2966. p5.CFrame = CFrame.new(64.9130707, 2.34976578, -14.7524614, 1.00012243, -1.19274011e-006, 9.97973828e-008, -2.74250215e-006, 0.999987364, 8.94081438e-007, -1.37342522e-006, 1.15432931e-006, 1.00010574)
  2967. p5.CanCollide = false
  2968. p5.Locked = true
  2969. p5.TopSurface = Enum.SurfaceType.Smooth
  2970. b4 = Instance.new("SpecialMesh", p5)
  2971. b4.MeshType = Enum.MeshType.Wedge
  2972. b4.Name = "Mesh"
  2973. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2974. p6 = Instance.new("Part", m)
  2975. p6.BrickColor = BrickColor.new("Institutional white")
  2976. p6.Material = Enum.Material.Neon
  2977. p6.FormFactor = Enum.FormFactor.Custom
  2978. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2979. p6.CFrame = CFrame.new(65.1539307, 3.56787443, -14.2648125, -0.81925869, 0.573652625, 6.3568308e-008, -0.573566198, -0.819142461, 1.03511331e-006, 4.69596898e-007, -1.7646264e-006, 1.00011337)
  2980. p6.CanCollide = false
  2981. p6.Locked = true
  2982. p6.BottomSurface = Enum.SurfaceType.Smooth
  2983. p6.TopSurface = Enum.SurfaceType.Smooth
  2984. p7 = Instance.new("Part", m)
  2985. p7.BrickColor = BrickColor.new("Institutional white")
  2986. p7.Material = Enum.Material.Neon
  2987. p7.FormFactor = Enum.FormFactor.Custom
  2988. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2989. p7.CFrame = CFrame.new(64.9899063, 4.4266243, -14.2649202, 0.86614728, 0.500068843, 4.87115699e-008, -0.499995351, 0.866011381, 1.14634361e-006, -1.86828663e-006, 3.82691809e-007, 1.000121)
  2990. p7.CanCollide = false
  2991. p7.Locked = true
  2992. p7.BottomSurface = Enum.SurfaceType.Smooth
  2993. p7.TopSurface = Enum.SurfaceType.Smooth
  2994. p8 = Instance.new("Part", m)
  2995. p8.BrickColor = BrickColor.new("Really black")
  2996. p8.Material = Enum.Material.Neon
  2997. p8.FormFactor = Enum.FormFactor.Custom
  2998. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2999. p8.CFrame = CFrame.new(65.2172623, 4.89969873, -14.2650318, 1.00014877, -1.43051147e-006, 2.05365609e-008, -3.09944153e-006, 0.99998486, 1.2357583e-006, -1.44150738e-006, 1.38478742e-006, 1.00012863)
  3000. p8.CanCollide = false
  3001. p8.Locked = true
  3002. p8.BottomSurface = Enum.SurfaceType.Smooth
  3003. p8.TopSurface = Enum.SurfaceType.Smooth
  3004. b5 = Instance.new("SpecialMesh", p8)
  3005. b5.MeshType = Enum.MeshType.Sphere
  3006. b5.Name = "Mesh"
  3007. p9 = Instance.new("Part", m)
  3008. p9.BrickColor = BrickColor.new("Really black")
  3009. p9.Material = Enum.Material.Neon
  3010. p9.FormFactor = Enum.FormFactor.Custom
  3011. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3012. p9.CFrame = CFrame.new(65.517868, 2.99971151, -14.2651463, 1.00015736, -1.5520751e-006, -9.27031252e-009, -3.21633729e-006, 0.999984026, 1.32517368e-006, -1.46969478e-006, 1.46621869e-006, 1.00013626)
  3013. p9.CanCollide = false
  3014. p9.Locked = true
  3015. p9.BottomSurface = Enum.SurfaceType.Smooth
  3016. p9.TopSurface = Enum.SurfaceType.Smooth
  3017. b6 = Instance.new("SpecialMesh", p9)
  3018. b6.MeshType = Enum.MeshType.Sphere
  3019. b6.Name = "Mesh"
  3020. p10 = Instance.new("Part", m)
  3021. p10.BrickColor = BrickColor.new("Institutional white")
  3022. p10.Material = Enum.Material.Neon
  3023. p10.FormFactor = Enum.FormFactor.Custom
  3024. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  3025. p10.CFrame = CFrame.new(64.79879, 5.1497221, -14.2652512, -0.642893076, 0.766172707, -3.7446263e-008, -0.766029418, -0.64277941, 1.40660427e-006, -2.27817864e-007, -2.14863894e-006, 1.00014389)
  3026. p10.CanCollide = false
  3027. p10.Locked = true
  3028. p10.BottomSurface = Enum.SurfaceType.Smooth
  3029. p10.TopSurface = Enum.SurfaceType.Smooth
  3030. p11 = Instance.new("Part", m)
  3031. p11.BrickColor = BrickColor.new("Institutional white")
  3032. p11.Material = Enum.Material.Neon
  3033. p11.FormFactor = Enum.FormFactor.Custom
  3034. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  3035. p11.CFrame = CFrame.new(65.2189484, 5.30325174, -14.2653618, 1.00017476, -1.78813934e-006, -6.56227002e-008, -3.4570694e-006, 0.999982595, 1.49602079e-006, -1.52770292e-006, 1.64505627e-006, 1.00015152)
  3036. p11.CanCollide = false
  3037. p11.Locked = true
  3038. p11.BottomSurface = Enum.SurfaceType.Smooth
  3039. p11.TopSurface = Enum.SurfaceType.Smooth
  3040. p12 = Instance.new("WedgePart", m)
  3041. p12.BrickColor = BrickColor.new("Institutional white")
  3042. p12.Material = Enum.Material.Neon
  3043. p12.Name = "Wedge"
  3044. p12.FormFactor = Enum.FormFactor.Custom
  3045. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  3046. p12.CFrame = CFrame.new(65.5171509, 2.34969687, -14.7532635, 1.00018334, -1.89246384e-006, -8.90070169e-008, -3.54650388e-006, 0.999981821, 1.52583425e-006, -1.56231545e-006, 1.78610321e-006, 1.00015914)
  3047. p12.CanCollide = false
  3048. p12.Locked = true
  3049. p12.TopSurface = Enum.SurfaceType.Smooth
  3050. b7 = Instance.new("SpecialMesh", p12)
  3051. b7.MeshType = Enum.MeshType.Wedge
  3052. b7.Name = "Mesh"
  3053. b7.Scale = Vector3.new(0.200000003, 1, 1)
  3054. p13 = Instance.new("Part", m)
  3055. p13.BrickColor = BrickColor.new("Really black")
  3056. p13.Material = Enum.Material.Neon
  3057. p13.FormFactor = Enum.FormFactor.Custom
  3058. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3059. p13.CFrame = CFrame.new(64.3198929, 5.59963703, -14.2655821, 1.00019193, -1.97098893e-006, -1.23608402e-007, -3.67657594e-006, 0.999981046, 1.66687016e-006, -1.58571254e-006, 1.81590929e-006, 1.00016677)
  3060. p13.CanCollide = false
  3061. p13.Locked = true
  3062. p13.BottomSurface = Enum.SurfaceType.Smooth
  3063. p13.TopSurface = Enum.SurfaceType.Smooth
  3064. b8 = Instance.new("SpecialMesh", p13)
  3065. b8.MeshType = Enum.MeshType.Sphere
  3066. b8.Name = "Mesh"
  3067. p14 = Instance.new("Part", m)
  3068. p14.BrickColor = BrickColor.new("Really black")
  3069. p14.Material = Enum.Material.Neon
  3070. p14.FormFactor = Enum.FormFactor.Custom
  3071. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3072. p14.CFrame = CFrame.new(65.2206192, 5.79961872, -14.2656937, 1.00020039, -2.10105645e-006, -1.51786239e-007, -3.75511786e-006, 0.99998033, 1.7562885e-006, -1.6139021e-006, 1.90533035e-006, 1.0001744)
  3073. p14.CanCollide = false
  3074. p14.Locked = true
  3075. p14.BottomSurface = Enum.SurfaceType.Smooth
  3076. p14.TopSurface = Enum.SurfaceType.Smooth
  3077. b9 = Instance.new("SpecialMesh", p14)
  3078. b9.MeshType = Enum.MeshType.Sphere
  3079. b9.Name = "Mesh"
  3080. w1 = Instance.new("Weld", p1)
  3081. w1.Name = "Wedge_Weld"
  3082. w1.Part0 = p1
  3083. w1.C0 = CFrame.new(-64.3004303, -0.350028396, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3084. w1.Part1 = p2
  3085. w1.C1 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  3086. w2 = Instance.new("Weld", p2)
  3087. w2.Name = "Part_Weld"
  3088. w2.Part0 = p2
  3089. w2.C0 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  3090. w2.Part1 = p3
  3091. w2.C1 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  3092. w3 = Instance.new("Weld", p3)
  3093. w3.Name = "Part_Weld"
  3094. w3.Part0 = p3
  3095. w3.C0 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  3096. w3.Part1 = p4
  3097. w3.C1 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3098. w4 = Instance.new("Weld", p4)
  3099. w4.Name = "Wedge_Weld"
  3100. w4.Part0 = p4
  3101. w4.C0 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3102. w4.Part1 = p5
  3103. w4.C1 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3104. w5 = Instance.new("Weld", p5)
  3105. w5.Name = "Part_Weld"
  3106. w5.Part0 = p5
  3107. w5.C0 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3108. w5.Part1 = p6
  3109. w5.C1 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3110. w6 = Instance.new("Weld", p6)
  3111. w6.Name = "Part_Weld"
  3112. w6.Part0 = p6
  3113. w6.C0 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3114. w6.Part1 = p7
  3115. w6.C1 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  3116. w7 = Instance.new("Weld", p7)
  3117. w7.Name = "Part_Weld"
  3118. w7.Part0 = p7
  3119. w7.C0 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  3120. w7.Part1 = p8
  3121. w7.C1 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3122. w8 = Instance.new("Weld", p8)
  3123. w8.Name = "Part_Weld"
  3124. w8.Part0 = p8
  3125. w8.C0 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3126. w8.Part1 = p9
  3127. w8.C1 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3128. w9 = Instance.new("Weld", p9)
  3129. w9.Name = "Part_Weld"
  3130. w9.Part0 = p9
  3131. w9.C0 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3132. w9.Part1 = p10
  3133. w9.C1 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3134. w10 = Instance.new("Weld", p10)
  3135. w10.Name = "Part_Weld"
  3136. w10.Part0 = p10
  3137. w10.C0 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3138. w10.Part1 = p11
  3139. w10.C1 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3140. w11 = Instance.new("Weld", p11)
  3141. w11.Name = "Wedge_Weld"
  3142. w11.Part0 = p11
  3143. w11.C0 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3144. w11.Part1 = p12
  3145. w11.C1 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3146. w12 = Instance.new("Weld", p12)
  3147. w12.Name = "Part_Weld"
  3148. w12.Part0 = p12
  3149. w12.C0 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3150. w12.Part1 = p13
  3151. w12.C1 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3152. w13 = Instance.new("Weld", p13)
  3153. w13.Name = "Part_Weld"
  3154. w13.Part0 = p13
  3155. w13.C0 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3156. w13.Part1 = p14
  3157. w13.C1 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3158. w14 = Instance.new("Weld", p14)
  3159. w14.Name = "Wedge_Weld"
  3160. w14.Part0 = p14
  3161. w14.C0 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3162. m.Parent = lleg
  3163. m:MakeJoints()
  3164. ----------------------------------------------------
  3165. local cor7 = Instance.new("Part", lleg.LeftLeg)
  3166. cor7.Name = "Thingy"
  3167. cor7.Locked = true
  3168. cor7.BottomSurface = 0
  3169. cor7.CanCollide = false
  3170. cor7.Size = Vector3.new(2, 1, 1)
  3171. cor7.Transparency = 1
  3172. cor7.TopSurface = 0
  3173. corw2 = Instance.new("Weld", cor7)
  3174. corw2.Part0 = lleg
  3175. corw2.Part1 = cor7
  3176. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3177. corw2.C1 = CFrame.new(0, 0, 0)
  3178. weld2 = Instance.new("Weld", lleg.LeftLeg)
  3179. weld2.Part0 = cor7
  3180. weld2.Part1 = p3
  3181. weld2.C0 = CFrame.new(0, 0, 0)
  3182. ----------------------------------------------------
  3183. function weld5(part0, part1, c0, c1)
  3184. weeld=Instance.new("Weld", part0)
  3185. weeld.Part0=part0
  3186. weeld.Part1=part1
  3187. weeld.C0=c0
  3188. weeld.C1=c1
  3189. return weeld
  3190. end
  3191. ----------------------------------------------------
  3192. function newRay(start,face,range,wat)
  3193. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3194. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3195. return rey,hit,pos
  3196. end
  3197. ----------------------------------------------------
  3198. mod5 = Instance.new("Model",char)
  3199.  
  3200. function FindNearestTorso(Position,Distance,SinglePlayer)
  3201. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3202. local List = {}
  3203. for i,v in pairs(workspace:GetChildren())do
  3204. if v:IsA("Model")then
  3205. if v:findFirstChild("Torso")then
  3206. if v ~= char then
  3207. if(v.Torso.Position -Position).magnitude <= Distance then
  3208. table.insert(List,v)
  3209. end
  3210. end
  3211. end
  3212. end
  3213. end
  3214. return List
  3215. end
  3216.  
  3217. function Landing()
  3218. part=Instance.new('Part',mod5)
  3219. part.Anchored=true
  3220. part.CanCollide=false
  3221. part.FormFactor='Custom'
  3222. part.Size=Vector3.new(.2,.2,.2)
  3223. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3224. part.Transparency=.7
  3225. part.BrickColor=BrickColor.new('Really black')
  3226. part2=part:clone()
  3227. part2.Parent = mod5
  3228. part2.BrickColor=BrickColor.new('Institutional white')
  3229. mesh=Instance.new('SpecialMesh',part)
  3230. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3231. mesh.Scale=Vector3.new(10,5,10)
  3232. mesh2=mesh:clone()
  3233. mesh2.Parent=part2
  3234. mesh2.Scale=Vector3.new(12, 6, 12)
  3235.  
  3236. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3237. if v:FindFirstChild('Humanoid') then
  3238. v.Humanoid:TakeDamage(math.random(20,30))
  3239. v.Humanoid.PlatformStand = true
  3240. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
  3241. end
  3242. end
  3243.  
  3244. coroutine.resume(coroutine.create(function()
  3245. for i=0,3.8,0.05 do
  3246. wait()
  3247. part.CFrame=part.CFrame
  3248. part.Transparency=i
  3249. part2.CFrame=part2.CFrame
  3250. part2.Transparency=i
  3251. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3252. mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3253. end
  3254. part.Parent = nil
  3255. end))
  3256. end
  3257. ----------------------------------------------------
  3258. mod4 = Instance.new("Model",char)
  3259.  
  3260. ptez = {0.7, 0.8, 0.9, 1}
  3261.  
  3262. function FindNearestTorso(Position,Distance,SinglePlayer)
  3263. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3264. local List = {}
  3265. for i,v in pairs(workspace:GetChildren())do
  3266. if v:IsA("Model")then
  3267. if v:findFirstChild("Torso")then
  3268. if v ~= char then
  3269. if(v.Torso.Position -Position).magnitude <= Distance then
  3270. table.insert(List,v)
  3271. end
  3272. end
  3273. end
  3274. end
  3275. end
  3276. return List
  3277. end
  3278.  
  3279. function GroundPound()
  3280. part=Instance.new('Part',mod4)
  3281. part.Anchored=true
  3282. part.CanCollide=false
  3283. part.FormFactor='Custom'
  3284. part.Size=Vector3.new(.2,.2,.2)
  3285. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3286. part.Transparency=.7
  3287. part.BrickColor=BrickColor.new('Really black')
  3288. mesh=Instance.new('SpecialMesh',part)
  3289. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3290. mesh.Scale=Vector3.new(3,3,3)
  3291. part2=Instance.new('Part',mod4)
  3292. part2.Anchored=true
  3293. part2.CanCollide=false
  3294. part2.FormFactor='Custom'
  3295. part2.Size=Vector3.new(.2,.2,.2)
  3296. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3297. part2.Transparency=.7
  3298. part2.BrickColor=BrickColor.new('Really red')
  3299. mesh2=Instance.new('SpecialMesh',part2)
  3300. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3301. mesh2.Scale=Vector3.new(3,1.5,3)
  3302. x = Instance.new("Sound",char)
  3303. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  3304. x.Pitch = ptez[math.random(1,#ptez)]
  3305. x.Volume = 1
  3306. wait(.1)
  3307. x:Play()
  3308. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3309. if v:FindFirstChild('Humanoid') then
  3310. v.Humanoid:TakeDamage(math.random(8,15))
  3311. end
  3312. end
  3313. coroutine.resume(coroutine.create(function()
  3314. for i=0,0.62,0.13 do
  3315. wait()
  3316. part.CFrame=part.CFrame
  3317. part.Transparency=i
  3318. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3319. part2.CFrame=part2.CFrame
  3320. part2.Transparency=i
  3321. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3322. end
  3323. part.Parent=nil
  3324. part2.Parent=nil
  3325. x:Destroy()
  3326. end))
  3327. end
  3328. ----------------------------------------------------
  3329. mod=Instance.new('Model',char)
  3330.  
  3331. function charge()
  3332. hed.Velocity=hed.CFrame.lookVector*200
  3333. part=Instance.new('Part',mod)
  3334. part.Anchored=true
  3335. part.CanCollide=false
  3336. part.FormFactor='Custom'
  3337. part.Size=Vector3.new(.2,.2,.2)
  3338. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3339. part.Transparency=.7
  3340. part.BrickColor=BrickColor.new('Black')
  3341. mesh=Instance.new('SpecialMesh',part)
  3342. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3343. mesh.Scale=Vector3.new(10,5,10)
  3344. part2=part:clone()
  3345. part2.Parent=mod
  3346. part2.BrickColor=BrickColor.new('Bright red')
  3347. mesh2=mesh:clone()
  3348. mesh2.Parent=part2
  3349. mesh2.Scale=Vector3.new(20,10,20)
  3350. part3=part2:clone()
  3351. part3.Parent = mod
  3352. part3.BrickColor=BrickColor.new('Really black')
  3353. mesh3=mesh2:clone()
  3354. mesh2.Parent=part3
  3355. mesh3.Scale=Vector3.new(30,15,30)
  3356. coroutine.resume(coroutine.create(function()
  3357. for i=0,1,0.1 do
  3358. wait()
  3359. part.CFrame=part.CFrame
  3360. part.Transparency=i
  3361. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3362. part2.CFrame=part2.CFrame
  3363. part2.Transparency=i
  3364. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3365. part3.CFrame=part3.CFrame
  3366. part3.Transparency=i
  3367. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3368. end
  3369. part.Parent=nil
  3370. part2.Parent=nil
  3371. part3.Parent = nil
  3372. end))
  3373. end
  3374. ----------------------------------------------------
  3375. function FindNearestTorso(Position,Distance,SinglePlayer)
  3376. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3377. local List = {}
  3378. for i,v in pairs(workspace:GetChildren())do
  3379. if v:IsA("Model")then
  3380. if v:findFirstChild("Torso")then
  3381. if v ~= char then
  3382. if(v.Torso.Position -Position).magnitude <= Distance then
  3383. table.insert(List,v)
  3384. end
  3385. end
  3386. end
  3387. end
  3388. end
  3389. return List
  3390. end
  3391.  
  3392. mod3 = Instance.new("Model",rleg)
  3393.  
  3394. function Stomp()
  3395. part=Instance.new('Part',mod3)
  3396. part.Anchored=true
  3397. part.CanCollide=false
  3398. part.FormFactor='Custom'
  3399. part.Size=Vector3.new(.2,.2,.2)
  3400. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3401. part.Transparency=.7
  3402. part.BrickColor=BrickColor.new('Bright green')
  3403. mesh=Instance.new('SpecialMesh',part)
  3404. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3405. mesh.Scale=Vector3.new(25,25,25)
  3406. part2=part:clone()
  3407. part2.Parent=mod3
  3408. part2.BrickColor=BrickColor.new('Bright green')
  3409. mesh2=mesh:clone()
  3410. mesh2.Parent=part2
  3411. mesh2.Scale=Vector3.new(15,15,15)
  3412. part3=part:clone()
  3413. part3.Parent=mod3
  3414. part3.TopSurface=0
  3415. part3.BottomSurface=0
  3416. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3417. mesh3=Instance.new('SpecialMesh',part3)
  3418. mesh3.MeshType = 3
  3419. mesh3.Scale=Vector3.new(12,12,12)
  3420. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3421. if v:FindFirstChild('Humanoid') then
  3422. v.Humanoid:TakeDamage(math.random(20,60))
  3423. v.Humanoid.PlatformStand = true
  3424. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3425. end
  3426. end
  3427. coroutine.resume(coroutine.create(function()
  3428. for i=0,3.8,0.05 do
  3429. wait()
  3430. part.CFrame=part.CFrame
  3431. part.Transparency=i
  3432. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3433. part2.CFrame=part2.CFrame
  3434. part2.Transparency=i
  3435. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3436. part3.CFrame=part3.CFrame
  3437. part3.Transparency=i
  3438. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3439. end
  3440. end))
  3441. end
  3442. ----------------------------------------------------
  3443.  
  3444. local acos = math.acos
  3445. local sqrt = math.sqrt
  3446. local Vec3 = Vector3.new
  3447. local fromAxisAngle = CFrame.fromAxisAngle
  3448.  
  3449. local function toAxisAngle(CFr)
  3450. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3451. local Angle = math.acos((R00+R11+R22-1)/2)
  3452. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3453. A = A == 0 and 0.00001 or A
  3454. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3455. B = B == 0 and 0.00001 or B
  3456. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3457. C = C == 0 and 0.00001 or C
  3458. local x = (R21-R12)/sqrt(A)
  3459. local y = (R02-R20)/sqrt(B)
  3460. local z = (R10-R01)/sqrt(C)
  3461. return Vec3(x,y,z),Angle
  3462. end
  3463.  
  3464. function ApplyTrig(Num,Func)
  3465. local Min,Max = Func(0),Func(1)
  3466. local i = Func(Num)
  3467. return (i-Min)/(Max-Min)
  3468. --[[if Func == "sin" then
  3469. return (math.sin((1-Num)*math.pi)+1)/2
  3470. elseif Func == "cos" then
  3471. return (math.cos((1-Num)*math.pi)+1)/2
  3472. end]]
  3473. end
  3474.  
  3475. function LerpCFrame(CFrame1,CFrame2,Num)
  3476. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3477. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3478. end
  3479.  
  3480. function Crater(Torso,Radius)
  3481. Spawn(function()
  3482. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  3483. local Ignore = {}
  3484. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3485. if v.Character ~= nil then
  3486. Ignore[#Ignore+1] = v.Character
  3487. end
  3488. end
  3489. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3490. if Hit == nil then return end
  3491. local Parts = {}
  3492. for i = 1,360,10 do
  3493. local P = Instance.new("Part",Torso.Parent)
  3494. P.Anchored = true
  3495. P.FormFactor = "Custom"
  3496. P.BrickColor = Hit.BrickColor
  3497. P.Material = Hit.Material
  3498. P.TopSurface = "Smooth"
  3499. P.BottomSurface = "Smooth"
  3500. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3501. 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)))
  3502. 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}
  3503. if math.random(0,5) == 0 then -- rubble
  3504. local P = Instance.new("Part",Torso.Parent)
  3505. P.Anchored = true
  3506. P.FormFactor = "Custom"
  3507. P.BrickColor = Hit.BrickColor
  3508. P.Material = Hit.Material
  3509. P.TopSurface = "Smooth"
  3510. P.BottomSurface = "Smooth"
  3511. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3512. 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)))
  3513. 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}
  3514. end
  3515. end
  3516. for i = 0,1,0.05 do
  3517. for i2,v in pairs(Parts) do
  3518. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3519. end
  3520. wait(0.02)
  3521. end
  3522. for i,v in pairs(Parts) do
  3523. if v[1].Size.X > 2.1 then
  3524. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3525. end
  3526. v[1].Anchored = false
  3527. end
  3528. for i = 0,1,0.05 do
  3529. for i2,v in pairs(Parts) do
  3530. v[1].Transparency = i
  3531. if i == 1 then
  3532. v[1]:Destroy()
  3533. elseif i >= 0.25 then
  3534. v[1].CanCollide = false
  3535. end
  3536. end
  3537. wait(0.02)
  3538. end
  3539. Parts = nil
  3540. end)
  3541. end
  3542.  
  3543. ----------------------------------------------------
  3544. mouse.KeyDown:connect(function(key)
  3545. if key == "r" then
  3546. larm.BrickColor = BrickColor.new("Bright red")
  3547. rarm.BrickColor = BrickColor.new("Bright red")
  3548. if Debounces.CanAttack == true then
  3549. Debounces.CanAttack = false
  3550. Debounces.on = true
  3551. Debounces.NoIdl = true
  3552. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3553. hit = ht.Parent
  3554. if ht and hit:IsA("Model") then
  3555. if hit:FindFirstChild("Humanoid") then
  3556. if hit.Name ~= p.Name then
  3557. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3558. Debounces.Slashed = true]]--
  3559. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3560. wait(1)
  3561. --Debounces.Slashed = false
  3562. --end
  3563. end
  3564. end
  3565. elseif ht and hit:IsA("Hat") then
  3566. if hit.Parent.Name ~= p.Name then
  3567. if hit.Parent:FindFirstChild("Humanoid") then
  3568. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3569. Debounces.Slashed = true]]--
  3570. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3571. wait(1)
  3572. --Debounces.Slashed = false
  3573. end
  3574. end
  3575. end
  3576. end)
  3577. q = Instance.new("Sound",hed)
  3578. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3579. q.Pitch = 0.85
  3580. q.Looped = false
  3581. q1 = Instance.new("Sound",hed)
  3582. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3583. q1.Pitch = 0.85
  3584. q1.Looped = false
  3585. q:Play()
  3586. q1:Play()
  3587. for i = 1,20 do
  3588. 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.2)
  3589. 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.2)
  3590. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3591. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3592. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3593. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3594. 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.25)
  3595. if Debounces.on == false then break end
  3596. rs:wait(.6)
  3597. end
  3598. n = Instance.new("Sound",hed)
  3599. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3600. n.Pitch = 0.94
  3601. n.Looped = false
  3602. n1 = Instance.new("Sound",hed)
  3603. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3604. n1.Pitch = 0.94
  3605. n1.Looped = false
  3606. n:Play()
  3607. n1:Play()
  3608. b = Instance.new("Sound",hed)
  3609. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3610. b.Pitch = 0.94
  3611. b.Looped = false
  3612. b1 = Instance.new("Sound",hed)
  3613. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3614. b1.Pitch = 0.94
  3615. b1.Looped = false
  3616. b:Play()
  3617. b1:Play()
  3618. for i = 1,26 do
  3619. 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.25)
  3620. 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.25)
  3621. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.25)
  3622. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3623. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3624. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3625. 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.25)
  3626. if Debounces.on == false then break end
  3627. rs:wait(1)
  3628. end
  3629. wait(.5)
  3630. to:disconnect()
  3631. q:Destroy()
  3632. q1:Destroy()
  3633. n:Destroy()
  3634. n1:Destroy()
  3635. larm.BrickColor = BrickColor.new("Really black")
  3636. rarm.BrickColor = BrickColor.new("Really black")
  3637. if Debounces.CanAttack == false then
  3638. Debounces.CanAttack = true
  3639. Debounces.on = false
  3640. Debounces.NoIdl = false
  3641. end
  3642. end
  3643. end
  3644. end)
  3645. ----------------------------------------------------
  3646. mouse.KeyDown:connect(function(key)
  3647. if key == "q" then
  3648. larm.BrickColor = BrickColor.new("Bright red")
  3649. rarm.BrickColor = BrickColor.new("Bright red")
  3650. if Debounces.CanAttack == true then
  3651. Debounces.CanAttack = false
  3652. Debounces.on = true
  3653. Debounces.NoIdl = true
  3654. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3655. hit = ht.Parent
  3656. if ht and hit:IsA("Model") then
  3657. if hit:FindFirstChild("Humanoid") then
  3658. if hit.Name ~= p.Name then
  3659. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3660. Debounces.Slashed = true]]--
  3661. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3662. wait(1)
  3663. --Debounces.Slashed = false
  3664. --end
  3665. end
  3666. end
  3667. elseif ht and hit:IsA("Hat") then
  3668. if hit.Parent.Name ~= p.Name then
  3669. if hit.Parent:FindFirstChild("Humanoid") then
  3670. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3671. Debounces.Slashed = true]]--
  3672. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3673. wait(1)
  3674. --Debounces.Slashed = false
  3675. end
  3676. end
  3677. end
  3678. end)
  3679. for i = 1, 20 do
  3680. 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)
  3681. 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)
  3682. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3683. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  3684. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3685. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3686. 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)
  3687. if Debounces.on == false then break end
  3688. rs:wait(2)
  3689. end
  3690. z = Instance.new("Sound",hed)
  3691. z.SoundId = "rbxassetid://160069154"
  3692. z.Looped = false
  3693. z.Pitch = .9
  3694. z1 = Instance.new("Sound",hed)
  3695. z1.SoundId = "rbxassetid://160069154"
  3696. z1.Looped = false
  3697. z1.Pitch = .9
  3698. wait(0.01)
  3699. z:Play()
  3700. z1:Play()
  3701. for i = 1, 20 do
  3702. 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)
  3703. 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)
  3704. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3705. 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)
  3706. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3707. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3708. 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)
  3709. if Debounces.on == false then break end
  3710. rs:wait(2)
  3711. end
  3712. for i = 1, 20 do
  3713. 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)
  3714. 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)
  3715. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3716. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3717. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3718. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3719. 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)
  3720. if Debounces.on == false then break end
  3721. rs:wait(2)
  3722. end
  3723. z = Instance.new("Sound",hed)
  3724. z.SoundId = "rbxassetid://168586621"
  3725. z.Looped = false
  3726. z.Pitch = 1
  3727. z1 = Instance.new("Sound",hed)
  3728. z1.SoundId = "rbxassetid://168586621"
  3729. z1.Looped = false
  3730. z1.Pitch = 1
  3731. wait(0.01)
  3732. z:Play()
  3733. z1:Play()
  3734. for i = 1, 20 do
  3735. 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)
  3736. 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)
  3737. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3738. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3739. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3740. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3741. 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)
  3742. if Debounces.on == false then break end
  3743. rs:wait(2)
  3744. end
  3745. to:disconnect()
  3746. larm.BrickColor = BrickColor.new("Really black")
  3747. rarm.BrickColor = BrickColor.new("Really black")
  3748. if Debounces.CanAttack == false then
  3749. Debounces.CanAttack = true
  3750. Debounces.on = false
  3751. Debounces.NoIdl = false
  3752. end
  3753. end
  3754. end
  3755. end)
  3756. ----------------------------------------------------
  3757. Sit = false
  3758. mouse.KeyDown:connect(function(key)
  3759. if key == "v" then
  3760. if Sit == false then
  3761. Sit = true
  3762. hum.WalkSpeed = 0.001
  3763. stanceToggle = "Sitting"
  3764. elseif Sit == true then
  3765. Sit = false
  3766. hum.WalkSpeed = 7
  3767. stanceToggle = "Normal"
  3768. end
  3769. end
  3770. end)
  3771. ----------------------------------------------------
  3772. mouse.KeyDown:connect(function(key)
  3773. if key == "t" then
  3774. if Debounces.CanAttack == true then
  3775. Debounces.CanAttack = false
  3776. Debounces.on = true
  3777. Debounces.NoIdl = true
  3778. for i = 1, 20 do
  3779. 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.2)
  3780. 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.2)
  3781. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3782. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3783. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3784. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3785. 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)
  3786. if Debounces.on == false then break end
  3787. rs:wait(2.6)
  3788. end
  3789. Spawn(function()
  3790. local Parts = {}
  3791. for Y = -5,5 do
  3792. local P = Instance.new("Part",char)
  3793. P.Anchored = true
  3794. P.FormFactor = "Custom"
  3795. P.CanCollide = false
  3796. P.Size = Vector3.new(10,20,10)
  3797. P.TopSurface = "SmoothNoOutlines"
  3798. P.BottomSurface = "SmoothNoOutlines"
  3799. P.BrickColor = BrickColor.new("Institutional white")
  3800. P.Material = "Neon"
  3801. P.Name = tostring(Y)
  3802. local i = (Y+5)/(10)
  3803. i = 1-math.cos(math.pi*i-(math.pi/2))
  3804. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3805. --[[P.Touched:connect(function(ht)
  3806. local hit = ht.Parent
  3807. if hit:FindFirstChild("Humanoid") then
  3808. hit.Humanoid:TakeDamage(math.random(20,50))
  3809. end
  3810. end)]]--
  3811. s = Instance.new("Sound",P)
  3812. s.SoundId = "rbxassetid://228343271"
  3813. s.Volume = 10
  3814. s.Pitch = 0.75
  3815. s:Play()
  3816. P.Touched:connect(function(ht)
  3817. hit = ht.Parent
  3818. if ht and hit:IsA("Model") then
  3819. if hit:FindFirstChild("Humanoid") then
  3820. if hit.Name ~= p.Name then
  3821. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3822. Debounces.Slashed = true]]--
  3823. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  3824. hit:FindFirstChild("Humanoid").PlatformStand = true
  3825. wait(1)
  3826. --Debounces.Slashed = false
  3827. --end
  3828. end
  3829. end
  3830. elseif ht and hit:IsA("Hat") then
  3831. if hit.Parent.Name ~= p.Name then
  3832. if hit.Parent:FindFirstChild("Humanoid") then
  3833. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3834. Debounces.Slashed = true]]--
  3835. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  3836. hit:FindFirstChild("Humanoid").PlatformStand = true
  3837. wait(1)
  3838. --Debounces.Slashed = false
  3839. --end
  3840. end
  3841. end
  3842. end
  3843. end)
  3844. Parts[#Parts+1] = P
  3845. end
  3846. local BREAKIT = false
  3847. local CParts = {}
  3848. local Rocks = {}
  3849. local LastPos = nil
  3850. for i = 1,70 do
  3851. for i2,v in pairs(Parts) do
  3852. v.CFrame = v.CFrame*CFrame.new(0,0,-8)
  3853. local cf = v.CFrame
  3854. v.Size = v.Size+Vector3.new(0.8,0.70,0)
  3855. v.CFrame = cf
  3856. v.Transparency = v.Transparency+0.02
  3857. if v.Transparency >= 0.975 then BREAKIT = true end
  3858. if v.Name == "0" then
  3859. local Ignore = {}
  3860. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3861. if v.Character ~= nil then
  3862. Ignore[#Ignore+1] = v.Character
  3863. end
  3864. end
  3865. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-400,0))
  3866. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3867. if Hit ~= nil then
  3868. if #Rocks == 0 then
  3869. for i = 1,5 do
  3870. local P = Instance.new("Part",char)
  3871. Rocks[#Rocks+1] = P
  3872. P.Anchored = true
  3873. P.FormFactor = "Custom"
  3874. P.BrickColor = Hit.BrickColor
  3875. P.Material = Hit.Material
  3876. P.TopSurface = "Smooth"
  3877. P.BottomSurface = "Smooth"
  3878. P.Size = Vector3.new(10,10,10)*(math.random(500,900)/100)
  3879. end
  3880. end
  3881. for i,P in pairs(Rocks) do
  3882. 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)))
  3883. end
  3884. local P = Instance.new("Part",char)
  3885. CParts[#CParts+1] = {P,tick()}
  3886. P.Anchored = true
  3887. P.FormFactor = "Custom"
  3888. P.BrickColor = Hit.BrickColor
  3889. P.Material = Hit.Material
  3890. P.TopSurface = "Smooth"
  3891. P.BottomSurface = "Smooth"
  3892. P.Size = Vector3.new(10,10,10)*(math.random(100,300)/100)
  3893. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3894. Pos = Pos.p
  3895. 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)))
  3896. local P = P:Clone()
  3897. CParts[#CParts+1] = {P,tick()}
  3898. P.Parent = char
  3899. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3900. Pos = Pos.p
  3901. 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)))
  3902. if LastPos ~= nil then
  3903. local P = P:Clone()
  3904. CParts[#CParts+1] = {P,tick()}
  3905. P.Parent = char
  3906. P.BrickColor = BrickColor.new("Institutional white")
  3907. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3908. Pos = Pos.p
  3909. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3910. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3911. --P.Velocity = Vector3.new(0,-1000,0)
  3912. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3913. end
  3914. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3915. end
  3916. end
  3917. end
  3918. if BREAKIT then break end
  3919. wait(0.002)
  3920. end
  3921. for i,v in pairs(Rocks) do
  3922. CParts[#CParts+1] = {v,tick()}
  3923. end
  3924. for i,v in pairs(Parts) do
  3925. v:Destroy()
  3926. end
  3927. Parts = nil
  3928. while true do
  3929. local t = tick()
  3930. local p = nil
  3931. for i,v in pairs(CParts) do
  3932. if t-v[2] > 4 then
  3933. v[1].Transparency = v[1].Transparency+0.05
  3934. if v[1].Transparency >= 1 then
  3935. v[1]:Destroy()
  3936. CParts[i] = nil
  3937. end
  3938. end
  3939. p = v
  3940. end
  3941. if p == nil then break end
  3942. wait(0.002)
  3943. end
  3944. for i,v in pairs(CParts) do
  3945. v:Destroy()
  3946. end
  3947. CParts = {}
  3948. end)
  3949. for i = 1, 20 do
  3950. 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)
  3951. 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)
  3952. 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)
  3953. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3954. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3955. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3956. 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)
  3957. if Debounces.on == false then break end
  3958. rs:wait(2)
  3959. end
  3960. if Debounces.CanAttack == false then
  3961. Debounces.CanAttack = true
  3962. Debounces.on = false
  3963. Debounces.NoIdl = false
  3964. end
  3965. end
  3966. end
  3967. end)
  3968. ----------------------------------------------------
  3969. mouse.KeyDown:connect(function(key)
  3970. if key == "e" then
  3971. larm.BrickColor = BrickColor.new("Bright red")
  3972. rarm.BrickColor = BrickColor.new("Bright red")
  3973. if Debounces.CanAttack == true then
  3974. Debounces.CanAttack = false
  3975. Debounces.on = true
  3976. Debounces.NoIdl = true
  3977. for i = 1, 18 do
  3978. 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)
  3979. 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)
  3980. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3981. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3982. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3983. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3984. 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)
  3985. if Debounces.on == false then break end
  3986. rs:wait(4)
  3987. end
  3988. 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))
  3989. local rng = Instance.new("Part", char.Absolution.Handle)
  3990. rng.Anchored = true
  3991. rng.BrickColor = BrickColor.new("Really black")
  3992. rng.CanCollide = true
  3993. rng.FormFactor = 3
  3994. rng.Name = "Ring"
  3995. rng.Size = Vector3.new(1, 1, 1)
  3996. rng.CanCollide = false
  3997. rng.Transparency = 0.35
  3998. rng.TopSurface = 0
  3999. rng.BottomSurface = 0
  4000. rng.CFrame = HandCF
  4001. local rngm = Instance.new("SpecialMesh", rng)
  4002. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4003. rngm.Scale = Vector3.new(1, 1, 2)
  4004. x = Instance.new("Sound", hed)
  4005. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  4006. x.Looped = false
  4007. x.Pitch = .7
  4008. x.Volume = 1
  4009. x1 = Instance.new("Sound", hed)
  4010. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  4011. x1.Looped = false
  4012. x1.Pitch = .7
  4013. x1.Volume = 1
  4014. x:Play()
  4015. x1:Play()
  4016. rngto = rng.Touched:connect(function(ht)
  4017. hit = ht.Parent
  4018. if ht and hit:IsA("Model") then
  4019. if hit:FindFirstChild("Humanoid") then
  4020. if hit.Name ~= p.Name then
  4021. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4022. Debounces.Slashed = true]]--
  4023. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  4024. hit:FindFirstChild("Humanoid").PlatformStand = true
  4025. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  4026. --Debounces.Slashed = false
  4027. --end
  4028. end
  4029. end
  4030. elseif ht and hit:IsA("Hat") then
  4031. if hit.Parent.Name ~= p.Name then
  4032. if hit.Parent:FindFirstChild("Humanoid") then
  4033. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4034. Debounces.Slashed = true]]--
  4035. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  4036. hit:FindFirstChild("Humanoid").PlatformStand = true
  4037. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  4038. --Debounces.Slashed = false
  4039. end
  4040. end
  4041. end
  4042. end)
  4043. coroutine.wrap(function()
  4044. for i = 1, 60, 2 do
  4045. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  4046. rng.Size = rngm.Scale
  4047. rng.CFrame = HandCF
  4048. rng.Transparency = i/60
  4049. wait()
  4050. end
  4051. wait()
  4052. rng:Destroy()
  4053. end)()
  4054. for i = 1, 18 do
  4055. 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)
  4056. 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)
  4057. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  4058. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  4059. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  4060. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  4061. 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)
  4062. if Debounces.on == false then break end
  4063. rs:wait(2.4)
  4064. end
  4065. larm.BrickColor = BrickColor.new("Really black")
  4066. rarm.BrickColor = BrickColor.new("Really black")
  4067. x:Destroy()
  4068. x1:Destroy()
  4069. if Debounces.CanAttack == false then
  4070. Debounces.CanAttack = true
  4071. Debounces.on = false
  4072. Debounces.NoIdl = false
  4073. end
  4074. end
  4075. end
  4076. end)
  4077. ----------------------------------------------------
  4078. mouse.KeyDown:connect(function(key)
  4079. if key == "y" then
  4080. if Debounces.CanAttack == true then
  4081. Debounces.CanAttack = false
  4082. Debounces.on = true
  4083. Debounces.NoIdl = true
  4084. for i = 1, 15 do
  4085. 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)
  4086. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-89)), 0.6)
  4087. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  4088. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  4089. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  4090. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  4091. 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)
  4092. if Debounces.on == false then break end
  4093. rs:wait(2.7)
  4094. end
  4095. x = Instance.new("Sound",char)
  4096. x.SoundId = "rbxassetid://228343271"
  4097. x.Pitch = 1
  4098. x.Volume = .8
  4099. wait(.1)
  4100. x:Play()
  4101. Debounces.on = false
  4102. Debounces.Here = false
  4103. shot = shot + 1
  4104. local rng = Instance.new("Part", char)
  4105. rng.Anchored = true
  4106. rng.BrickColor = BrickColor.new("Institutional white")
  4107. rng.CanCollide = false
  4108. rng.FormFactor = 3
  4109. rng.Name = "Ring"
  4110. rng.Size = Vector3.new(1, 1, 1)
  4111. rng.Transparency = 0.35
  4112. rng.TopSurface = 0
  4113. rng.BottomSurface = 0
  4114. rng2 = rng:clone()
  4115. rng3 = rng2:clone()
  4116. rng4 = rng2:clone()
  4117. local rngm = Instance.new("SpecialMesh", rng)
  4118. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4119. rngm.Scale = Vector3.new(10, 10, 1)
  4120. rngm2 = rngm:clone()
  4121. rngm2.Scale = Vector3.new(5, 5, 3)
  4122. rngm3=rngm2:clone()
  4123. rngm3.Parent = rng3
  4124. rngm3.Scale = Vector3.new(8, 8, 1)
  4125. rngm4 = rngm2:clone()
  4126. rngm4.Parent = rng4
  4127. rngm4.Scale = Vector3.new(6, 6, 1)
  4128. local bem = Instance.new("Part", char)
  4129. bem.Anchored = true
  4130. bem.BrickColor = BrickColor.new("Really black")
  4131. bem.CanCollide = false
  4132. bem.FormFactor = 3
  4133. bem.Name = "Beam" .. shot
  4134. bem.Size = Vector3.new(1, 1, 1)
  4135. bem.Transparency = 0.35
  4136. bem.TopSurface = 0
  4137. bem.BottomSurface = 0
  4138. local bemm = Instance.new("SpecialMesh", bem)
  4139. bemm.MeshType = 4
  4140. bemm.Scale = Vector3.new(1, 4, 4)
  4141. local out = Instance.new("Part", char)
  4142. out.Anchored = true
  4143. out.BrickColor = BrickColor.new("Really black")
  4144. out.CanCollide = false
  4145. out.FormFactor = 3
  4146. out.Name = "Out"
  4147. out.Size = Vector3.new(4, 4, 4)
  4148. out.Transparency = 0.35
  4149. out.TopSurface = 0
  4150. out.BottomSurface = 0
  4151. local outm = Instance.new("SpecialMesh", out)
  4152. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  4153. outm.Scale = Vector3.new(4, 4, 4)
  4154. local bnd = Instance.new("Part", char)
  4155. bnd.Anchored = true
  4156. bnd.BrickColor = BrickColor.new("Institutional white")
  4157. bnd.CanCollide = false
  4158. bnd.FormFactor = 3
  4159. bnd.Name = "Bend"
  4160. bnd.Size = Vector3.new(1, 1, 1)
  4161. bnd.Transparency = 1
  4162. bnd.TopSurface = 0
  4163. bnd.BottomSurface = 0
  4164. local bndm = Instance.new("SpecialMesh", bnd)
  4165. bndm.MeshType = 3
  4166. bndm.Scale = Vector3.new(8, 8, 8)
  4167. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  4168. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  4169. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  4170. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  4171. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  4172. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  4173. Debounces.Shewt = true
  4174. coroutine.wrap(function()
  4175. for i = 1, 20, 0.2 do
  4176. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4177. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  4178. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  4179. rng.Transparency = i/20
  4180. rng3.Transparency = 1/24
  4181. rng4.Transparency = i/26
  4182. wait()
  4183. end
  4184. wait()
  4185. rng:Destroy()
  4186. end)()
  4187. if Debounces.Shewt == true then
  4188. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4189. hit = ht.Parent
  4190. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4191. if HasntTouched(hit.Name) == true and deb == false then
  4192. deb = true
  4193. coroutine.wrap(function()
  4194. hit:FindFirstChild("Humanoid").PlatformStand = true
  4195. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4196. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  4197. end)()
  4198. table.insert(Touche, hit.Name)
  4199. deb = false
  4200. end
  4201. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4202. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4203. deb = true
  4204. coroutine.wrap(function()
  4205. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4206. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4207. wait(1)
  4208. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4209. end)()
  4210. table.insert(Touche, hit.Parent.Name)
  4211. deb = false
  4212. for i, v in pairs(Touche) do
  4213. print(v)
  4214. end
  4215. end
  4216. end
  4217. end)
  4218. end
  4219. for i = 0, 260, 8 do
  4220. bem.Size = Vector3.new(i, 2, 2)
  4221. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4222. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4223. bnd.Size = Vector3.new(1,1,1)
  4224. bndm.Scale = Vector3.new(8,8,8)
  4225. if i % 10 == 0 then
  4226. local newRng = rng2:Clone()
  4227. newRng.Parent = char
  4228. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4229. local newRngm = rngm2:clone()
  4230. newRngm.Parent=newRng
  4231. coroutine.wrap(function()
  4232. for i = 1, 10, 0.2 do
  4233. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4234. newRng.Transparency = i/10
  4235. wait()
  4236. end
  4237. wait()
  4238. newRng:Destroy()
  4239. end)()
  4240. end
  4241. wait()
  4242. end
  4243. wait()
  4244. Debounces.Shewt = false
  4245. bem:Destroy()
  4246. out:Destroy()
  4247. bnd:Destroy()
  4248. Debounces.Ready = false
  4249. for i, v in pairs(Touche) do
  4250. table.remove(Touche, i)
  4251. end
  4252. wait()
  4253. table.insert(Touche, char.Name)
  4254. Debounces.NoIdl = false
  4255. if Debounces.CanAttack == false then
  4256. Debounces.CanAttack = true
  4257. end
  4258. end
  4259. end
  4260. end)
  4261. ----------------------------------------------------
  4262. sidz = {"231917888", "231917845", "231917806"}
  4263. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4264. mouse.KeyDown:connect(function(key)
  4265. if key == "f" then
  4266. larm.BrickColor = BrickColor.new("Bright red")
  4267. rarm.BrickColor = BrickColor.new("Bright red")
  4268. if Debounces.CanAttack == true then
  4269. Debounces.CanAttack = false
  4270. Debounces.on = true
  4271. Debounces.NoIdl = true
  4272. for i = 1, 20 do
  4273. 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.2)
  4274. 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.2)
  4275. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4276. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4277. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4278. 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.2)
  4279. 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)
  4280. if Debounces.on == false then break end
  4281. rs:wait(6)
  4282. end
  4283. z = Instance.new("Sound",char)
  4284. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4285. z.Pitch = ptz[math.random(1,#ptz)]
  4286. z.Volume = 1
  4287. z1 = Instance.new("Sound",char)
  4288. z1.SoundId = z.SoundId
  4289. z1.Pitch = z.Pitch
  4290. z1.Volume = 1
  4291. z:Play()
  4292. z1:Play()
  4293. Stomp()
  4294. for i = 1, 20 do
  4295. 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.3)
  4296. 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.3)
  4297. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4298. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4299. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4300. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4301. 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)
  4302. if Debounces.on == false then break end
  4303. rs:wait(2.5)
  4304. end
  4305. if Debounces.CanAttack == false then
  4306. Debounces.CanAttack = true
  4307. Debounces.on = false
  4308. Debounces.NoIdl = false
  4309. larm.BrickColor = BrickColor.new("Really black")
  4310. rarm.BrickColor = BrickColor.new("Really black")
  4311. end
  4312. end
  4313. end
  4314. end)
  4315. ----------------------------------------------------
  4316. mouse.KeyDown:connect(function(key)
  4317. if key == "g" then
  4318. larm.BrickColor = BrickColor.new("Bright red")
  4319. rarm.BrickColor = BrickColor.new("Bright red")
  4320. if Debounces.CanAttack == true then
  4321. Debounces.CanAttack = false
  4322. Debounces.on = true
  4323. Debounces.NoIdl = true
  4324. chrg = lleg.Touched:connect(function(ht)
  4325. hit = ht.Parent
  4326. if ht and hit:IsA("Model") then
  4327. if hit:FindFirstChild("Humanoid") then
  4328. if hit.Name ~= p.Name then
  4329. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4330. Debounces.Slashed = true]]--
  4331. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4332. hit:FindFirstChild("Humanoid").PlatformStand = true
  4333. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4334. --Debounces.Slashed = false
  4335. --end
  4336. end
  4337. end
  4338. elseif ht and hit:IsA("Hat") then
  4339. if hit.Parent.Name ~= p.Name then
  4340. if hit.Parent:FindFirstChild("Humanoid") then
  4341. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4342. Debounces.Slashed = true]]--
  4343. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4344. hit:FindFirstChild("Humanoid").PlatformStand = true
  4345. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4346. --Debounces.Slashed = false
  4347. end
  4348. end
  4349. end
  4350. end)
  4351. for i = 1, 14 do
  4352. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  4353. 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.2)
  4354. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.2)
  4355. 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.2)
  4356. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  4357. 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.2)
  4358. 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)
  4359. if Debounces.on == false then break end
  4360. rs:wait(3)
  4361. end
  4362. charge()
  4363. z = Instance.new("Sound",char)
  4364. z.SoundId = "rbxassetid://200632875"
  4365. z.Volume = 1
  4366. z.Pitch = .8
  4367. z1 = Instance.new("Sound",char)
  4368. z1.SoundId = "rbxassetid://200632875"
  4369. z1.Volume = 1
  4370. z1.Pitch = .9
  4371. z:Play()
  4372. z1:Play()
  4373. wait(1)
  4374. z:Destroy()
  4375. z1:Destroy()
  4376. chrg:disconnect()
  4377. if Debounces.CanAttack == false then
  4378. Debounces.CanAttack = true
  4379. Debounces.on = false
  4380. Debounces.NoIdl = false
  4381. larm.BrickColor = BrickColor.new("Really black")
  4382. rarm.BrickColor = BrickColor.new("Really black")
  4383. end
  4384. end
  4385. end
  4386. end)
  4387. ----------------------------------------------------
  4388. pt = {0.7, 0.8, 0.9}
  4389. mouse.KeyDown:connect(function(key)
  4390. if key == "h" then
  4391. if Debounces.CanJoke == true then
  4392. Debounces.CanJoke = false
  4393. u = Instance.new("Sound")
  4394. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4395. u.Parent = char
  4396. u.Looped = false
  4397. u.Pitch = pt[math.random(1,#pt)]
  4398. u.Volume = 1
  4399. u2 = Instance.new("Sound")
  4400. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4401. u2.Parent = char
  4402. u2.Looped = false
  4403. u2.Pitch = u.Pitch
  4404. u2.Volume = 1
  4405. wait(.01)
  4406. u:Play()
  4407. u2:Play()
  4408. wait(6)
  4409. u:Destroy()
  4410. u2:Destroy()
  4411. if Debounces.CanJoke == false then
  4412. Debounces.CanJoke = true
  4413. end
  4414. end
  4415. end
  4416. end)
  4417. ----------------------------------------------------
  4418. mouse.KeyDown:connect(function(key)
  4419. if key == "j" then
  4420. if Debounces.CanJoke == true then
  4421. Debounces.CanJoke = false
  4422. z = Instance.new("Sound",char)
  4423. z.SoundId = "rbxassetid://135017755"
  4424. z.Pitch = .76
  4425. z.Volume = 1
  4426. wait()
  4427. z:Play()
  4428. wait(6)
  4429. z:Destroy()
  4430. if Debounces.CanJoke == false then
  4431. Debounces.CanJoke = true
  4432. end
  4433. end
  4434. end
  4435. end)
  4436. ----------------------------------------------------
  4437. mouse.KeyDown:connect(function(key)
  4438. if key == "k" then
  4439. if Debounces.CanJoke == true then
  4440. Debounces.CanJoke = false
  4441. z = Instance.new("Sound",char)
  4442. z.SoundId = "rbxassetid://135017578"
  4443. z.Pitch = .76
  4444. z.Volume = 1
  4445. wait()
  4446. z:Play()
  4447. wait(4)
  4448. z:Destroy()
  4449. if Debounces.CanJoke == false then
  4450. Debounces.CanJoke = true
  4451. end
  4452. end
  4453. end
  4454. end)
  4455. ----------------------------------------------------
  4456. mouse.KeyDown:connect(function(key)
  4457. if key == "x" then
  4458. if Debounces.CanAttack == true then
  4459. Debounces.CanAttack = false
  4460. Debounces.NoIdl = true
  4461. Debounces.on = true
  4462. Debounces.ks = true
  4463. for i = 1, 10 do
  4464. 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)
  4465. 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.2)
  4466. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4467. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4468. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  4469. 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.2)
  4470. 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)
  4471. if Debounces.on == false then break end
  4472. rs:wait(1)
  4473. end
  4474. z = Instance.new("Sound",hed)
  4475. z.SoundId = "rbxassetid://169445092"
  4476. z.Volume = 1
  4477. wait(0.1)
  4478. z:Play()
  4479. kik = rleg.Touched:connect(function(ht)
  4480. hit = ht.Parent
  4481. if ht and hit:IsA("Model") then
  4482. if hit:FindFirstChild("Humanoid") then
  4483. if hit.Name ~= p.Name then
  4484. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4485. Debounces.Slashed = true]]--
  4486. if Debounces.ks==true then
  4487. z = Instance.new("Sound",hed)
  4488. z.SoundId = "rbxassetid://169380525"
  4489. z.Volume = 1
  4490. z:Play()
  4491. Debounces.ks=false
  4492. end
  4493. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4494. hit:FindFirstChild("Humanoid").PlatformStand = true
  4495. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4496. --Debounces.Slashed = false
  4497. --end
  4498. end
  4499. end
  4500. elseif ht and hit:IsA("Hat") then
  4501. if hit.Parent.Name ~= p.Name then
  4502. if hit.Parent:FindFirstChild("Humanoid") then
  4503. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4504. Debounces.Slashed = true]]--
  4505. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4506. hit:FindFirstChild("Humanoid").PlatformStand = true
  4507. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4508. --Debounces.Slashed = false
  4509. --end
  4510. end
  4511. end
  4512. end
  4513. end)
  4514. for i = 1, 8 do
  4515. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.3)
  4516. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.3)
  4517. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4518. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4519. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.3)
  4520. 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.3)
  4521. 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)
  4522. if Debounces.on == false then break end
  4523. rs:wait(.7)
  4524. end
  4525. kik:disconnect()
  4526. if Debounces.CanAttack == false then
  4527. Debounces.CanAttack = true
  4528. Debounces.on = false
  4529. Debounces.NoIdl = false
  4530. end
  4531. end
  4532. end
  4533. end)
  4534. ----------------------------------------------------
  4535. mouse.KeyDown:connect(function(key)
  4536. if key == "c" then
  4537. if Debounces.CanAttack == true then
  4538. Debounces.CanAttack = false
  4539. Debounces.NoIdl = true
  4540. Debounces.on = true
  4541. SIDZ = {"231917744", "231917742"}
  4542. PTZ = {0.7, 0.8, 0.9, 1}
  4543. for i = 1, 20 do
  4544. wait()
  4545. for i,v in pairs(char.Absolution:children()) do
  4546. if v:IsA("Part") or v:IsA("WedgePart") then
  4547. v.Transparency = v.Transparency + 0.05
  4548. end
  4549. end
  4550. end
  4551. function FindNearestTorso(Position,Distance,SinglePlayer)
  4552. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4553. local List = {}
  4554. for i,v in pairs(workspace:GetChildren())do
  4555. if v:IsA("Model")then
  4556. if v:findFirstChild("Torso")then
  4557. if v ~= char then
  4558. if(v.Torso.Position -Position).magnitude <= Distance then
  4559. table.insert(List,v)
  4560. end
  4561. end
  4562. end
  4563. end
  4564. end
  4565. return List
  4566. end
  4567. GroundPound()
  4568. for i = 1, 11 do
  4569. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4570. 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.4)
  4571. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4572. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4573. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4574. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4575. 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)
  4576. if Debounces.on == false then break end
  4577. rs:wait(1.4)
  4578. end
  4579. GroundPound()
  4580. for i = 1, 11 do
  4581. 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.4)
  4582. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4583. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4584. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4585. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4586. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4587. 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)
  4588. if Debounces.on == false then break end
  4589. rs:wait(1.4)
  4590. end
  4591. GroundPound()
  4592. for i = 1, 11 do
  4593. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4594. 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.4)
  4595. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4596. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4597. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4598. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4599. 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)
  4600. if Debounces.on == false then break end
  4601. rs:wait(1.4)
  4602. end
  4603. GroundPound()
  4604. for i = 1, 11 do
  4605. 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.4)
  4606. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4607. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4608. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4609. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4610. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4611. 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)
  4612. if Debounces.on == false then break end
  4613. rs:wait(1.4)
  4614. end
  4615. GroundPound()
  4616. for i = 1, 11 do
  4617. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4618. 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.4)
  4619. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4620. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4621. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4622. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4623. 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)
  4624. if Debounces.on == false then break end
  4625. rs:wait(1.4)
  4626. end
  4627. GroundPound()
  4628. for i = 1, 11 do
  4629. 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.4)
  4630. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4631. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4632. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4633. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4634. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4635. 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)
  4636. if Debounces.on == false then break end
  4637. rs:wait(1.4)
  4638. end
  4639. for i = 1, 24 do
  4640. 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.2)
  4641. 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.2)
  4642. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4643. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4644. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4645. 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.2)
  4646. 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)
  4647. if Debounces.on == false then break end
  4648. rs:wait(3)
  4649. end
  4650. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4651. if v:FindFirstChild('Humanoid') then
  4652. v.Humanoid:TakeDamage(math.random(20,60))
  4653. v.Humanoid.PlatformStand = true
  4654. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4655. end
  4656. end
  4657. x = Instance.new("Sound",char)
  4658. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4659. x.Pitch = PTZ[math.random(1,#PTZ)]
  4660. x.Volume = 1
  4661. wait(0.1)
  4662. x:Play()
  4663. Crater(hed,20)
  4664. for i = 1, 20 do
  4665. 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)
  4666. 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)
  4667. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4668. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4669. 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)
  4670. 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)
  4671. 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)
  4672. if Debounces.on == false then break end
  4673. rs:wait(2)
  4674. end
  4675. if Debounces.CanAttack == false then
  4676. Debounces.CanAttack = true
  4677. Debounces.on = false
  4678. Debounces.NoIdl = false
  4679. for i = 1, 20 do
  4680. wait()
  4681. for i,v in pairs(char.Absolution:children()) do
  4682. if v:IsA("Part") or v:IsA("WedgePart") then
  4683. v.Transparency = v.Transparency - 0.05
  4684. end
  4685. end
  4686. end
  4687. end
  4688. end
  4689. end
  4690. end)
  4691. ----------------------------------------------------176349813
  4692. mouse.KeyDown:connect(function(key)
  4693. if key == "b" then
  4694. hum.WalkSpeed = 0.01
  4695. if Debounces.CanAttack == true then
  4696. Debounces.CanAttack = false
  4697. Debounces.NoIdl = true
  4698. Debounces.on = true
  4699. for i = 1, 30 do
  4700. 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.2)
  4701. 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.2)
  4702. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4703. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4704. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4705. 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.2)
  4706. 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)
  4707. if Debounces.on == false then break end
  4708. rs:wait(6)
  4709. end
  4710. v = Instance.new("Sound")
  4711. v.SoundId = "rbxassetid://181384451"
  4712. v.Parent = char
  4713. v.Looped = false
  4714. v.Pitch = .94
  4715. v.Volume = 1
  4716. wait(.01)
  4717. v:Play()
  4718.  
  4719. if Daytime == true then
  4720. Daytime = false
  4721. l.TimeOfDay = 24
  4722. else
  4723. Daytime = true
  4724. l.TimeOfDay = 12
  4725. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4726. end
  4727.  
  4728. local Shockwave = function()
  4729. local rng1 = Instance.new("Part", char)
  4730. rng1.Anchored = true
  4731. rng1.BrickColor = BrickColor.new("Really black")
  4732. rng1.CanCollide = false
  4733. rng1.FormFactor = 3
  4734. rng1.Name = "Ring"
  4735. rng1.Size = Vector3.new(1, 1, 1)
  4736. rng1.Transparency = 0.35
  4737. rng1.TopSurface = 0
  4738. rng1.BottomSurface = 0
  4739. local rngm1 = Instance.new("SpecialMesh", rng)
  4740. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4741. rngm1.Scale = Vector3.new(10, 10, 1)
  4742. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4743. local Wave = Instance.new("Part", game.Workspace--[[?]])
  4744. Wave.Name = "Shockwave"
  4745. Wave.BrickColor = BrickColor.new("Really black")
  4746. Wave.Size = Vector3.new(1, 1, 1)
  4747. Wave.Shape = "Ball"
  4748. Wave.CanCollide = false
  4749. Wave.Anchored = true
  4750. Wave.TopSurface = 0
  4751. Wave.BottomSurface = 0
  4752. Wave.Touched:connect(function(hit)
  4753. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4754. local Occlude = true
  4755. local NotOccludes = {
  4756. char.Name;
  4757. "Wings";
  4758. "Scythe";
  4759. "Thingy";
  4760. "Thingy2"; -- put all of the names in a table pls
  4761. }
  4762. for i,v in pairs(NotOccludes) do
  4763. if hit.Parent.Name == v then
  4764. Occlude = false
  4765. end
  4766. end
  4767. --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
  4768. if Occlude then
  4769. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4770. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4771. end
  4772. end
  4773. end)
  4774.  
  4775. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4776.  
  4777. coroutine.wrap(function()
  4778. for i = 1, 20, 0.2 do
  4779. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4780. rng1.Transparency = i/20
  4781. wait()
  4782. end
  4783. wait()
  4784. rng1:Destroy()
  4785. end)()
  4786.  
  4787. Delay(0, function()
  4788.  
  4789. if Daytime == false then
  4790. for i = 1, 50, 1 do
  4791. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4792. Wave.CFrame = char.Torso.CFrame
  4793. local t = i / 50
  4794. Wave.Transparency = t
  4795. wait()
  4796. end
  4797. else
  4798. for i = 1, 50, 1 do
  4799. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4800. Wave.CFrame = char.Torso.CFrame
  4801. local t = i / 50
  4802. Wave.Transparency = t
  4803. wait()
  4804. end
  4805. end
  4806. Wave:Destroy()
  4807. end)
  4808. Delay(0, function()
  4809. while wait() do
  4810. if Wave ~= nil then
  4811. Wave.CFrame = char.Torso.CFrame
  4812. else
  4813. break
  4814. end
  4815. end
  4816. end)
  4817. end
  4818. Shockwave()
  4819. for i = 1, 30 do
  4820. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
  4821. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  4822. 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.3)
  4823. 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.3)
  4824. 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)
  4825. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4826. if Debounces.on == false then break end
  4827. rs:wait()
  4828. end
  4829. wait(2.4)
  4830. Debounces.NoIdl = false
  4831. hum.WalkSpeed = 5
  4832. Debounces.on = false
  4833. wait()
  4834. if Debounces.CanAttack == false then
  4835. Debounces.CanAttack = true
  4836. v:Destroy()
  4837. end
  4838. end
  4839. end
  4840. end)
  4841. ----------------------------------------------------
  4842. mouse.KeyDown:connect(function(key)
  4843. if key == "l" then
  4844. for i = 1, 20 do
  4845. wait()
  4846. for i,v in pairs(char.Absolution:children()) do
  4847. if v:IsA("Part") or v:IsA("WedgePart") then
  4848. v.Transparency = v.Transparency + 0.05
  4849. end
  4850. end
  4851. end
  4852. if Debounces.CanAttack == true then
  4853. Debounces.CanAttack = false
  4854. Debounces.NoIdl = true
  4855. Debounces.on = true
  4856. bv = Instance.new("BodyVelocity",torso)
  4857. bv.maxForce = Vector3.new(0,200000,0)
  4858. bv.P = 100000
  4859. bv.velocity = Vector3.new(0,500,0)
  4860. wait(2)
  4861. bv:Destroy()
  4862. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4863. for i = 1, 20 do
  4864. 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)
  4865. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4866. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
  4867. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-40)), 0.3)
  4868. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4869. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4870. 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)
  4871. if Debounces.on == false then break end
  4872. wait()
  4873. end
  4874. for i = 1, 360, 20 do wait()
  4875. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4876. end
  4877. end
  4878. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4879. local ry,ht,ps=nil,nil,nil
  4880. while ht==nil do
  4881. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4882. wait()
  4883. end
  4884. z = Instance.new("Sound",char)
  4885. z.SoundId = "rbxassetid://245537790"
  4886. z.Pitch = 1
  4887. z.Volume = 1
  4888. wait(0.1)
  4889. z:Play()
  4890. local sp = Instance.new("Part", char)
  4891. sp.Name = "Energy"
  4892. sp.BrickColor = BrickColor.new("Really black")
  4893. sp.Size = Vector3.new(1, 1, 1)
  4894. sp.Shape = "Ball"
  4895. sp.CanCollide = false
  4896. sp.Anchored = true
  4897. sp.TopSurface = 0
  4898. sp.BottomSurface = 0
  4899. local spm = Instance.new("SpecialMesh",sp)
  4900. spm.MeshId = "rbxassetid://9982590"
  4901. spm.Scale = Vector3.new(3,3,3)
  4902. local sp2 = Instance.new("Part", char)
  4903. sp2.Name = "Energy2"
  4904. sp2.BrickColor = BrickColor.new("Really black")
  4905. sp2.Size = Vector3.new(1, 1, 1)
  4906. sp2.Shape = "Ball"
  4907. sp2.CanCollide = false
  4908. sp2.Anchored = true
  4909. sp2.TopSurface = 0
  4910. sp2.BottomSurface = 0
  4911. local spm2 = Instance.new("SpecialMesh",sp2)
  4912. spm2.MeshId = "rbxassetid://9982590"
  4913. spm2.Scale = Vector3.new(3,3,3)
  4914. sp.Touched:connect(function(hit)
  4915. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4916. local Occlude = true
  4917. local NotOccludes = {
  4918. char.Name;
  4919. "Wings";
  4920. "Scythe";
  4921. "Thingy";
  4922. "Thingy2"; -- put all of the names in a table pls
  4923. }
  4924. for i,v in pairs(NotOccludes) do
  4925. if hit.Parent.Name == v then
  4926. Occlude = false
  4927. end
  4928. end
  4929. --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
  4930. if Occlude then
  4931. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4932. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4933. end
  4934. end
  4935. end)
  4936. sp2.Touched:connect(function(hit)
  4937. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4938. local Occlude = true
  4939. local NotOccludes = {
  4940. char.Name;
  4941. "Wings";
  4942. "Scythe";
  4943. "Thingy";
  4944. "Thingy2"; -- put all of the names in a table pls
  4945. }
  4946. for i,v in pairs(NotOccludes) do
  4947. if hit.Parent.Name == v then
  4948. Occlude = false
  4949. end
  4950. end
  4951. --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
  4952. if Occlude then
  4953. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4954. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4955. end
  4956. end
  4957. end)
  4958. for i = 1, 100, 1 do
  4959. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4960. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4961. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4962. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4963. spm.Scale = sp.Size
  4964. spm2.Scale = sp2.Size
  4965. local t = i / 100
  4966. sp.Transparency = t
  4967. sp2.Transparency = t
  4968. wait()
  4969. end
  4970. sp:Destroy()
  4971. sp2:Destroy()
  4972. z:Destroy()
  4973. for i = 1, 20 do
  4974. wait()
  4975. for i,v in pairs(char.Absolution:children()) do
  4976. if v:IsA("Part") or v:IsA("WedgePart") then
  4977. v.Transparency = v.Transparency - 0.05
  4978. end
  4979. end
  4980. end
  4981. if Debounces.CanAttack == false then
  4982. Debounces.CanAttack = true
  4983. Debounces.NoIdl = false
  4984. Debounces.on = false
  4985. end
  4986. end
  4987. end
  4988. end)
  4989. ----------------------------------------------------
  4990. local orbt={}
  4991. local stlt={}
  4992. local chot={}
  4993. local cfxt={}
  4994. local pfxt={}
  4995. local cns=0
  4996. local cnOrb=nil
  4997. mouse.KeyDown:connect(function(key)
  4998. if key == "u" then
  4999. if Debounces.CanAttack == true then
  5000. Debounces.CanAttack = false
  5001. Debounces.NoIdl = true
  5002. Debounces.on = true
  5003. orbt={}
  5004. stlt={}
  5005. chot={}
  5006. cfxt={}
  5007. for i = 1, 20 do
  5008. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(30)), 0.2)
  5009. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(170),math.rad(-20),math.rad(-30)), 0.2)
  5010. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  5011. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5012. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0.4) * CFrame.Angles(math.rad(-20), math.rad(20), math.rad(-10)), 0.2)
  5013. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, -0.4) * CFrame.Angles(math.rad(20), math.rad(-10), math.rad(10)), 0.2)
  5014. 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)
  5015. if Debounces.on == false then end
  5016. rs:wait()
  5017. end
  5018. z = Instance.new("Sound",char)
  5019. z.SoundId = "rbxassetid://170053944"
  5020. z.Pitch = 1.07
  5021. z.Volume = 2
  5022. wait(0.1)
  5023. z:Play()
  5024. z2 = Instance.new("Sound",char)
  5025. z2.SoundId = "rbxassetid://489657591"
  5026. z2.Pitch = 2
  5027. z2.Volume = 2
  5028. wait(0.1)
  5029. z2:Play()
  5030. cnOrb=nwPrt(char,Vector3.new(10,10,10),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Institutional white")
  5031.  
  5032. local txt = Instance.new("BillboardGui", cnOrb)
  5033. txt.Adornee = cnOrb
  5034. txt.Name = "_status"
  5035. txt.Size = UDim2.new(2, 0, 1.2, 0)
  5036. txt.StudsOffset = Vector3.new(-9, 75, 0)
  5037. local text = Instance.new("TextLabel", txt)
  5038. text.Size = UDim2.new(10, 0, 7, 0)
  5039. text.FontSize = "Size24"
  5040. text.TextScaled = true
  5041. text.TextTransparency = 0
  5042. text.BackgroundTransparency = 1
  5043. text.TextTransparency = 0
  5044. text.TextStrokeTransparency = 0
  5045. text.Font = "SciFi"
  5046. text.TextStrokeColor3 = Color3.new(0,0,0)
  5047.  
  5048. v=Instance.new("Part")
  5049. v.Name = "ColorBrick"
  5050. v.Parent=cnOrb
  5051. v.FormFactor="Symmetric"
  5052. v.Anchored=true
  5053. v.CanCollide=false
  5054. v.BottomSurface="Smooth"
  5055. v.TopSurface="Smooth"
  5056. v.Size=Vector3.new(10,5,3)
  5057. v.Transparency=1
  5058. v.CFrame=char.Torso.CFrame
  5059. v.BrickColor=BrickColor.new(CV)
  5060. v.Transparency=1
  5061. text.TextColor3 = Color3.new(1,1,1)
  5062. v.Shape="Block"
  5063. text.Text = "Scuti"
  5064.  
  5065. debris:AddItem(cnOrb,50)
  5066. cnOrb.Mesh.MeshType=3
  5067. table.insert(orbt,cnOrb)
  5068. table.insert(stlt,cnOrb)
  5069. local nt=0
  5070. for i=0,5,0.02 do
  5071. nt=nt+1
  5072. cns=i
  5073. if nt>=2 then
  5074. nt=0
  5075. local cho=nwPrt(mod3,Vector3.new(20,20,20),cnOrb.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Institutional white")
  5076. debris:AddItem(cho,1)
  5077. cho.Mesh.MeshType=3
  5078. table.insert(chot,cho)
  5079. end
  5080. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  5081. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  5082. wait()
  5083. end
  5084. for i = 1, 14 do
  5085. 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.6)
  5086. if Debounces.on == false then end
  5087. rs:wait()
  5088. end
  5089. coroutine.wrap(function()
  5090. for i = 1, 20 do
  5091. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.45)
  5092. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.8,-.3)*CFrame.Angles(math.rad(70),math.rad(20),math.rad(50)), 0.6)
  5093. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  5094. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  5095. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, -0.4) * CFrame.Angles(math.rad(60), math.rad(20), math.rad(-10)), 0.5)
  5096. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0.4) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.5)
  5097. if Debounces.on == false then end
  5098. rs:wait()
  5099. end
  5100. end)()
  5101. wait(0.1)
  5102. stlt={}
  5103. local ry,ht,ps=newRay(root.CFrame*CFrame.new(0,0,-4),root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)*CFrame.new(0,0,-2),160,{char})
  5104. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  5105. local nt=0
  5106. for i=0,160,3 do
  5107. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  5108. nt=nt+1
  5109. if nt>=6 then
  5110. nt=0
  5111. local cfx=nwPrt(mod3,Vector3.new(10,10,10),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Institutional white")
  5112. cfx.Mesh.MeshId="rbxassetid://20329976"
  5113. cfx.Transparency=0.4
  5114. table.insert(cfxt,cfx)
  5115. debris:AddItem(cfx,1)
  5116. end
  5117. if (cnOrb.Position-ps).magnitude<6 then
  5118. break
  5119. end
  5120. wait()
  5121. end
  5122. orbt={}
  5123.  
  5124. for i=0,1,0.1 do
  5125. local cs=cnOrb.Mesh.Scale
  5126. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  5127. wait()
  5128. end
  5129. local ofx=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame,"Institutional white")
  5130. ofx.Transparency=0.5
  5131. ofx.Mesh.MeshType=3
  5132. ofx.Mesh.Scale=Vector3.new(30,30,30)
  5133. for _,v in pairs(game:service"Players":GetChildren()) do
  5134. pcall(function()
  5135. for _,c in pairs(v.Character:GetChildren()) do
  5136. if v~=p and c:IsA("Part") and (cnOrb.CFrame.p-c.CFrame.p).magnitude<60 and (cnOrb.CFrame.p-c.CFrame.p).magnitude>50 then
  5137. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  5138. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  5139. end
  5140. end
  5141. end)
  5142. end
  5143. for i=0,1,0.05 do
  5144. local cs=cnOrb.Mesh.Scale
  5145. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  5146. local ofs=ofx.Mesh.Scale
  5147. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  5148. ofx.Transparency=Tween(ofx.Transparency,1,i)
  5149. wait()
  5150. end
  5151. ofx:Destroy()
  5152. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  5153. local cnfx=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame,"Institutional white")
  5154. cnfx.Mesh.MeshType=3
  5155. cnOrb.Transparency=0.05
  5156. local cnr=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame,"Institutional white")
  5157. cnr.Mesh.MeshType=3
  5158. local rn1=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Institutional white")
  5159. rn1.Transparency=1
  5160. rn1.Mesh.MeshId="rbxassetid://3270017"
  5161. local rn2=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame,"Institutional white")
  5162. rn2.Transparency=1
  5163. rn2.Mesh.MeshId="rbxassetid://3270017"
  5164. local rn3=nwPrt(cnOrb,Vector3.new(100,100,100),cnOrb.CFrame*CFrame.Angles(math.rad(-90),0,0),"Institutional white")
  5165. rn3.Transparency=1
  5166. rn3.Mesh.MeshId="rbxassetid://3270017"
  5167. local rn4=nwPrt(cnOrb,Vector3.new(100,100,100),cnOrb.CFrame,"Institutional white")
  5168. rn4.Transparency=1
  5169. rn4.Mesh.MeshId="rbxassetid://3270017"
  5170. local rn5=nwPrt(cnOrb,Vector3.new(200,200,100),cnOrb.CFrame,"Institutional white")
  5171. rn5.Transparency=1
  5172. rn5.Mesh.MeshId="rbxassetid://3270017"
  5173. local rn6=nwPrt(cnOrb,Vector3.new(200,200,100),cnOrb.CFrame,"Institutional white")
  5174. rn6.Transparency=1
  5175. rn6.Mesh.MeshId="rbxassetid://3270017"
  5176. local nt=0
  5177. local cs=nil
  5178. z4 = Instance.new("Sound",char)
  5179. z4.SoundId = "rbxassetid://419447292"
  5180. z4.Pitch = 1
  5181. z4.Volume = 10
  5182. wait(0.1)
  5183. z4:Play()
  5184. z3 = Instance.new("Sound",char)
  5185. z3.SoundId = "rbxassetid://421328847"
  5186. z3.Pitch = 1
  5187. z3.Volume = 10
  5188. wait(0.1)
  5189. z3:Play()
  5190. for i=0,1,0.05 do
  5191. cs=cnOrb.Mesh.Scale
  5192. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  5193. local fs=cnfx.Mesh.Scale
  5194. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  5195. cnfx.Transparency=cnfx.Transparency+0.05
  5196. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  5197. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  5198. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  5199. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  5200. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  5201. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  5202. rn3.Mesh.Scale=Vector3.new(Tween(fs.X,1200,i),Tween(fs.Y,1200,i),Tween(fs.Z,600,i))
  5203. rn4.Mesh.Scale=Vector3.new(Tween(fs.X,1200,i),Tween(fs.Y,1200,i),Tween(fs.Z,600,i))
  5204. rn3.CFrame=rn3.CFrame*CFrame.Angles(math.rad(-10),math.rad(-6),math.rad(-3))
  5205. rn4.CFrame=rn4.CFrame*CFrame.Angles(math.rad(-10),math.rad(-6),math.rad(-3))
  5206. rn3.Transparency=Tween(rn1.Transparency,0.8,i)
  5207. rn4.Transparency=Tween(rn2.Transparency,0.8,i)
  5208. rn5.Transparency=Tween(rn2.Transparency,0.25,i)
  5209. rn5.CFrame=rn5.CFrame*CFrame.Angles(math.rad(-20),math.rad(-18),math.rad(-9))
  5210. rn5.Mesh.Scale=Vector3.new(Tween(fs.X,2400,i),Tween(fs.Y,2400,i),Tween(fs.Z,1200,i))
  5211. rn6.Transparency=Tween(rn2.Transparency,0.25,i)
  5212. rn6.CFrame=rn6.CFrame*CFrame.Angles(math.rad(20),math.rad(18),math.rad(9))
  5213. rn6.Mesh.Scale=Vector3.new(Tween(fs.X,2400,i),Tween(fs.Y,2400,i),Tween(fs.Z,1200,i))
  5214. local rs=cnr.Mesh.Scale
  5215. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  5216. nt=nt+1
  5217. if nt>=6 then
  5218. local pls={}
  5219. for _,v in pairs(game.Players:GetChildren()) do
  5220. table.insert(pls,v)
  5221. end
  5222. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5223. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Institutional white")
  5224. pffx.Mesh.MeshId="rbxassetid://20329976"
  5225. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  5226. debris:AddItem(pffx,2)
  5227. table.insert(pfxt,pffx)
  5228. nt=0
  5229. end
  5230. wait()
  5231. end
  5232. local int=0
  5233. coroutine.wrap(function()
  5234. for i=1,500 do
  5235. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5236. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5237. rn3.CFrame=rn3.CFrame*CFrame.Angles(math.rad(-10),math.rad(-5),math.rad(-5))
  5238. rn4.CFrame=rn4.CFrame*CFrame.Angles(math.rad(-10),math.rad(-5),math.rad(-5))
  5239. rn5.CFrame=rn5.CFrame*CFrame.Angles(math.rad(5),math.rad(5),math.rad(5))
  5240. rn6.CFrame=rn6.CFrame*CFrame.Angles(math.rad(-5),math.rad(-5),math.rad(-5))
  5241. nt=nt+1
  5242. int=int+1
  5243. local htd={p}
  5244. for _,v in pairs(game:service"Players":GetChildren()) do
  5245. pcall(function()
  5246. for _,c in pairs(v.Character:GetChildren()) do
  5247. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5248. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  5249. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  5250. table.insert(htd,v)
  5251. end
  5252. end
  5253. end)
  5254. end
  5255. htd={p}
  5256. if int>=6 then
  5257. for _,v in pairs(game:service"Players":GetChildren()) do
  5258. pcall(function()
  5259. for _,c in pairs(v.Character:GetChildren()) do
  5260. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5261. table.insert(htd,v)
  5262. local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Institutional white")
  5263. hfx.Mesh.Scale=Vector3.new(2,2,2)
  5264. hfx.Mesh.MeshType=3
  5265. debris:AddItem(hfx,2)
  5266. coroutine.wrap(function()
  5267. pcall(function()
  5268. for i=0,1,0.05 do
  5269. pcall(function()
  5270. local hs=hfx.Mesh.Scale
  5271. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5272. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5273. end)
  5274. wait()
  5275. end
  5276. hfx:Destroy()
  5277. end)
  5278. end)()
  5279. end
  5280. end
  5281. end)
  5282. end
  5283. int=0
  5284. end
  5285. if nt>=4 then
  5286. local pls={}
  5287. for _,v in pairs(game.Players:GetChildren()) do
  5288. table.insert(pls,v)
  5289. end
  5290. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5291. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Institutional white")
  5292. pffx.Transparency=0.4
  5293. pffx.Mesh.MeshId="rbxassetid://20329976"
  5294. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5295. debris:AddItem(pffx,2)
  5296. table.insert(pfxt,pffx)
  5297. nt=0
  5298. end
  5299. wait()
  5300. end
  5301. cnOrb:Destroy()
  5302. cnfx:Destroy()
  5303. for _,v in pairs(mod3:GetChildren()) do
  5304. v:Destroy()
  5305. end
  5306. orbt={}
  5307. stlt={}
  5308. chot={}
  5309. cfxt={}
  5310. pfxt={}
  5311. end)()
  5312. if Debounces.CanAttack == false then
  5313. Debounces.CanAttack = true
  5314. Debounces.NoIdl = false
  5315. Debounces.on = false
  5316. end
  5317. end
  5318. end
  5319. end)
  5320. ----------------------------------------------------
  5321. mouse.KeyDown:connect(function(key)
  5322. if key == "m" then
  5323. if Debounces.CanAttack == true then
  5324. Debounces.CanAttack = false
  5325. Debounces.on = true
  5326. Debounces.NoIdl = true
  5327. --[[x = Instance.new("Sound",char)
  5328. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5329. x.Looped = false
  5330. x.Pitch = 1.1
  5331. x.Volume = 1
  5332. x:Play()
  5333. x2 = Instance.new("Sound",char)
  5334. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5335. x2.Looped = false
  5336. x2.Pitch = .7
  5337. x2.Volume = 1
  5338. wait(.1)
  5339. x:Play()
  5340. x2:Play()
  5341. for i = 1, 20 do
  5342. 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)
  5343. 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)
  5344. 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)
  5345. 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)
  5346. 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)
  5347. 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)
  5348. 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)
  5349. if Debounces.on == false then break end
  5350. wait()
  5351. x:Destroy()
  5352. x2:Destroy()
  5353. end
  5354. wait(1)]]--
  5355. local rng = Instance.new("Part", char)
  5356. rng.Anchored = true
  5357. rng.BrickColor = BrickColor.new("Really black")
  5358. rng.CanCollide = false
  5359. rng.FormFactor = 3
  5360. rng.Name = "Ring"
  5361. rng.Size = Vector3.new(1, 1, 1)
  5362. rng.Transparency = 0.35
  5363. rng.TopSurface = 0
  5364. rng.BottomSurface = 0
  5365. rng.Position = torso.Position - Vector3.new(0,5,0)
  5366. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5367. local rngm = Instance.new("SpecialMesh", rng)
  5368. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5369. rngm.Scale = Vector3.new(1, 1, 2)
  5370. x = Instance.new("Sound",char)
  5371. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5372. x.Looped = false
  5373. x.Pitch = .7
  5374. x.Volume = 1
  5375. x:Play()
  5376. coroutine.wrap(function()
  5377. for i = 1, 60, 2 do
  5378. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5379. rng.Transparency = i/60
  5380. wait()
  5381. end
  5382. wait()
  5383. rng:Destroy()
  5384. end)()
  5385. hum.WalkSpeed = 100
  5386. BV = Instance.new("BodyVelocity", torso)
  5387. BV.maxForce = Vector3.new(0,200000,0)
  5388. BV.P = 240000
  5389. BV.velocity = Vector3.new(0,7000,0)
  5390. for i = 1, 20 do
  5391. 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)
  5392. 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)
  5393. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  5394. 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)
  5395. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5396. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5397. 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)
  5398. if Debounces.on == false then break end
  5399. wait()
  5400. end
  5401. x:Destroy()
  5402. BV:Destroy()
  5403. --[[for i = 1, 30 do
  5404. 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)
  5405. 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)
  5406. 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)
  5407. 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)
  5408. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5409. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  5410. if Debounces.on == false then break end
  5411. wait()
  5412. end]]--
  5413. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5414. for i = 1, 30 do
  5415. 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)
  5416. 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)
  5417. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-120)), 0.3)
  5418. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(120)), 0.3)
  5419. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  5420. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  5421. 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)
  5422. if Debounces.on == false then break end
  5423. wait()
  5424. end
  5425. end
  5426. Debounces.on = false
  5427. Debounces.NoIdl = false
  5428. local ry,ht,ps=nil,nil,nil
  5429. while ht==nil do
  5430. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5431. wait()
  5432. end
  5433. z = Instance.new("Sound",char)
  5434. z.SoundId = "rbxassetid://142070127"
  5435. z.Volume = 1
  5436. wait(.1)
  5437. z:Play()
  5438. Landing()
  5439. hum.WalkSpeed = 8
  5440. if Debounces.CanAttack == false then
  5441. Debounces.CanAttack = true
  5442. end
  5443. end
  5444. end
  5445. end)
  5446. ----------------------------------------------------
  5447. Grab = false
  5448. mouse.KeyDown:connect(function(key)
  5449. if key == "z" then
  5450. Debounces.on = true
  5451. Debounces.NoIdl = true
  5452. if Grab == false then
  5453. gp = nil
  5454. con1=larm.Touched:connect(function(hit) -- this is grab
  5455. ht = hit.Parent
  5456. hum1=ht:FindFirstChild('Humanoid')
  5457. if hum1 ~= nil then
  5458. hum1.PlatformStand=true
  5459. gp = ht
  5460. Grab = true
  5461. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5462. asd.Parent = larm
  5463. asd.Name = "asd"
  5464. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5465. con1:disconnect()
  5466. elseif hum1 ~= nil then
  5467. con1:disconnect()
  5468. wait() return
  5469. end
  5470. end)
  5471. for i = 1, 18 do
  5472. 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)
  5473. 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)
  5474. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5475. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5476. 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)
  5477. 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)
  5478. 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)
  5479. if Debounces.on == false then break end
  5480. wait()
  5481. end
  5482. con1:disconnect()
  5483. Debounces.on = false
  5484. Debounces.NoIdl = false
  5485. elseif Grab == true then
  5486. Grab = false
  5487. for i = 1, 20 do
  5488. 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)
  5489. 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)
  5490. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5491. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5492. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5493. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5494. 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)
  5495. if Debounces.on == false then end
  5496. wait()
  5497. end
  5498. if gp ~= nil then
  5499. for i,v in pairs(larm:GetChildren()) do
  5500. if v.Name == "asd" and v:IsA("Weld") then
  5501. v:Remove()
  5502. end
  5503. end
  5504. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  5505. bv.maxForce = Vector3.new(400000, 400000, 400000)
  5506. bv.P = 125000
  5507. bv.velocity = char.Head.CFrame.lookVector * 200
  5508. for i = 1, 12 do
  5509. 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)
  5510. if Debounces.on == false then end
  5511. wait()
  5512. end--
  5513. ht=nil
  5514. Spawn(function()
  5515. wait(0.5)
  5516. bv:Destroy()
  5517. end)
  5518. Debounces.on = false
  5519. Debounces.NoIdl = false
  5520. elseif ht == nil then wait()
  5521. Grab = false
  5522. Debounces.on = false
  5523. Debounces.NoIdl = false
  5524. end
  5525. end
  5526. end
  5527. end)
  5528. ----------------------------------------------------
  5529. mouse.KeyDown:connect(function(key)
  5530. if string.byte(key) == 52 then
  5531. char.Humanoid.WalkSpeed = 21
  5532. end
  5533. end)
  5534. mouse.KeyUp:connect(function(key)
  5535. if string.byte(key) == 52 then
  5536. char.Humanoid.WalkSpeed = 5
  5537. end
  5538. end)
  5539. ----------------------------------------------------
  5540. Change = false
  5541. mouse.KeyDown:connect(function(key)
  5542. if key == "n" then
  5543. if Change == false then
  5544. Change = true
  5545. stanceToggle = "Normal2"
  5546. elseif Change == true then
  5547. Change = false
  5548. stanceToggle = "Normal"
  5549. end
  5550. end
  5551. end)
  5552. ----------------------------------------------------
  5553. local animpose = "Idle"
  5554. local lastanimpose = "Idle"
  5555. local sine = 0
  5556. local change = 1
  5557. local val = 0
  5558. local ffing = false
  5559. local och = 0
  5560. ----------------------------------------------------
  5561. game:GetService("RunService").RenderStepped:connect(function()
  5562. --[[if char.Humanoid.Jump == true then
  5563. jump = true
  5564. else
  5565. jump = false
  5566. end]]
  5567. char.Humanoid.FreeFalling:connect(function(f)
  5568. if f then
  5569. ffing = true
  5570. else
  5571. ffing = false
  5572. end
  5573. end)
  5574. sine = sine + change
  5575. if jumpn == true then
  5576. animpose = "Jumping"
  5577. elseif ffing == true then
  5578. animpose = "Freefalling"
  5579. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5580. animpose = "Idle"
  5581. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5582. animpose = "Walking"
  5583. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5584. animpose = "Running"
  5585. end
  5586. if animpose ~= lastanimpose then
  5587. sine = 0
  5588. if Debounces.NoIdl == false then
  5589. if animpose == "Idle" then
  5590. for i = 1, 2 do
  5591. 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)
  5592. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  5593. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5594. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5595. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5596. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5597. 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)
  5598. end
  5599. elseif animpose == "Walking" then
  5600. for i = 1, 2 do
  5601. 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)
  5602. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5603. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  5604. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5605. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5606. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5607. 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)
  5608. end
  5609. elseif animpose == "Running" then
  5610. for i = 1, 2 do
  5611. 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)
  5612. 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)
  5613. 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)
  5614. 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)
  5615. 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)
  5616. 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)
  5617. 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)
  5618. end
  5619. rs:wait(2)
  5620. end
  5621. else
  5622. end
  5623. end
  5624. lastanimpose = animpose
  5625. if Debounces.NoIdl == false then
  5626. if animpose == "Idle" then
  5627. if stanceToggle == "Normal" then
  5628. change = 0.5
  5629. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  5630. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5631. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  5632. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5633. 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)
  5634. 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)
  5635. 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)
  5636. elseif stanceToggle == "Sitting" then
  5637. 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)
  5638. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(math.rad(-36+1*math.cos(sine/14)), math.rad(0), math.rad(-30)), 0.2)
  5639. 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)
  5640. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.8, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  5641. 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)
  5642. 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)
  5643. 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)
  5644. elseif stanceToggle == "Normal2" then
  5645. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(30+2*math.cos(sine/14)),math.rad(40),math.rad(40)), 0.2)
  5646. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5647. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(-40),0), 0.2)
  5648. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5649. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(-20), math.rad(-14)), 0.2)
  5650. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(10), math.rad(-30), math.rad(18)), 0.2)
  5651. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5652. end
  5653. elseif animpose == "Walking" then
  5654. if stanceToggle == "Normal" then
  5655. change = 1
  5656. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  5657. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  5658. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0-8*math.cos(sine/14)), math.rad(0)),0.2)
  5659. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), math.rad(0+8*math.cos(sine/14)), math.rad(0)), 0.2)
  5660. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + -math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5661. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5662. 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)
  5663. elseif stanceToggle == "Normal2" then
  5664. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), math.sin(sine/14)/2)*CFrame.Angles(-math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(20)), 0.2)
  5665. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(-20)), 0.2)
  5666. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  5667. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  5668. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  5669. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  5670. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5671. end
  5672. elseif animpose == "Running" then
  5673. change = 1
  5674. 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)
  5675. 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)
  5676. 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)
  5677. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+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)
  5678. 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)
  5679. 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)
  5680. 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)
  5681. end
  5682. end
  5683. och=och+1
  5684. for _,v in pairs(orbt) do
  5685. pcall(function()
  5686. v.Mesh.Scale=Vector3.new(cns+(0.2*math.cos(och/12)),cns+(0.2*math.cos(och/10)),cns+(0.2*math.cos(och/8)))
  5687. end)
  5688. end
  5689. for _,v in pairs(stlt) do
  5690. pcall(function()
  5691. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5692. end)
  5693. end
  5694. for _,v in pairs(chot) do
  5695. pcall(function()
  5696. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5697. v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
  5698. end)
  5699. end
  5700. for _,v in pairs(cfxt) do
  5701. pcall(function()
  5702. local vs=v.Mesh.Scale
  5703. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5704. v.Transparency=v.Transparency+0.05
  5705. end)
  5706. end
  5707. for _,v in pairs(pfxt) do
  5708. pcall(function()
  5709. local vs=v.Mesh.Scale
  5710. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5711. v.Transparency=v.Transparency+0.025
  5712. end)
  5713. end
  5714. end)
Add Comment
Please, Sign In to add comment