Advertisement
Aquafinur

final stand script roblox

Nov 27th, 2018
7,086
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.84 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.  
  136. MoreStuff.Name = "MoreStuff"
  137. MoreStuff.Parent = game.CoreGui
  138.  
  139. MainMoreStuffFrame.Name = "MainMoreStuffFrame"
  140. MainMoreStuffFrame.Parent = MoreStuff
  141. MainMoreStuffFrame.BackgroundColor3 = Color3.new(0.168627, 0.168627, 0.168627)
  142. MainMoreStuffFrame.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  143. MainMoreStuffFrame.Position = UDim2.new(0.383317709, 0, 0.25390625, 0)
  144. MainMoreStuffFrame.Size = UDim2.new(0, 248, 0, 251)
  145. MainMoreStuffFrame.Active = true
  146. MainMoreStuffFrame.Draggable = true
  147. MainMoreStuffFrame.Visible = false
  148.  
  149. Title.Name = "Title"
  150. Title.Parent = MainMoreStuffFrame
  151. Title.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  152. Title.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  153. Title.Position = UDim2.new(0.000253200531, 0, -0.00107383728, 0)
  154. Title.Size = UDim2.new(0, 248, 0, 44)
  155. Title.Font = Enum.Font.SourceSans
  156. Title.Text = "More Stuff"
  157. Title.TextColor3 = Color3.new(1, 1, 1)
  158. Title.TextScaled = true
  159. Title.TextSize = 14
  160. Title.TextWrapped = true
  161.  
  162. NoClip.Name = "NoClip"
  163. NoClip.Parent = MainMoreStuffFrame
  164. NoClip.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  165. NoClip.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  166. NoClip.Position = UDim2.new(0.225806445, 0, 0.198674113, 0)
  167. NoClip.Size = UDim2.new(0, 134, 0, 47)
  168. NoClip.Modal = true
  169. NoClip.Selected = true
  170. NoClip.Font = Enum.Font.SourceSans
  171. NoClip.Text = "noclip : OFF"
  172. NoClip.TextColor3 = Color3.new(1, 1, 1)
  173. NoClip.TextScaled = true
  174. NoClip.TextSize = 14
  175. NoClip.TextWrapped = true
  176.  
  177. BuyWeapon.Name = "BuyWeapon"
  178. BuyWeapon.Parent = MainMoreStuffFrame
  179. BuyWeapon.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  180. BuyWeapon.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  181. BuyWeapon.Position = UDim2.new(0, 0, 0.589112282, 0)
  182. BuyWeapon.Size = UDim2.new(0, 101, 0, 47)
  183. BuyWeapon.Modal = true
  184. BuyWeapon.Selected = true
  185. BuyWeapon.Font = Enum.Font.SourceSans
  186. BuyWeapon.Text = "Buy weapon"
  187. BuyWeapon.TextColor3 = Color3.new(1, 1, 1)
  188. BuyWeapon.TextScaled = true
  189. BuyWeapon.TextSize = 14
  190. BuyWeapon.TextWrapped = true
  191.  
  192. SellWeapon.Name = "SellWeapon"
  193. SellWeapon.Parent = MainMoreStuffFrame
  194. SellWeapon.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  195. SellWeapon.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  196. SellWeapon.Position = UDim2.new(0.592741907, 0, 0.589112282, 0)
  197. SellWeapon.Size = UDim2.new(0, 101, 0, 47)
  198. SellWeapon.Modal = true
  199. SellWeapon.Selected = true
  200. SellWeapon.Font = Enum.Font.SourceSans
  201. SellWeapon.Text = "Sell weapon"
  202. SellWeapon.TextColor3 = Color3.new(1, 1, 1)
  203. SellWeapon.TextScaled = true
  204. SellWeapon.TextSize = 14
  205. SellWeapon.TextWrapped = true
  206.  
  207. WeaponBox.Name = "WeaponBox"
  208. WeaponBox.Parent = MainMoreStuffFrame
  209. WeaponBox.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  210. WeaponBox.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  211. WeaponBox.Position = UDim2.new(0.0927419364, 0, 0.800796807, 0)
  212. WeaponBox.Size = UDim2.new(0, 200, 0, 50)
  213. WeaponBox.Font = Enum.Font.SourceSans
  214. WeaponBox.Text = "Weapon name"
  215. WeaponBox.TextColor3 = Color3.new(1, 1, 1)
  216. WeaponBox.TextSize = 14
  217.  
  218. PrintWeapons.Name = "PrintWeapons"
  219. PrintWeapons.Parent = MainMoreStuffFrame
  220. PrintWeapons.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  221. PrintWeapons.BorderColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  222. PrintWeapons.Position = UDim2.new(0.27822578, 0, 0.449670076, 0)
  223. PrintWeapons.Size = UDim2.new(0, 107, 0, 26)
  224. PrintWeapons.Modal = true
  225. PrintWeapons.Selected = true
  226. PrintWeapons.Font = Enum.Font.SourceSans
  227. PrintWeapons.Text = "Print and sort weapons"
  228. PrintWeapons.TextColor3 = Color3.new(1, 1, 1)
  229. PrintWeapons.TextScaled = true
  230. PrintWeapons.TextSize = 14
  231. PrintWeapons.TextWrapped = true
  232.  
  233.  
  234. local TRACK = false
  235.  
  236. function CREATE(BASE, TEAM)
  237.     local ESP_MAIN                   = Instance.new('BillboardGui', PLAYER.PlayerGui)
  238.     local ESP_DOT                    = Instance.new('Frame', ESP_MAIN)
  239.     local ESP_NAME                   = Instance.new('TextLabel', ESP_MAIN)
  240.    
  241.     ESP_MAIN.Name                    = 'ESP'
  242.     ESP_MAIN.Adornee                 = BASE
  243.     ESP_MAIN.AlwaysOnTop             = true
  244.     ESP_MAIN.ExtentsOffset           = Vector3.new(0, 1, 0)
  245.     ESP_MAIN.Size                    = UDim2.new(0, 5, 0, 5)
  246.    
  247.     ESP_DOT.Name                     = 'DOT'
  248.     ESP_DOT.BackgroundColor          = BrickColor.new('Bright red')
  249.     ESP_DOT.BackgroundTransparency   = 0.3
  250.     ESP_DOT.BorderSizePixel          = 0
  251.     ESP_DOT.Position                 = UDim2.new(-0.5, 0, -0.5, 0)
  252.     ESP_DOT.Size                     = UDim2.new(2, 0, 2, 0)
  253.     ESP_DOT.Visible                  = true
  254.     ESP_DOT.ZIndex                   = 10
  255.    
  256.     ESP_NAME.Name                    = 'NAME'
  257.     ESP_NAME.BackgroundColor3        = Color3.new(255, 255, 255)
  258.     ESP_NAME.BackgroundTransparency  = 1
  259.     ESP_NAME.BorderSizePixel         = 0
  260.     ESP_NAME.Position                = UDim2.new(0, 0, 0, -40)
  261.     ESP_NAME.Size                    = UDim2.new(1, 0, 10, 0)
  262.     ESP_NAME.Visible                 = true
  263.     ESP_NAME.ZIndex                  = 10
  264.     ESP_NAME.Font                    = 'ArialBold'
  265.     ESP_NAME.FontSize                = 'Size14'
  266.     ESP_NAME.Text                    = BASE.Parent.Name:upper()
  267.     ESP_NAME.TextColor               = BrickColor.new('Bright red')
  268. end
  269.  
  270. function CLEAR()
  271.     for _,v in pairs(PLAYER.PlayerGui:children()) do
  272.         if v.Name == 'ESP' and v:IsA('BillboardGui') then
  273.             v:Destroy()
  274.         end
  275.     end
  276. end
  277.  
  278. function FIND()
  279.     CLEAR()
  280.     TRACK = true
  281.     spawn(function()
  282.         while wait() do
  283.             if TRACK then
  284.                 CLEAR()
  285.                 for i,v in pairs(game.Workspace.Zombies:GetChildren()) do
  286.                     if v and v:FindFirstChild('Head') then
  287.                         if _G.FREE_FOR_ALL == false then
  288.                             if v.TeamColor ~= PLAYER.TeamColor then
  289.                                 if v:FindFirstChild('Head') then
  290.                                     CREATE(v.Head, true)
  291.                                 end
  292.                             end
  293.                         else
  294.                             if v:FindFirstChild('Head') then
  295.                                 CREATE(v.Head, true)
  296.                             end
  297.                         end
  298.                     end
  299.                 end
  300.             end
  301.         end
  302.         wait(1)
  303.     end)
  304. end
  305.  
  306. MOUSE.KeyDown:connect(function(KEY)
  307.     KEY = KEY:lower():byte()
  308.     if KEY == _G.BIND then
  309.         ENABLED = true
  310.     end
  311. end)
  312.  
  313. print("--------------------")
  314. print("Instructions :")
  315. print("NOTE : u may get a lot of lag spikes if u are using free exploit like sk8r, jjsploit etc")
  316. print("NOTE : Aimbot is already enabled automatically, there is no hotkey!!")
  317. print("NOTE : Sometimes the keybinds don't work so please rejoin if this happens.")
  318. print("Press Q to change Aim")
  319. print("Press L to open/close the main gui")
  320. print("Press P to open/close the more stuff gui")
  321. print("Press X to delete the gui")
  322. print("Press left alt for esp ;)")
  323. print("Once Zombies have spawned, hold left ctrl and it will aim at them!")
  324. print("All set? Alright, have fun!")
  325. print("Made By LAZ3R#3702")
  326. print("--------------------")
  327.  
  328. BuyWeapon.MouseButton1Click:connect(function()
  329.     game.ReplicatedStorage.RemoteEvents.BuyWeapon:FireServer(WeaponBox.Text)
  330. end)
  331.  
  332. SellWeapon.MouseButton1Click:connect(function()
  333.     game.ReplicatedStorage.RemoteEvents.SellWeapon:FireServer(WeaponBox.Text)
  334. end)
  335.  
  336. PrintWeapons.MouseButton1Click:connect(function()
  337.         warn("--OVERKILL PACK--")
  338.         print("Dynamite")
  339.         print("M203")
  340.         print("USAS-12")
  341.         print("PSG1")
  342.         print("M60")
  343.         warn("--PIRATES VS NINJAS PACK--")
  344.         print("Flintlock Pistol")
  345.         print("Shuriken")
  346.         print("Blunderbuss")
  347.         print("Crossbow")
  348.         print("Cutlass")
  349.         warn("--BBQ PACK--")
  350.         print("Flare Gun")
  351.         print("Fire Axe")
  352.         print("Sawed-off Shotgun")
  353.         print("Flamethrower")
  354.         print("Vector")
  355.         warn("--Demolitions PACK--")
  356.         print("C4")
  357.         print("Python")
  358.         print("Sledgehammer")
  359.         print("CAR-15")
  360.         print("RG-6")
  361.         warn("--CLASSIC PACK--")
  362.         print("SMG")
  363.         print("Sword")
  364.         print("Shotgun")
  365.         print("Sniper Rifle")
  366.         print("Rocket Launcher")
  367.         warn("--SWAT PACK--")
  368.         print("USP")
  369.         print("Stun Grenade")
  370.         print("Gas Grenade")
  371.         print("MP5")
  372.         print("R870")
  373.         warn("--NON PACK--")
  374.         print("Baseball Bat")
  375.         print("AUG")
  376.         print("DMR")
  377.         print("Flintlock Rifle")
  378.         print("M4")
  379.         print("M1 Garand")
  380.         print("AK-47")
  381.         print("Luger")
  382.         print("Pistol")
  383.         print("Revolver")
  384.         print("Stakeout")
  385.         print("Sterling")
  386.         print("Thompson")
  387.         print("Trench Gun")
  388.         print("Laser Rifle")
  389.         print("Sentry Gun")
  390.         print("AA-12")
  391.         print("Double Barreled Shotgun")
  392.         print("Intervention")
  393.         print("Laser Pistol")
  394.         print("M16")
  395.         print("Minigun")
  396.         print("M249")
  397.         print("Chainsaw")
  398.         print("UMP45")
  399.         print("Grenade")
  400.         print("Zombie Bait")
  401.         print("Molotov")
  402.         print("Landmine")
  403.         print("M82")
  404.         print("Laser Minigun")
  405.         print("M93R")
  406.         print("Military Axe")
  407.         print("First Aid Kit")
  408.         print("RPK")
  409.         print("Katana")
  410.         print("Energy Rifle")
  411.         print("M1014")
  412.         print("Energy Sword")
  413.         print("Laser SMG")
  414.         print("Laser Shotgun")
  415.         print("M79")
  416.         print("RPG-7")
  417.         print("P90")
  418.         print("Desert Eagle")
  419.         print("Micro Uzi")
  420.         print("SCAR-H")
  421.         print("Energy Drink")
  422.         print("Gas Can")
  423.         print("Snowball")
  424.         print("M24")
  425.        
  426. end)
  427.  
  428. NoClip.MouseButton1Click:connect(function()
  429.     if NoClip.Text == "noclip : OFF" then
  430.         NOCLIPP = true
  431.         NoClip.Text = "noclip : ON"
  432.         Stepped = game:GetService("RunService").Stepped:Connect(function()
  433.             if not NOCLIPP == false then
  434.                 for a, b in pairs(Workspace:GetChildren()) do
  435.                 if b.Name == PLAYER.Name then
  436.                 for i, v in pairs(Workspace[PLAYER.Name]:GetChildren()) do
  437.                 if v:IsA("BasePart") then
  438.                 v.CanCollide = false
  439.                 end end end end
  440.             else
  441.                 Stepped:Disconnect()
  442.             end
  443.         end)
  444.     elseif NoClip.Text == "noclip : ON" then
  445.         NOCLIPP = false
  446.         NoClip.Text = "noclip : OFF"
  447.     end
  448. end)
  449.  
  450.  
  451.  
  452. MOUSE.KeyDown:connect(function(KEY)
  453.          if KEY == OPENCLOSE then
  454. if GUI_TARGET.Visible == true and GUI_AIM_AT.Visible == true and GUI_CREDITS.Visible == true then
  455. OC = false
  456. GUI_TARGET.Visible = false
  457. GUI_AIM_AT.Visible = false
  458. GUI_CREDITS.Visible = false
  459. else if GUI_TARGET.Visible == false and GUI_AIM_AT.Visible == false and GUI_CREDITS.Visible == false then
  460. OC = true
  461. GUI_TARGET.Visible = true
  462. GUI_AIM_AT.Visible = true
  463. GUI_CREDITS.Visible = true
  464. end
  465. end
  466. end
  467. end)
  468.  
  469. MOUSE.KeyDown:connect(function(KEY)
  470.          if KEY == OPENCLOSE2 then
  471. if MainMoreStuffFrame.Visible == true then
  472. OC2 = false
  473. MainMoreStuffFrame.Visible = false
  474. Title.Visible = false
  475. NoClip.Visible = false
  476. WeaponBox.Visible = false
  477. PrintWeapons.Visible = false
  478. SellWeapon.Visible = false
  479. BuyWeapon.Visible = false
  480. else if MainMoreStuffFrame.Visible == false then
  481. OC2 = true
  482. MainMoreStuffFrame.Visible = true
  483. Title.Visible = true
  484. NoClip.Visible = true
  485. WeaponBox.Visible = true
  486. PrintWeapons.Visible = true
  487. SellWeapon.Visible = true
  488. BuyWeapon.Visible = true
  489. end
  490. end
  491. end
  492. end)
  493.  
  494. MOUSE.KeyDown:connect(function(KEY)
  495.          if KEY == DESTROY then
  496.          game.CoreGui:FindFirstChild("AIMBOT"):Destroy()
  497.          game.CoreGui:FindFirstChild("MoreStuff"):Destroy()
  498. end
  499. end)
  500.  
  501. MOUSE.KeyUp:connect(function(KEY)
  502.     KEY = KEY:lower():byte()
  503.     if KEY == _G.BIND then
  504.         ENABLED = false
  505.     end
  506. end)
  507.  
  508. MOUSE.KeyDown:connect(function(KEY)
  509.     KEY = KEY:lower():byte()
  510.     if KEY == _G.ESP_BIND then
  511.         if ESP_ENABLED == false then
  512.             FIND()
  513.             ESP_ENABLED = true
  514.             print('ESP : ON')
  515.         elseif ESP_ENABLED == true then
  516.             wait()
  517.             CLEAR()
  518.             TRACK = false
  519.             ESP_ENABLED = true
  520.             print('ESP : OFF')
  521.         end
  522.     end
  523. end)
  524.  
  525. MOUSE.KeyDown:connect(function(KEY)
  526.     if KEY == _G.CHANGE_AIM then
  527.         if _G.AIM_AT == 'Head' then
  528.             _G.AIM_AT = 'Torso'
  529.             GUI_AIM_AT.Text = 'AIMING : TORSO'
  530.         elseif _G.AIM_AT == 'Torso' then
  531.             _G.AIM_AT = 'Head'
  532.             GUI_AIM_AT.Text = 'AIMING : HEAD'
  533.         end
  534.     end
  535. end)
  536.  
  537.  
  538. game:GetService('RunService').RenderStepped:connect(function()
  539.     if ENABLED then
  540.         local TARGET = GetNearestPlayerToMouse()
  541.         if (TARGET ~= false) then
  542.             local AIM = TARGET:FindFirstChild(_G.AIM_AT)
  543.             if AIM then
  544.                 CC.CoordinateFrame = CFrame.new(CC.CoordinateFrame.p, AIM.CFrame.p)
  545.             end
  546.             GUI_TARGET.Text = 'AIMBOT : ON'
  547.         else
  548.             GUI_TARGET.Text = 'AIMBOT : OFF'
  549.         end
  550.     end
  551. end)
  552.  
  553. repeat
  554.     wait()
  555.     if ESP_ENABLED == true then
  556.         FIND()
  557.     end
  558. until ESP_ENABLED == false
  559. wait()
  560. _G.FREE_FOR_ALL = true
  561. _G.BIND = 50 -- LEFT CTRL
  562. _G.ESP_BIND = 52 -- LEFT ALT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement