cortesjoren

zombie rush scriptaa

Jan 11th, 2019
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.54 KB | None | 0 0
  1. PLAYER = game.Players.LocalPlayer
  2. MOUSE = PLAYER:GetMouse()
  3. CC = game.Workspace.CurrentCamera
  4.  
  5. ENABLED = false
  6. ESP_ENABLED = false
  7. OC = false
  8. OC2 = false
  9.  
  10. _G.FREE_FOR_ALL = true
  11.  
  12. _G.BIND = 50
  13. _G.ESP_BIND = 52
  14. _G.CHANGE_AIM = 'q'
  15. OPENCLOSE = 'l'
  16. DESTROY = 'x'
  17. OPENCLOSE2 = 'p'
  18.  
  19. _G.AIM_AT = 'Head'
  20.  
  21. wait(1)
  22.  
  23. function GetNearestPlayerToMouse()
  24. local PLAYERS = {}
  25. local PLAYER_HOLD = {}
  26. local DISTANCES = {}
  27. for i, v in pairs(game.Workspace.Zombies:GetChildren()) do
  28. if v ~= PLAYER then
  29. table.insert(PLAYERS, v)
  30. end
  31. end
  32. for i, v in pairs(PLAYERS) do
  33. if _G.FREE_FOR_ALL == false then
  34. if v and (v) ~= nil and v.TeamColor ~= PLAYER.TeamColor then
  35. local AIM = v:FindFirstChild(_G.AIM_AT)
  36. if AIM ~= nil then
  37. local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
  38. local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
  39. local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  40. local DIFF = math.floor((POS - AIM.Position).magnitude)
  41. PLAYER_HOLD[v.Name .. i] = {}
  42. PLAYER_HOLD[v.Name .. i].dist = DISTANCE
  43. PLAYER_HOLD[v.Name .. i].plr = v
  44. PLAYER_HOLD[v.Name .. i].diff = DIFF
  45. table.insert(DISTANCES, DIFF)
  46. end
  47. end
  48. elseif _G.FREE_FOR_ALL == true then
  49. local AIM = v:FindFirstChild(_G.AIM_AT)
  50. if AIM ~= nil then
  51. local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
  52. local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
  53. local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  54. local DIFF = math.floor((POS - AIM.Position).magnitude)
  55. PLAYER_HOLD[v.Name .. i] = {}
  56. PLAYER_HOLD[v.Name .. i].dist = DISTANCE
  57. PLAYER_HOLD[v.Name .. i].plr = v
  58. PLAYER_HOLD[v.Name .. i].diff = DIFF
  59. table.insert(DISTANCES, DIFF)
  60. end
  61. end
  62. end
  63.  
  64. if unpack(DISTANCES) == nil then
  65. return false
  66. end
  67.  
  68. local L_DISTANCE = math.floor(math.min(unpack(DISTANCES)))
  69. if L_DISTANCE > 20 then
  70. return false
  71. end
  72.  
  73. for i, v in pairs(PLAYER_HOLD) do
  74. if v.diff == L_DISTANCE then
  75. return v.plr
  76. end
  77. end
  78. return false
  79. end
  80.  
  81. GUI_MAIN = Instance.new('ScreenGui', game.CoreGui)
  82. GUI_TARGET = Instance.new('TextLabel', GUI_MAIN)
  83. GUI_AIM_AT = Instance.new('TextLabel', GUI_MAIN)
  84. GUI_CREDITS = Instance.new('TextLabel', GUI_MAIN)
  85.  
  86. GUI_MAIN.Name = 'AIMBOT'
  87.  
  88. GUI_TARGET.Size = UDim2.new(0,200,0,30)
  89. GUI_TARGET.BackgroundTransparency = 1.5
  90. GUI_TARGET.BackgroundColor = BrickColor.new('Fossil')
  91. GUI_TARGET.BorderSizePixel = 0
  92. GUI_TARGET.Position = UDim2.new(0.5,-100,0,0)
  93. GUI_TARGET.Text = 'AIMBOT : Loaded, Press F9 for instructions!'
  94. GUI_TARGET.TextColor3 = Color3.new(1,1,1)
  95. GUI_TARGET.TextStrokeTransparency = 1
  96. GUI_TARGET.TextWrapped = true
  97. GUI_TARGET.FontSize = 'Size24'
  98. GUI_TARGET.Font = 'SourceSansBold'
  99. GUI_TARGET.TextScaled = true
  100.  
  101. GUI_CREDITS.Size = UDim2.new(0, 237, 0, 14)
  102. GUI_CREDITS.BackgroundTransparency = 1.5
  103. GUI_CREDITS.BackgroundColor = BrickColor.new('Fossil')
  104. GUI_CREDITS.BorderSizePixel = 0
  105. GUI_CREDITS.Position = UDim2.new(0.5,-110,0,60)
  106. GUI_CREDITS.Text = 'Gui and half of the script made by LAZ3R#3702'
  107. GUI_CREDITS.TextColor3 = Color3.new(1,1,1)
  108. GUI_CREDITS.TextStrokeTransparency = 1
  109. GUI_CREDITS.TextWrapped = true
  110. GUI_CREDITS.Font = 'SourceSansBold'
  111. GUI_CREDITS.TextSize = 14
  112. GUI_CREDITS.TextScaled = true
  113.  
  114. GUI_AIM_AT.Size = UDim2.new(0,200,0,20)
  115. GUI_AIM_AT.BackgroundTransparency = 1.5
  116. GUI_AIM_AT.BackgroundColor = BrickColor.new('Fossil')
  117. GUI_AIM_AT.BorderSizePixel = 0
  118. GUI_AIM_AT.Position = UDim2.new(0.5,-100,0,30)
  119. GUI_AIM_AT.Text = 'AIMING : HEAD'
  120. GUI_AIM_AT.TextColor3 = Color3.new(1,1,1)
  121. GUI_AIM_AT.TextStrokeTransparency = 1
  122. GUI_AIM_AT.TextWrapped = true
  123. GUI_AIM_AT.FontSize = 'Size18'
  124. GUI_AIM_AT.Font = 'SourceSansBold'
  125.  
  126.  
  127. local MoreStuff = Instance.new("ScreenGui")
  128. local MainMoreStuffFrame = Instance.new("Frame")
  129. local Title = Instance.new("TextLabel")
  130. local NoClip = Instance.new("TextButton")
  131. local BuyWeapon = Instance.new("TextButton")
  132. local SellWeapon = Instance.new("TextButton")
  133. local WeaponBox = Instance.new("TextBox")
  134. local PrintWeapons = Instance.new("TextButton")
  135. local ImageLabel = Instance.new("ImageLabel")
  136. local Title2 = Instance.new("TextLabel")
  137.  
  138. MoreStuff.Name = "MoreStuff"
  139. MoreStuff.Parent = game.CoreGui
  140.  
  141. MainMoreStuffFrame.Name = "MainMoreStuffFrame"
  142. MainMoreStuffFrame.Parent = MoreStuff
  143. MainMoreStuffFrame.BackgroundColor3 = Color3.new(0.168627, 0.168627, 0.168627)
  144. MainMoreStuffFrame.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  145. MainMoreStuffFrame.Position = UDim2.new(0.383317709, 0, 0.25390625, 0)
  146. MainMoreStuffFrame.Size = UDim2.new(0, 248, 0, 251)
  147. MainMoreStuffFrame.Active = true
  148. MainMoreStuffFrame.Draggable = true
  149. MainMoreStuffFrame.Visible = false
  150.  
  151. ImageLabel.Parent = GUI_MAIN
  152. ImageLabel.Active = true
  153. ImageLabel.BackgroundColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  154. ImageLabel.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  155. ImageLabel.Position = UDim2.new(0.380999029, 0, 0.455751002, 0)
  156. ImageLabel.Selectable = true
  157. ImageLabel.Size = UDim2.new(0, 242, 0, 47)
  158. ImageLabel.Image = "rbxassetid://51904933"
  159. ImageLabel.ImageColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  160. ImageLabel.Visible = false
  161.  
  162. Title2.Name = "Title2"
  163. Title2.Parent = ImageLabel
  164. Title2.Active = true
  165. Title2.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  166. Title2.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  167. Title2.Position = UDim2.new(-0.00386778777, 0, -0.00743590016, 0)
  168. Title2.Size = UDim2.new(0, 243, 0, 50)
  169. Title2.Font = Enum.Font.SourceSans
  170. Title2.Text = "The Owner has joined!"
  171. Title2.TextColor3 = Color3.new(1, 1, 1)
  172. Title2.TextScaled = true
  173. Title2.TextSize = 14
  174. Title2.TextWrapped = true
  175.  
  176.  
  177.  
  178. Title.Name = "Title"
  179. Title.Parent = MainMoreStuffFrame
  180. Title.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  181. Title.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  182. Title.Position = UDim2.new(0.000253200531, 0, -0.00107383728, 0)
  183. Title.Size = UDim2.new(0, 248, 0, 44)
  184. Title.Font = Enum.Font.SourceSans
  185. Title.Text = "More Stuff"
  186. Title.TextColor3 = Color3.new(1, 1, 1)
  187. Title.TextScaled = true
  188. Title.TextSize = 14
  189. Title.TextWrapped = true
  190.  
  191. NoClip.Name = "NoClip"
  192. NoClip.Parent = MainMoreStuffFrame
  193. NoClip.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  194. NoClip.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  195. NoClip.Position = UDim2.new(0.225806445, 0, 0.198674113, 0)
  196. NoClip.Size = UDim2.new(0, 134, 0, 47)
  197. NoClip.Modal = true
  198. NoClip.Selected = true
  199. NoClip.Font = Enum.Font.SourceSans
  200. NoClip.Text = "noclip : OFF"
  201. NoClip.TextColor3 = Color3.new(1, 1, 1)
  202. NoClip.TextScaled = true
  203. NoClip.TextSize = 14
  204. NoClip.TextWrapped = true
  205.  
  206. BuyWeapon.Name = "BuyWeapon"
  207. BuyWeapon.Parent = MainMoreStuffFrame
  208. BuyWeapon.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  209. BuyWeapon.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  210. BuyWeapon.Position = UDim2.new(0, 0, 0.589112282, 0)
  211. BuyWeapon.Size = UDim2.new(0, 101, 0, 47)
  212. BuyWeapon.Modal = true
  213. BuyWeapon.Selected = true
  214. BuyWeapon.Font = Enum.Font.SourceSans
  215. BuyWeapon.Text = "Buy weapon"
  216. BuyWeapon.TextColor3 = Color3.new(1, 1, 1)
  217. BuyWeapon.TextScaled = true
  218. BuyWeapon.TextSize = 14
  219. BuyWeapon.TextWrapped = true
  220.  
  221. SellWeapon.Name = "SellWeapon"
  222. SellWeapon.Parent = MainMoreStuffFrame
  223. SellWeapon.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  224. SellWeapon.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  225. SellWeapon.Position = UDim2.new(0.592741907, 0, 0.589112282, 0)
  226. SellWeapon.Size = UDim2.new(0, 101, 0, 47)
  227. SellWeapon.Modal = true
  228. SellWeapon.Selected = true
  229. SellWeapon.Font = Enum.Font.SourceSans
  230. SellWeapon.Text = "Sell weapon"
  231. SellWeapon.TextColor3 = Color3.new(1, 1, 1)
  232. SellWeapon.TextScaled = true
  233. SellWeapon.TextSize = 14
  234. SellWeapon.TextWrapped = true
  235.  
  236. WeaponBox.Name = "WeaponBox"
  237. WeaponBox.Parent = MainMoreStuffFrame
  238. WeaponBox.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  239. WeaponBox.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  240. WeaponBox.Position = UDim2.new(0.0927419364, 0, 0.800796807, 0)
  241. WeaponBox.Size = UDim2.new(0, 200, 0, 50)
  242. WeaponBox.Font = Enum.Font.SourceSans
  243. WeaponBox.Text = "Weapon name"
  244. WeaponBox.TextColor3 = Color3.new(1, 1, 1)
  245. WeaponBox.TextSize = 14
  246.  
  247. PrintWeapons.Name = "PrintWeapons"
  248. PrintWeapons.Parent = MainMoreStuffFrame
  249. PrintWeapons.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  250. PrintWeapons.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  251. PrintWeapons.Position = UDim2.new(0.27822578, 0, 0.449670076, 0)
  252. PrintWeapons.Size = UDim2.new(0, 107, 0, 26)
  253. PrintWeapons.Modal = true
  254. PrintWeapons.Selected = true
  255. PrintWeapons.Font = Enum.Font.SourceSans
  256. PrintWeapons.Text = "Print and sort weapons"
  257. PrintWeapons.TextColor3 = Color3.new(1, 1, 1)
  258. PrintWeapons.TextScaled = true
  259. PrintWeapons.TextSize = 14
  260. PrintWeapons.TextWrapped = true
  261.  
  262.  
  263. local TRACK = false
  264.  
  265. function CREATE(BASE, TEAM)
  266. local ESP_MAIN = Instance.new('BillboardGui', PLAYER.PlayerGui)
  267. local ESP_DOT = Instance.new('Frame', ESP_MAIN)
  268. local ESP_NAME = Instance.new('TextLabel', ESP_MAIN)
  269.  
  270. ESP_MAIN.Name = 'ESP'
  271. ESP_MAIN.Adornee = BASE
  272. ESP_MAIN.AlwaysOnTop = true
  273. ESP_MAIN.ExtentsOffset = Vector3.new(0, 1, 0)
  274. ESP_MAIN.Size = UDim2.new(0, 5, 0, 5)
  275.  
  276. ESP_DOT.Name = 'DOT'
  277. ESP_DOT.BackgroundColor = BrickColor.new('Bright red')
  278. ESP_DOT.BackgroundTransparency = 0.3
  279. ESP_DOT.BorderSizePixel = 0
  280. ESP_DOT.Position = UDim2.new(-0.5, 0, -0.5, 0)
  281. ESP_DOT.Size = UDim2.new(2, 0, 2, 0)
  282. ESP_DOT.Visible = true
  283. ESP_DOT.ZIndex = 10
  284.  
  285. ESP_NAME.Name = 'NAME'
  286. ESP_NAME.BackgroundColor3 = Color3.new(255, 255, 255)
  287. ESP_NAME.BackgroundTransparency = 1
  288. ESP_NAME.BorderSizePixel = 0
  289. ESP_NAME.Position = UDim2.new(0, 0, 0, -40)
  290. ESP_NAME.Size = UDim2.new(1, 0, 10, 0)
  291. ESP_NAME.Visible = true
  292. ESP_NAME.ZIndex = 10
  293. ESP_NAME.Font = 'ArialBold'
  294. ESP_NAME.FontSize = 'Size14'
  295. ESP_NAME.Text = BASE.Parent.Name:upper()
  296. ESP_NAME.TextColor = BrickColor.new('Bright red')
  297. end
  298.  
  299. function CLEAR()
  300. for _,v in pairs(PLAYER.PlayerGui:children()) do
  301. if v.Name == 'ESP' and v:IsA('BillboardGui') then
  302. v:Destroy()
  303. end
  304. end
  305. end
  306.  
  307. function FIND()
  308. CLEAR()
  309. TRACK = true
  310. spawn(function()
  311. while wait() do
  312. if TRACK then
  313. CLEAR()
  314. for i,v in pairs(game.Workspace.Zombies:GetChildren()) do
  315. if v and v:FindFirstChild('Head') then
  316. if _G.FREE_FOR_ALL == false then
  317. if v.TeamColor ~= PLAYER.TeamColor then
  318. if v:FindFirstChild('Head') then
  319. CREATE(v.Head, true)
  320. end
  321. end
  322. else
  323. if v:FindFirstChild('Head') then
  324. CREATE(v.Head, true)
  325. end
  326. end
  327. end
  328. end
  329. end
  330. end
  331. wait(1)
  332. end)
  333. end
  334.  
  335. MOUSE.KeyDown:connect(function(KEY)
  336. KEY = KEY:lower():byte()
  337. if KEY == _G.BIND then
  338. ENABLED = true
  339. end
  340. end)
  341.  
  342. print("--------------------")
  343. print("Instructions :")
  344. print("NOTE : u may get a lot of lag spikes if u are using free exploit like sk8r, jjsploit etc")
  345. print("NOTE : Aimbot is already enabled automatically, there is no hotkey!!")
  346. print("NOTE : Sometimes the keybinds don't work so please rejoin if this happens.")
  347. print("Press Q to change Aim")
  348. print("Press L to open/close the main gui")
  349. print("Press P to open/close the more stuff gui")
  350. print("Press X to delete the gui")
  351. print("Press left alt for esp ;)")
  352. print("Once Zombies have spawned, hold left ctrl and it will aim at them!")
  353. print("All set? Alright, have fun!")
  354. print("Made By LAZ3R#3702")
  355. print("--------------------")
  356.  
  357. local Players = game:GetService("Players")
  358.  
  359. Players.PlayerAdded:Connect(function(player)
  360. if player.Name == 'unicorndiy34' then
  361. Title2.Text = "The owner has joined!"
  362. ImageLabel.Visible = true
  363. wait(2)
  364. ImageLabel.Visible = false
  365. end
  366. end)
  367.  
  368. Players.PlayerAdded:Connect(function(player)
  369. if player.Name == 'iolo53435343' then
  370. Title2.Text = "The owner's friend has joined!"
  371. ImageLabel.Visible = true
  372. wait(2)
  373. ImageLabel.Visible = false
  374. end
  375. end)
  376.  
  377. BuyWeapon.MouseButton1Click:connect(function()
  378. game.ReplicatedStorage.RemoteEvents.BuyWeapon:FireServer(WeaponBox.Text)
  379. end)
  380.  
  381. SellWeapon.MouseButton1Click:connect(function()
  382. game.ReplicatedStorage.RemoteEvents.SellWeapon:FireServer(WeaponBox.Text)
  383. end)
  384.  
  385. PrintWeapons.MouseButton1Click:connect(function()
  386. warn("--OVERKILL PACK--")
  387. print("Dynamite")
  388. print("M203")
  389. print("USAS-12")
  390. print("PSG1")
  391. print("M60")
  392. warn("--PIRATES VS NINJAS PACK--")
  393. print("Flintlock Pistol")
  394. print("Shuriken")
  395. print("Blunderbuss")
  396. print("Crossbow")
  397. print("Cutlass")
  398. warn("--BBQ PACK--")
  399. print("Flare Gun")
  400. print("Fire Axe")
  401. print("Sawed-off Shotgun")
  402. print("Flamethrower")
  403. print("Vector")
  404. warn("--Demolitions PACK--")
  405. print("C4")
  406. print("Python")
  407. print("Sledgehammer")
  408. print("CAR-15")
  409. print("RG-6")
  410. warn("--CLASSIC PACK--")
  411. print("SMG")
  412. print("Sword")
  413. print("Shotgun")
  414. print("Sniper Rifle")
  415. print("Rocket Launcher")
  416. warn("--SWAT PACK--")
  417. print("USP")
  418. print("Stun Grenade")
  419. print("Gas Grenade")
  420. print("MP5")
  421. print("R870")
  422. warn("--NON PACK--")
  423. print("Baseball Bat")
  424. print("AUG")
  425. print("DMR")
  426. print("Flintlock Rifle")
  427. print("M4")
  428. print("M1 Garand")
  429. print("AK-47")
  430. print("Luger")
  431. print("Pistol")
  432. print("Revolver")
  433. print("Stakeout")
  434. print("Sterling")
  435. print("Thompson")
  436. print("Trench Gun")
  437. print("Laser Rifle")
  438. print("Sentry Gun")
  439. print("AA-12")
  440. print("Double Barreled Shotgun")
  441. print("Intervention")
  442. print("Laser Pistol")
  443. print("M16")
  444. print("Minigun")
  445. print("M249")
  446. print("Chainsaw")
  447. print("UMP45")
  448. print("Grenade")
  449. print("Zombie Bait")
  450. print("Molotov")
  451. print("Landmine")
  452. print("M82")
  453. print("Laser Minigun")
  454. print("M93R")
  455. print("Military Axe")
  456. print("First Aid Kit")
  457. print("RPK")
  458. print("Katana")
  459. print("Energy Rifle")
  460. print("M1014")
  461. print("Energy Sword")
  462. print("Laser SMG")
  463. print("Laser Shotgun")
  464. print("M79")
  465. print("RPG-7")
  466. print("P90")
  467. print("Desert Eagle")
  468. print("Micro Uzi")
  469. print("SCAR-H")
  470. print("Energy Drink")
  471. print("Gas Can")
  472. print("Snowball")
  473. print("M24")
  474.  
  475. end)
  476.  
  477. NoClip.MouseButton1Click:connect(function()
  478. if NoClip.Text == "noclip : OFF" then
  479. NOCLIPP = true
  480. NoClip.Text = "noclip : ON"
  481. Stepped = game:GetService("RunService").Stepped:Connect(function()
  482. if not NOCLIPP == false then
  483. for a, b in pairs(Workspace:GetChildren()) do
  484. if b.Name == PLAYER.Name then
  485. for i, v in pairs(Workspace[PLAYER.Name]:GetChildren()) do
  486. if v:IsA("BasePart") then
  487. v.CanCollide = false
  488. end end end end
  489. else
  490. Stepped:Disconnect()
  491. end
  492. end)
  493. elseif NoClip.Text == "noclip : ON" then
  494. NOCLIPP = false
  495. NoClip.Text = "noclip : OFF"
  496. end
  497. end)
  498.  
  499.  
  500.  
  501. MOUSE.KeyDown:connect(function(KEY)
  502. if KEY == OPENCLOSE then
  503. if GUI_TARGET.Visible == true and GUI_AIM_AT.Visible == true and GUI_CREDITS.Visible == true then
  504. OC = false
  505. GUI_TARGET.Visible = false
  506. GUI_AIM_AT.Visible = false
  507. GUI_CREDITS.Visible = false
  508. else if GUI_TARGET.Visible == false and GUI_AIM_AT.Visible == false and GUI_CREDITS.Visible == false then
  509. OC = true
  510. GUI_TARGET.Visible = true
  511. GUI_AIM_AT.Visible = true
  512. GUI_CREDITS.Visible = true
  513. end
  514. end
  515. end
  516. end)
  517.  
  518. MOUSE.KeyDown:connect(function(KEY)
  519. if KEY == OPENCLOSE2 then
  520. if MainMoreStuffFrame.Visible == true then
  521. OC2 = false
  522. MainMoreStuffFrame.Visible = false
  523. Title.Visible = false
  524. NoClip.Visible = false
  525. WeaponBox.Visible = false
  526. PrintWeapons.Visible = false
  527. SellWeapon.Visible = false
  528. BuyWeapon.Visible = false
  529. else if MainMoreStuffFrame.Visible == false then
  530. OC2 = true
  531. MainMoreStuffFrame.Visible = true
  532. Title.Visible = true
  533. NoClip.Visible = true
  534. WeaponBox.Visible = true
  535. PrintWeapons.Visible = true
  536. SellWeapon.Visible = true
  537. BuyWeapon.Visible = true
  538. end
  539. end
  540. end
  541. end)
  542.  
  543. MOUSE.KeyDown:connect(function(KEY)
  544. if KEY == DESTROY then
  545. game.CoreGui:FindFirstChild("AIMBOT"):Destroy()
  546. game.CoreGui:FindFirstChild("MoreStuff"):Destroy()
  547. end
  548. end)
  549.  
  550. MOUSE.KeyUp:connect(function(KEY)
  551. KEY = KEY:lower():byte()
  552. if KEY == _G.BIND then
  553. ENABLED = false
  554. end
  555. end)
  556.  
  557. MOUSE.KeyDown:connect(function(KEY)
  558. KEY = KEY:lower():byte()
  559. if KEY == _G.ESP_BIND then
  560. if ESP_ENABLED == false then
  561. FIND()
  562. ESP_ENABLED = true
  563. print('ESP : ON')
  564. elseif ESP_ENABLED == true then
  565. wait()
  566. CLEAR()
  567. TRACK = false
  568. ESP_ENABLED = true
  569. print('ESP : OFF')
  570. end
  571. end
  572. end)
  573.  
  574. MOUSE.KeyDown:connect(function(KEY)
  575. if KEY == _G.CHANGE_AIM then
  576. if _G.AIM_AT == 'Head' then
  577. _G.AIM_AT = 'Torso'
  578. GUI_AIM_AT.Text = 'AIMING : TORSO'
  579. elseif _G.AIM_AT == 'Torso' then
  580. _G.AIM_AT = 'Head'
  581. GUI_AIM_AT.Text = 'AIMING : HEAD'
  582. end
  583. end
  584. end)
  585.  
  586.  
  587. game:GetService('RunService').RenderStepped:connect(function()
  588. if ENABLED then
  589. local TARGET = GetNearestPlayerToMouse()
  590. if (TARGET ~= false) then
  591. local AIM = TARGET:FindFirstChild(_G.AIM_AT)
  592. if AIM then
  593. CC.CoordinateFrame = CFrame.new(CC.CoordinateFrame.p, AIM.CFrame.p)
  594. end
  595. GUI_TARGET.Text = 'AIMBOT : ON'
  596. else
  597. GUI_TARGET.Text = 'AIMBOT : OFF'
  598. end
  599. end
  600. end)
  601.  
  602. repeat
  603. wait()
  604. if ESP_ENABLED == true then
  605. FIND()
  606. end
  607. until ESP_ENABLED == false
  608. wait()
  609. _G.FREE_FOR_ALL = true
  610. _G.BIND = 50 -- LEFT CTRL
  611. _G.ESP_BIND = 52 -- LEFT ALT
Add Comment
Please, Sign In to add comment