Advertisement
Velkon

topkek.lua

Jun 19th, 2015
667
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.68 KB | None | 0 0
  1. /*
  2. __ __ _ _ ______ _ _
  3. \ \ / / | | | |/ / __ \| \ | |
  4. \ \ / /__| | | ' / | | | \| |
  5. \ \/ / _ \ | | <| | | | . ` | File stealer 2015 :D
  6. \ / __/ |____| . \ |__| | |\ |
  7. \/ \___|______|_|\_\____/|_| \_|
  8.  
  9.  
  10. -=-=-=-INFO-=-==-
  11.  
  12. File Name: lua/topkek.lua (2924490998)
  13. Date Received: 19/06/2015 (19:21:29)
  14. Current PlayerName: ♫ Mr_Saw ♫
  15. Player SteamID: STEAM_0:1:66184896
  16. Player URL: http://steamcommunity.com/profiles/76561198092635521/
  17. Player IP: -snip-
  18.  
  19. -=-=-=INFO CLOSED-=-=-
  20. - Stolen by Velkon :D
  21. */
  22.  
  23. --___________ ____ __._______________ __. _________ .__ __ --
  24. --\__ ___/___ ______ | |/ _|\_ _____/ |/ _| / _____/ ___________|__|______/ |_ ______--
  25. -- | | / _ \\____ \| < | __)_| < \_____ \_/ ___\_ __ \ \____ \ __\/ ___/--
  26. -- | |( <_> ) |_> > | \ | \ | \ / \ \___| | \/ | |_> > | \___ \ --
  27. -- |____| \____/| __/|____|__ \/_______ /____|__ \ /_______ /\___ >__| |__| __/|__| /____ >--
  28. -- |__| \/ \/ \/ \/ \/ |__| \/ --
  29.  
  30.  
  31. -- things to add/do
  32. -- add rage aimbot
  33. -- add normal aimbot (may not be in release)
  34.  
  35.  
  36.  
  37.  
  38.  
  39. -- Some basic shit
  40.  
  41. -- colors
  42. red = Color(255,0,0,255);
  43. black = Color(0,0,0,255);
  44. green = Color(0,255,0,255);
  45. white = Color(255,255,255,255);
  46. blue = Color(0,0,255,255);
  47. cyan = Color(0,255,255,255);
  48. pink = Color(255,0,255,255);
  49. blue = Color(0,0,255,255);
  50. grey = Color(100,100,100,255);
  51. gold = Color(255,228,0,255);
  52. lblue = Color(155,205,248);
  53. lgreen = Color(174,255,0);
  54. iceblue = Color(116,187,251,255);
  55. local rcc = RunConsoleCommand;
  56. local ply = LocalPlayer()
  57.  
  58.  
  59. -- shitty one time Wallhack
  60. function K_DrawWallhack()
  61. hook.Add( "PreDrawHalos", "KillerWallhack", function()
  62. halo.Add( player.GetAll(), red, 0, 0, 2, true, true )
  63. halo.Add( ents.FindByClass( "prop_physics" ), green, 0, 0, 2, true, true )
  64. halo.Add( ents.FindByClass( "npc_*" ), blue, 0, 0, 2, true, true )
  65. halo.Add( ents.FindByClass( "sent_*" ), gold, 0, 0, 2, true, true )
  66. halo.Add( ents.FindByClass( "gmod_*" ), gold, 0, 0, 2, true, true )
  67. end )
  68. end
  69. concommand.Add("k_drawwallhack",K_DrawWallhack)
  70.  
  71. -- Bunnyhop
  72. function BH()
  73. if LocalPlayer():IsOnGround() and input.IsKeyDown( KEY_SPACE ) then
  74. RunConsoleCommand("+jump")
  75. else
  76. RunConsoleCommand("-jump")
  77. end
  78. end
  79.  
  80. concommand.Add("K_+bhop", function()
  81. hook.Add("Think", "KBHop", BH)
  82. end)
  83.  
  84. concommand.Add("K_-bhop", function()
  85. hook.Remove("Think", "KBHop")
  86. LocalPlayer():ConCommand("-jump")
  87. end)
  88.  
  89.  
  90.  
  91.  
  92. -- Rainbow Physgun (Clientside only)
  93.  
  94. local Num = 0
  95. CreateConVar("K_physgunchangespeed", 100, 8,"Changes the speed that the physgun changes color, Default is 100")
  96. local function rainbow()
  97. Num = Num + 1
  98. if Num >= GetConVarNumber("K_physgunchangespeed") then -- this is the speed of the change
  99. LocalPlayer():SetWeaponColor(Vector(math.Rand(0,255),math.Rand(0,255),math.Rand(0,255)))
  100. Num = 0
  101. end
  102. end
  103.  
  104. local function rainbowhookadd()
  105.  
  106. hook.Add("Think","Testing",rainbow)
  107. end
  108. concommand.Add("K_+rainbow",rainbowhookadd)
  109.  
  110. local function rainbowhookremove()
  111. Num = 0
  112. hook.Remove("Think","Testing")
  113. end
  114. concommand.Add("K_-rainbow",rainbowhookremove)
  115.  
  116. -- flashlight spam
  117.  
  118. local function flashlightSpam()
  119. if input.IsKeyDown(KEY_H) then
  120. LocalPlayer():ConCommand("impulse 100")
  121. end
  122. end
  123.  
  124.  
  125. local function fsadd()
  126. print("Hold H to spam")
  127. chat.AddText( Color( 0, 255, 0), "Hold H to spam")
  128. hook.Add("Think","fs",flashlightSpam)
  129. end
  130. concommand.Add("K_+flashlightspam",fsadd)
  131. local function fsremove()
  132. hook.Remove("Think","fs")
  133. end
  134. concommand.Add("K_-flashlightspam",fsremove)
  135.  
  136.  
  137. -- Aimbots
  138.  
  139. -- "realistic" aimbot
  140. function aimbotRealistic()
  141. if LocalPlayer():GetEyeTraceNoCursor().Entity:IsNPC() or LocalPlayer():GetEyeTraceNoCursor().Entity:IsPlayer() then
  142. target = LocalPlayer():GetEyeTraceNoCursor().Entity
  143. aimbone = LocalPlayer():GetEyeTraceNoCursor().Entity:LookupBone("ValveBiped.Bip01_Head1")
  144. targetheadpos,targetheadang = LocalPlayer():GetEyeTraceNoCursor().Entity:GetBonePosition(aimbone)
  145. LocalPlayer():SetEyeAngles((targetheadpos - LocalPlayer():GetShootPos()):Angle())
  146. if GetConVarNumber("K_aimbot_autofire") == 1 then
  147. rcc("+attack")
  148. end
  149. else
  150. if GetConVarNumber("K_aimbot_autofire") == 1 then
  151. rcc("-attack")
  152. end
  153. end
  154. end
  155.  
  156. function realisticEnable()
  157. hook.Add("Think","realistic",aimbotRealistic)
  158. end
  159. function realisticDisable()
  160. hook.Remove("Think","realistic")
  161. end
  162. concommand.Add("K_aimbot_+realistic",realisticEnable)
  163. concommand.Add("K_aimbot_-realistic",realisticDisable)
  164.  
  165. CreateConVar("K_aimbot_autofire",0)
  166.  
  167.  
  168.  
  169.  
  170. -- no recoil (inspired by ponyhack)
  171. function makenorecoil()
  172. local weapon = LocalPlayer():GetActiveWeapon()
  173. if !IsValid(weapon) then
  174. return
  175. end
  176. if weapon.Primary then
  177. weapon.Primary.Recoil = 0
  178. weapon.Primary.KickUp = 0
  179. weapon.Primary.KickDown = 0
  180. weapon.Primary.KickHorizontal = 0
  181. end
  182. end
  183.  
  184.  
  185. function nrenable()
  186. hook.Add("Think","nr",makenorecoil)
  187. end
  188. function nrdisable()
  189. hook.Remove("Think","nr")
  190. end
  191. concommand.Add("K_+norecoil",nrenable)
  192. concommand.Add("K_-norecoil",nrdisable)
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200. -- chams (Credit to project-dead)
  201. local function MESPCheck(v)
  202. if v:Alive() == true && v:Health() ~= 0 && v:Health() >= 0 && v ~= LocalPlayer() && LocalPlayer():Alive() then
  203. return true
  204. else
  205. return false
  206. end
  207. end
  208. hook.Add("HUDPaint", "chams", function()
  209. for k,v in pairs(player.GetAll()) do
  210. if GetConVarNumber("K_chams") == 1 then
  211. if MESPCheck(v) then
  212. cam.Start3D(EyePos(), EyeAngles())
  213. v:SetMaterial("models/debug/debugwhite")
  214. v:SetColor(Color(20, 71, 244, 255))
  215. render.MaterialOverride("models/debug/debugwhite")
  216. render.SuppressEngineLighting( false )
  217. render.SetBlend( 0.3 )
  218. render.SetColorModulation( 0, 1, 0 )
  219. v:DrawModel()
  220. if GetConVarNumber("dead_chams_wire") >= 1 then
  221. v:SetMaterial("models/wireframe")
  222. render.MaterialOverride("models/wireframe")
  223. v:DrawModel()
  224. end
  225. cam.End3D()
  226. end
  227. end
  228. end
  229. end)
  230. CreateConVar("K_chams",0)
  231.  
  232. -- chat spammer
  233. spamwords={
  234. "FUCK THIS SERVER",
  235. "THIS SERVER HAS BEEN HAXORED",
  236. "FUCK",
  237. "SHIT",
  238. "PISS",
  239. "CUNT",
  240. "FUCKING NAZI",
  241. "9 FUCKING 11",
  242. "GET CANCER",
  243. "THIS SERVER SUCKS FUCKING DICK",
  244. "FUCK YOU",
  245. "WWW MPGH COM",
  246. "THIS SERVER CAN SUCK MY DICK"
  247. }
  248. function chatspam()
  249. rand = math.random(0,11)
  250. rcc("say" ,spamwords[rand])
  251. end
  252.  
  253. function csenable()
  254. hook.Add("Think","cs",chatspam)
  255. end
  256. function csdisable()
  257. hook.Remove("Think","cs")
  258. end
  259. concommand.Add("K_+chatspam",csenable)
  260. concommand.Add("K_-chatspam",csdisable)
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. --propspammers
  269. -- spam explosive barrels
  270. function explosivespam()
  271. rcc("prop_physics_create","/props_c17/oildrum001_explosive.mdl")
  272. end
  273. function explosivespamenable()
  274. hook.Add("Think","es",explosivespam)
  275. end
  276. function explosivespamdisable()
  277. hook.Remove("Think","es")
  278. end
  279. concommand.Add("K_spam_+explosives",explosivespamenable)
  280. concommand.Add("K_spam_-explosives",explosivespamdisable)
  281.  
  282. --propspam
  283.  
  284. function propspam()
  285. rcc("prop_physics_create","props_phx/construct/metal_wire1x1x2.mdl")
  286. end
  287. function propspamenable()
  288. hook.Add("Think","ps",propspam)
  289. end
  290. function propspamdisable()
  291. hook.Remove("Think","ps")
  292. end
  293. concommand.Add("K_spam_+propspam",propspamenable)
  294. concommand.Add("K_spam_-propspam",propspamdisable)
  295.  
  296. -- 360 noscope
  297.  
  298.  
  299. function Final()
  300. targetheadpos,targetheadang = target:GetBonePosition(aimbone)
  301. LocalPlayer():SetEyeAngles((targetheadpos - LocalPlayer():GetShootPos()):Angle())
  302. timer.Create("6",0.0001,1,function() LocalPlayer():ConCommand("+attack") end)
  303. timer.Create("7",0.1,1,function() LocalPlayer():ConCommand("-attack") end)
  304. end
  305.  
  306. function two()
  307. LocalPlayer():ConCommand("-jump")
  308. timer.Create("1",0.1,1,function() LocalPlayer():SetEyeAngles(LocalPlayer():EyeAngles() + Angle(0,90,0) ) end)
  309. timer.Create("2",0.2,1,function() LocalPlayer():SetEyeAngles(LocalPlayer():EyeAngles() + Angle(0,90,0)) end)
  310. timer.Create("3",0.3,1,function() LocalPlayer():SetEyeAngles(LocalPlayer():EyeAngles() + Angle(0,90,0)) end)
  311. timer.Create("4",0.4,1,function() LocalPlayer():SetEyeAngles(LocalPlayer():EyeAngles() + Angle(0,90,0)) end)
  312. timer.Create("5",0.5,1,Final)
  313. end
  314.  
  315. function one()
  316. if LocalPlayer():GetEyeTraceNoCursor().Entity:IsNPC() or LocalPlayer():GetEyeTraceNoCursor().Entity:IsPlayer() then
  317. target = LocalPlayer():GetEyeTraceNoCursor().Entity
  318. aimbone = LocalPlayer():GetEyeTraceNoCursor().Entity:LookupBone("ValveBiped.Bip01_Head1")
  319. targetheadpos,targetheadang = LocalPlayer():GetEyeTraceNoCursor().Entity:GetBonePosition(aimbone)
  320. LocalPlayer():SetEyeAngles((targetheadpos - LocalPlayer():GetShootPos()):Angle())
  321. LocalPlayer():ConCommand("+jump")
  322. timer.Create("1",0.2,1,two)
  323. else
  324. print("You are not currently looking at a player/npc")
  325. end
  326. end
  327.  
  328.  
  329. concommand.Add("K_noscope",one)
  330.  
  331.  
  332.  
  333. -- derma shit (for menu)
  334. function newmenu()
  335. local DButton17
  336. local DButton16
  337. local DLabel8
  338. local DButton15
  339. local DButton14
  340. local DButton13
  341. local DLabel7
  342. local DButton12
  343. local DLabel6
  344. local DButton11
  345. local DButton10
  346. local DButton9
  347. local DButton8
  348. local DButton7
  349. local DButton6
  350. local DLabel5
  351. local DLabel4
  352. local DButton4
  353. local DLabel3
  354. local DLabel2
  355. local DLabel1
  356. local DButton3
  357. local DButton2
  358. local DButton1
  359. local DCheckBox1
  360. local DFrame1
  361.  
  362. DFrame1 = vgui.Create('DFrame')
  363. --DFrame1:SetSize(520, 360)
  364. DFrame1:SetSize(650, 500)
  365. --DFrame1:SetPos(ScrW()/2,ScrH()/2)
  366. DFrame1:SetTitle('TopKEK Scripts')
  367. DFrame1:SetSizable(true)
  368. DFrame1:SetDeleteOnClose(false)
  369. DFrame1.Paint = function( self, w, h )
  370. draw.RoundedBox( 0, 0, 0, w, h, Color( 20, 20, 20, 255 ) )
  371. end
  372. DFrame1:MakePopup()
  373.  
  374.  
  375. DButton17 = vgui.Create('DButton')
  376. DButton17:SetParent(DFrame1)
  377. DButton17:SetSize(140, 13)
  378. --DButton17:SetPos(440, 410)
  379. DButton17:SetPos(420, 410)
  380. DButton17:SetText('Planned Features')
  381. DButton17.Paint = function( self, w, h )
  382. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  383. end
  384. DButton17.DoClick = function()
  385. chat.AddText( Color( 0, 255, 0), "Upcoming features:")
  386. chat.AddText( Color( 0, 255, 0), "RAGE Aimbot")
  387. chat.AddText( Color( 0, 255, 0), "Murder and TTT testers")
  388. chat.AddText( Color( 0, 255, 0), "Normal Aimbot")
  389. end
  390.  
  391. DButton16 = vgui.Create('DButton')
  392. DButton16:SetParent(DFrame1)
  393. DButton16:SetSize(140, 20)
  394. DButton16:SetPos(250, 340)
  395. DButton16:SetText('Disable Flashlight Spam')
  396. DButton16.Paint = function( self, w, h )
  397. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  398. end
  399. DButton16.DoClick = function()
  400. rcc("K_-flashlightspam")
  401. end
  402.  
  403. DLabel8 = vgui.Create('DLabel')
  404. DLabel8:SetParent(DFrame1)
  405. DLabel8:SetPos(290, 290)
  406. DLabel8:SetText('Flashlight Spam')
  407. DLabel8:SizeToContents()
  408.  
  409. DButton15 = vgui.Create('DButton')
  410. DButton15:SetParent(DFrame1)
  411. DButton15:SetSize(140, 20)
  412. DButton15:SetPos(250, 310)
  413. DButton15:SetText('Enable Flashlight Spam')
  414. DButton15.Paint = function( self, w, h )
  415. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  416. end
  417. DButton15.DoClick = function()
  418. rcc("K_+flashlightspam")
  419. end
  420.  
  421. DButton14 = vgui.Create('DButton')
  422. DButton14:SetParent(DFrame1)
  423. DButton14:SetSize(140, 20)
  424. DButton14:SetPos(250, 260)
  425. DButton14:SetText('Disable No Recoil')
  426. DButton14.Paint = function( self, w, h )
  427. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  428. end
  429. DButton14.DoClick = function()
  430. rcc("K_-norecoil")
  431. end
  432.  
  433. DButton13 = vgui.Create('DButton')
  434. DButton13:SetParent(DFrame1)
  435. DButton13:SetSize(140, 20)
  436. DButton13:SetPos(250, 230)
  437. DButton13:SetText('Enable No Recoil')
  438. DButton13.Paint = function( self, w, h )
  439. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  440. end
  441. DButton13.DoClick = function()
  442. rcc("K_+norecoil")
  443. end
  444.  
  445. DLabel7 = vgui.Create('DLabel')
  446. DLabel7:SetParent(DFrame1)
  447. DLabel7:SetPos(300, 210)
  448. DLabel7:SetText('No Recoil')
  449. DLabel7:SizeToContents()
  450.  
  451. DButton12 = vgui.Create('DButton')
  452. DButton12:SetParent(DFrame1)
  453. DButton12:SetSize(140, 20)
  454. DButton12:SetPos(250, 170)
  455. DButton12:SetText('Disable Chat Spam')
  456. DButton12.Paint = function( self, w, h )
  457. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  458. end
  459. DButton12.DoClick = function()
  460. rcc("K_-chatspam")
  461. end
  462.  
  463. DLabel6 = vgui.Create('DLabel')
  464. DLabel6:SetParent(DFrame1)
  465. DLabel6:SetPos(300, 110)
  466. DLabel6:SetText('Chat Spam')
  467. DLabel6:SizeToContents()
  468.  
  469. DButton11 = vgui.Create('DButton')
  470. DButton11:SetParent(DFrame1)
  471. DButton11:SetSize(140, 20)
  472. DButton11:SetPos(250, 140)
  473. DButton11:SetText('Enable Chat Spam')
  474. DButton11.Paint = function( self, w, h )
  475. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  476. end
  477. DButton11.DoClick = function()
  478. rcc("K_+chatspam")
  479. end
  480.  
  481. DButton10 = vgui.Create('DButton')
  482. DButton10:SetParent(DFrame1)
  483. DButton10:SetSize(140, 20)
  484. DButton10:SetPos(80, 280)
  485. DButton10:SetText('Disable Bhop')
  486. DButton10.Paint = function( self, w, h )
  487. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  488. end
  489. DButton10.DoClick = function()
  490. rcc("K_-bhop")
  491. end
  492.  
  493. DButton9 = vgui.Create('DButton')
  494. DButton9:SetParent(DFrame1)
  495. DButton9:SetSize(140, 20)
  496. DButton9:SetPos(80, 420)
  497. DButton9:SetText('Disable Explosive Spam')
  498. DButton9.Paint = function( self, w, h )
  499. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  500. end
  501. DButton9.DoClick = function()
  502. rcc("K_spam_-explosives")
  503. end
  504.  
  505. DButton8 = vgui.Create('DButton')
  506. DButton8:SetParent(DFrame1)
  507. DButton8:SetSize(140, 20)
  508. DButton8:SetPos(80, 390)
  509. DButton8:SetText('Enable Explosive Spam')
  510. DButton8.Paint = function( self, w, h )
  511. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  512. end
  513. DButton8.DoClick = function()
  514. rcc("K_spam_+explosives")
  515. end
  516.  
  517. DButton7 = vgui.Create('DButton')
  518. DButton7:SetParent(DFrame1)
  519. DButton7:SetSize(140, 20)
  520. DButton7:SetPos(80, 360)
  521. DButton7:SetText('Disable Prop Spam')
  522. DButton7.Paint = function( self, w, h )
  523. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  524. end
  525. DButton7.DoClick = function()
  526. rcc("K_spam_-propspam")
  527. end
  528.  
  529. DButton6 = vgui.Create('DButton')
  530. DButton6:SetParent(DFrame1)
  531. DButton6:SetSize(140, 20)
  532. DButton6:SetPos(80, 330)
  533. DButton6:SetText('Enable Prop Spam')
  534. DButton6.Paint = function( self, w, h )
  535. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  536. end
  537. DButton6.DoClick = function()
  538. rcc("K_spam_+propspam")
  539. end
  540.  
  541. DLabel5 = vgui.Create('DLabel')
  542. DLabel5:SetParent(DFrame1)
  543. DLabel5:SetPos(120, 310)
  544. DLabel5:SetText('Prop Spam')
  545. DLabel5:SizeToContents()
  546.  
  547. DLabel4 = vgui.Create('DLabel')
  548. DLabel4:SetParent(DFrame1)
  549. DLabel4:SetPos(470, 320)
  550. DLabel4:SetText('Misc')
  551. DLabel4:SizeToContents()
  552.  
  553. DButton4 = vgui.Create('DButton')
  554. DButton4:SetParent(DFrame1)
  555. DButton4:SetSize(140, 20)
  556. DButton4:SetPos(80, 250)
  557. DButton4:SetText('Enable Bhop')
  558. DButton4.Paint = function( self, w, h )
  559. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  560. end
  561. DButton4.DoClick = function()
  562. rcc("K_+bhop")
  563. end
  564.  
  565. DLabel3 = vgui.Create('DLabel')
  566. DLabel3:SetParent(DFrame1)
  567. DLabel3:SetPos(130, 230)
  568. DLabel3:SetText('Bhop')
  569. DLabel3:SizeToContents()
  570.  
  571. DLabel2 = vgui.Create('DLabel')
  572. DLabel2:SetParent(DFrame1)
  573. DLabel2:SetPos(130, 110)
  574. DLabel2:SetText('Wallhack')
  575. DLabel2:SizeToContents()
  576.  
  577. DLabel1 = vgui.Create('DLabel')
  578. DLabel1:SetParent(DFrame1)
  579. DLabel1:SetPos(470, 110)
  580. DLabel1:SetText('Aimbot')
  581. DLabel1:SizeToContents()
  582.  
  583. DButton3 = vgui.Create('DButton')
  584. DButton3:SetParent(DFrame1)
  585. DButton3:SetSize(140, 20)
  586. DButton3:SetPos(80, 140)
  587. DButton3:SetText('Draw Simple Wallhack')
  588. DButton3.Paint = function( self, w, h )
  589. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  590. end
  591. DButton3.DoClick = function()
  592. rcc("k_drawwallhack")
  593. end
  594.  
  595.  
  596. DButton1 = vgui.Create('DButton')
  597. DButton1:SetParent(DFrame1)
  598. DButton1:SetSize(140, 20)
  599. DButton1:SetPos(420, 130)
  600. DButton1:SetText('Enable Realistic Aimbot')
  601. DButton1.Paint = function( self, w, h )
  602. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  603. end
  604. DButton1.DoClick = function()
  605. rcc("K_aimbot_+realistic")
  606. end
  607.  
  608. DButton2 = vgui.Create('DButton')
  609. DButton2:SetParent(DFrame1)
  610. DButton2:SetSize(140, 20)
  611. DButton2:SetPos(420, 160)
  612. DButton2:SetText('Disable Realistic Aimbot')
  613. DButton2.Paint = function( self, w, h )
  614. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  615. end
  616. DButton2.DoClick = function()
  617. rcc("K_aimbot_-realistic")
  618. end
  619.  
  620.  
  621. DButton20 = vgui.Create('DButton')
  622. DButton20:SetParent(DFrame1)
  623. DButton20:SetSize(140, 20)
  624. DButton20:SetPos(420, 350)
  625. DButton20:SetText('Enable Rainbow Physgun')
  626. DButton20.Paint = function( self, w, h )
  627. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  628. end
  629. DButton20.DoClick = function()
  630. rcc("K_+rainbow")
  631. end
  632.  
  633. DButton21 = vgui.Create('DButton')
  634. DButton21:SetParent(DFrame1)
  635. DButton21:SetSize(140, 20)
  636. DButton21:SetPos(420, 380)
  637. DButton21:SetText('Disable Rainbow Physgun')
  638. DButton21.Paint = function( self, w, h )
  639. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  640. end
  641. DButton21.DoClick = function()
  642. rcc("K_-rainbow")
  643. end
  644.  
  645.  
  646.  
  647. DButton30 = vgui.Create('DButton')
  648. DButton30:SetParent(DFrame1)
  649. DButton30:SetSize(140, 20)
  650. DButton30:SetPos(80, 170)
  651. DButton30:SetText('Enable Chams')
  652. DButton30.Paint = function( self, w, h )
  653. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  654. end
  655. DButton30.DoClick = function()
  656. rcc("K_chams",1)
  657. end
  658.  
  659.  
  660. DButton31 = vgui.Create('DButton')
  661. DButton31:SetParent(DFrame1)
  662. DButton31:SetSize(140, 20)
  663. DButton31:SetPos(80, 200)
  664. DButton31:SetText('Disable Chams')
  665. DButton31.Paint = function( self, w, h )
  666. draw.RoundedBox(0, 0, 0, w, h, Color(0,180, 255, 250) )
  667. end
  668. DButton31.DoClick = function()
  669. rcc("K_chams",0)
  670. end
  671.  
  672. local checkbox30 = vgui.Create( "DCheckBoxLabel", DermaPanel )
  673. checkbox30:SetParent(DFrame1)
  674. checkbox30:SetPos(420, 190)
  675. checkbox30:SetText( "Aimbot AutoFire" )
  676. checkbox30:SetConVar( "K_aimbot_autofire" )
  677. checkbox30:SetValue( 0 )
  678. checkbox30:SizeToContents()
  679.  
  680.  
  681.  
  682. end
  683. concommand.Add("K_menu",newmenu)
  684.  
  685.  
  686.  
  687.  
  688. chat.AddText( pink, "TopKEK Scripts Loaded")
  689. chat.AddText( gold, "This server shall fall to you")
  690. --rcc("K_+rainbow")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement