--- Services --- local UserInputService = game:GetService("UserInputService") local mouse = game:GetService("MouseService") local RS = game:GetService("RunService") local Teams = game:GetService("Teams") local Mouse = game:GetService("MouseService") --- AimBot Variables --- local aimbotEnabled = false local aimbotOnOffKey = Enum.KeyCode.C local aimbotKey = Enum.KeyCode.F local aimKeyDown = false local camera = workspace.CurrentCamera local smoothAim = false local AimPart = nil local AimSmoothness = .2 if game.Workspace:FindFirstChild("AimPart") then AimPart = game.Workspace.AimPart end local cDistance = math.huge local closestPlayer = nil --- Tracers ESP Variables --- local Lines = {} local TargetPartName = "HumanoidRootPart" local GenericHumanoidTargetPartName = TargetPartName local LineColor = Color3.new(255, 255, 255) local TeammateLineColor = Color3.new(0, 0.25, 1) local GenericHumanoidLineColor = Color3.new(1, 0, 0) local LineWidth = .2 local DrawTeammates = true local FindHumanoids = true local GetLineOrigin = function(Camera) return Vector2.new(Camera.ViewportSize.X/2, Camera.ViewportSize.Y*.9) end local Camera = workspace.CurrentCamera local LineOrigin = nil Camera:GetPropertyChangedSignal("ViewportSize"):Connect(function() LineOrigin = GetLineOrigin(Camera) end) LineOrigin = GetLineOrigin(Camera) local Gui = Instance.new("ScreenGui") Gui.Name = "SnaplineGui" Gui.Parent = game.Players.LocalPlayer.PlayerGui function Setline(Line, Width, Color, Origin, Destination) local Position = (Origin + Destination) / 2 Line.Position = UDim2.new(0, Position.X, 0, Position.Y) local Length = (Origin - Destination).Magnitude Line.BackgroundColor3 = Color Line.BorderColor3 = Color Line.Size = UDim2.new(0, Length, 0, Width) Line.Rotation = math.deg(math.atan2(Destination.Y - Origin.Y, Destination.X - Origin.X)) end --- Other Exploit Variables --- local PlayerOutlineEnabled = false local ESPEnabled = false -------------- ---- [[ SOUND ]] ----- local SoundGroup = Instance.new("SoundGroup") SoundGroup.Parent = game.Players.LocalPlayer.PlayerGui SoundGroup.Name = "LocalSounds" local interNoise = Instance.new("Sound") interNoise.Parent = SoundGroup interNoise.Name = "InterNoise" interNoise.SoundId = 'rbxassetid://6895079853' interNoise.Volume = 1 ----[[ INI GUI ]]---- local ExGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local UIAspectRatioConstraint = Instance.new("UIAspectRatioConstraint") local UICorner = Instance.new("UICorner") local TopBar = Instance.new("Frame") local UICorner_2 = Instance.new("UICorner") local BottomTopBar = Instance.new("Frame") local Logo = Instance.new("ImageLabel") local Title = Instance.new("TextLabel") local UIPadding = Instance.new("UIPadding") local CloseButton = Instance.new("ImageButton") local EType = Instance.new("Frame") local Title_2 = Instance.new("TextLabel") local UIPadding_2 = Instance.new("UIPadding") local Thumbnail = Instance.new("ImageLabel") local Icon = Instance.new("ImageLabel") local UICorner_3 = Instance.new("UICorner") local Fade = Instance.new("Frame") local Verified = Instance.new("ImageLabel") local UICorner_4 = Instance.new("UICorner") local SploitsFrame = Instance.new("Frame") local SelectionFrame1 = Instance.new("ScrollingFrame") local UIListLayout = Instance.new("UIListLayout") local Aimbot = Instance.new("Frame") local Switch = Instance.new("ImageButton") local UICorner_5 = Instance.new("UICorner") local Button = Instance.new("ImageButton") local UICorner_6 = Instance.new("UICorner") local Title_3 = Instance.new("TextLabel") local UIPadding_3 = Instance.new("UIPadding") local UIPadding_4 = Instance.new("UIPadding") local AimbotEnabledKey = Instance.new("Frame") local Key = Instance.new("ImageButton") local UICorner_7 = Instance.new("UICorner") local KeyText = Instance.new("TextLabel") local Title_4 = Instance.new("TextLabel") local UIPadding_5 = Instance.new("UIPadding") local AimbotKey = Instance.new("Frame") local Key_2 = Instance.new("ImageButton") local UICorner_8 = Instance.new("UICorner") local KeyText_2 = Instance.new("TextLabel") local Title_5 = Instance.new("TextLabel") local UIPadding_6 = Instance.new("UIPadding") local SmoothAim = Instance.new("Frame") local Switch_2 = Instance.new("ImageButton") local UICorner_9 = Instance.new("UICorner") local Button_2 = Instance.new("ImageButton") local UICorner_10 = Instance.new("UICorner") local Title_6 = Instance.new("TextLabel") local UIPadding_7 = Instance.new("UIPadding") local BetterCrosshair = Instance.new("Frame") local Switch_3 = Instance.new("ImageButton") local UICorner_11 = Instance.new("UICorner") local Button_3 = Instance.new("ImageButton") local UICorner_12 = Instance.new("UICorner") local Title_7 = Instance.new("TextLabel") local UIPadding_8 = Instance.new("UIPadding") local PlayerOutline = Instance.new("Frame") local Switch_4 = Instance.new("ImageButton") local UICorner_13 = Instance.new("UICorner") local Button_4 = Instance.new("ImageButton") local UICorner_14 = Instance.new("UICorner") local Title_8 = Instance.new("TextLabel") local UIPadding_9 = Instance.new("UIPadding") local ESP = Instance.new("Frame") local Switch_5 = Instance.new("ImageButton") local UICorner_15 = Instance.new("UICorner") local Button_5 = Instance.new("ImageButton") local UICorner_16 = Instance.new("UICorner") local Title_9 = Instance.new("TextLabel") local UIPadding_10 = Instance.new("UIPadding") local SelectionFrame2 = Instance.new("ScrollingFrame") local UIListLayout_2 = Instance.new("UIListLayout") local DirectTeleport = Instance.new("Frame") local Title_10 = Instance.new("TextLabel") local UIPadding_11 = Instance.new("UIPadding") local InputBox = Instance.new("TextBox") local UIPadding_12 = Instance.new("UIPadding") local UICorner_17 = Instance.new("UICorner") local Continue = Instance.new("TextButton") local UIPadding_13 = Instance.new("UIPadding") local UICorner_18 = Instance.new("UICorner") local UIPadding_14 = Instance.new("UIPadding") local DirectTeleport_2 = Instance.new("Frame") local Title_11 = Instance.new("TextLabel") local UIPadding_15 = Instance.new("UIPadding") local InputBox_2 = Instance.new("TextBox") local UIPadding_16 = Instance.new("UIPadding") local UICorner_19 = Instance.new("UICorner") local Continue_2 = Instance.new("TextButton") local UIPadding_17 = Instance.new("UIPadding") local UICorner_20 = Instance.new("UICorner") local Scope = Instance.new("ImageLabel") local UIAspectRatioConstraint_2 = Instance.new("UIAspectRatioConstraint") local Notifications = Instance.new("Frame") local UIListLayout_3 = Instance.new("UIListLayout") local UIPadding_18 = Instance.new("UIPadding") local NotificationTemplate = Instance.new("Frame") local UICorner_21 = Instance.new("UICorner") local TextLabel = Instance.new("TextLabel") local UIPadding_19 = Instance.new("UIPadding") local ImageLabel = Instance.new("ImageLabel") local OpenFrame = Instance.new("Frame") local UICorner_22 = Instance.new("UICorner") local Frame = Instance.new("Frame") local UICorner_23 = Instance.new("UICorner") local Frame_2 = Instance.new("Frame") local TextLabel_2 = Instance.new("TextLabel") local UIPadding_20 = Instance.new("UIPadding") local Button_6 = Instance.new("ImageButton") local UIAspectRatioConstraint_3 = Instance.new("UIAspectRatioConstraint") local Maximize = Instance.new("ImageButton") --Properties: ExGui.Name = "ExGui" ExGui.Parent = game:GetService("CoreGui") --game.Players.LocalPlayer:WaitForChild("PlayerGui") ExGui.Enabled = true ExGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling MainFrame.Name = "MainFrame" MainFrame.Parent = ExGui MainFrame.AnchorPoint = Vector2.new(1, 1) MainFrame.BackgroundColor3 = Color3.fromRGB(47, 47, 47) MainFrame.BorderSizePixel = 0 MainFrame.Position = UDim2.new(0.990982354, 0, 1.00158727, 0) MainFrame.Size = UDim2.new(0.459157944, 0, 0.531691909, 0) MainFrame.ZIndex = 10000 UIAspectRatioConstraint.Parent = MainFrame UIAspectRatioConstraint.AspectRatio = 1.400 UICorner.CornerRadius = UDim.new(0.0199999996, 0) UICorner.Parent = MainFrame TopBar.Name = "TopBar" TopBar.Parent = MainFrame TopBar.BackgroundColor3 = Color3.fromRGB(72, 72, 72) TopBar.Position = UDim2.new(3.08757357e-08, 0, 0, 0) TopBar.Size = UDim2.new(1, 0, 0.0651558042, 0) UICorner_2.CornerRadius = UDim.new(0.349999994, 0) UICorner_2.Parent = TopBar BottomTopBar.Name = "BottomTopBar" BottomTopBar.Parent = TopBar BottomTopBar.BackgroundColor3 = Color3.fromRGB(72, 72, 72) BottomTopBar.BorderSizePixel = 0 BottomTopBar.Position = UDim2.new(0, 0, 0.565217435, 0) BottomTopBar.Size = UDim2.new(1.00000012, 0, 0.695652425, 0) Logo.Name = "Logo" Logo.Parent = TopBar Logo.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Logo.BackgroundTransparency = 1.000 Logo.Position = UDim2.new(0.00999999978, 0, 0.136999995, 0) Logo.Size = UDim2.new(0.0445782952, 0, 0.95043546, 0) Logo.Image = "rbxassetid://11307221829" Title.Name = "Title" Title.Parent = TopBar Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title.BackgroundTransparency = 1.000 Title.Position = UDim2.new(0.0558613092, 0, 0, 0) Title.Size = UDim2.new(0.136773333, 0, 1.26086938, 0) Title.Font = Enum.Font.ArialBold Title.Text = "LAST" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextScaled = true Title.TextSize = 14.000 Title.TextWrapped = true Title.TextXAlignment = Enum.TextXAlignment.Left UIPadding.Parent = Title UIPadding.PaddingBottom = UDim.new(0.230000004, 0) UIPadding.PaddingLeft = UDim.new(0.0649999976, 0) UIPadding.PaddingTop = UDim.new(0.230000004, 0) CloseButton.Name = "CloseButton" CloseButton.Parent = TopBar CloseButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) CloseButton.BackgroundTransparency = 1.000 CloseButton.Position = UDim2.new(0.949999988, 0, 0.189999998, 0) CloseButton.Size = UDim2.new(0.0410000011, 0, 0.899999976, 0) CloseButton.Image = "rbxassetid://9665907378" EType.Name = "EType" EType.Parent = MainFrame EType.BackgroundColor3 = Color3.fromRGB(39, 39, 39) EType.BorderSizePixel = 0 EType.Position = UDim2.new(0, 0, 0.0821529776, 0) EType.Size = UDim2.new(1.00000012, 0, 0.263456076, 0) Title_2.Name = "Title" Title_2.Parent = EType Title_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title_2.BackgroundTransparency = 1.000 Title_2.Position = UDim2.new(0.192634612, 0, 0.268664956, 0) Title_2.Size = UDim2.new(0.781060159, 0, 0.457949728, 0) Title_2.ZIndex = 4 Title_2.Font = Enum.Font.GothamBold Title_2.Text = "Shooter Game" Title_2.TextColor3 = Color3.fromRGB(255, 255, 255) Title_2.TextScaled = true Title_2.TextSize = 14.000 Title_2.TextWrapped = true Title_2.TextXAlignment = Enum.TextXAlignment.Left UIPadding_2.Parent = Title_2 UIPadding_2.PaddingBottom = UDim.new(0.150000006, 0) UIPadding_2.PaddingLeft = UDim.new(0.00999999978, 0) UIPadding_2.PaddingTop = UDim.new(0.150000006, 0) Thumbnail.Name = "Thumbnail" Thumbnail.Parent = EType Thumbnail.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Thumbnail.BackgroundTransparency = 1.000 Thumbnail.Size = UDim2.new(1.00000024, 0, 3.00939846, 0) Thumbnail.Image = "rbxassetid://11308505437" Icon.Name = "Icon" Icon.Parent = EType Icon.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Icon.BackgroundTransparency = 0.500 Icon.Position = UDim2.new(0.0263050422, 0, 0.107526891, 0) Icon.Size = UDim2.new(0.146003351, 0, 0.774193585, 0) Icon.ZIndex = 3 UICorner_3.CornerRadius = UDim.new(0.100000001, 1) UICorner_3.Parent = Icon Fade.Name = "Fade" Fade.Parent = EType Fade.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Fade.BackgroundTransparency = 0.500 Fade.BorderSizePixel = 0 Fade.Size = UDim2.new(1, 0, 1, 0) Fade.ZIndex = 2 Verified.Name = "Verified" Verified.Parent = EType Verified.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Verified.BackgroundTransparency = 1.000 Verified.BorderColor3 = Color3.fromRGB(27, 42, 53) Verified.Position = UDim2.new(0.129999995, 0, 0.660000026, 0) Verified.Size = UDim2.new(0.0466399603, 0, 0.247311845, 0) Verified.ZIndex = 3 Verified.Image = "rbxassetid://240664703" UICorner_4.CornerRadius = UDim.new(0.100000001, 1) UICorner_4.Parent = Verified SploitsFrame.Name = "SploitsFrame" SploitsFrame.Parent = MainFrame SploitsFrame.BackgroundColor3 = Color3.fromRGB(47, 47, 47) SploitsFrame.BorderSizePixel = 0 SploitsFrame.Position = UDim2.new(0, 0, 0.345609069, 0) SploitsFrame.Size = UDim2.new(1.00000012, 0, 0.654390872, 0) SelectionFrame1.Name = "SelectionFrame1" SelectionFrame1.Parent = SploitsFrame SelectionFrame1.Active = true SelectionFrame1.BackgroundColor3 = Color3.fromRGB(255, 255, 255) SelectionFrame1.BackgroundTransparency = 1.000 SelectionFrame1.BorderSizePixel = 0 SelectionFrame1.Position = UDim2.new(-5.96046448e-08, 0, 0.0432901122, 0) SelectionFrame1.Size = UDim2.new(0.518413484, 0, 0.956709862, 0) SelectionFrame1.CanvasSize = UDim2.new(0, 0, 3, 0) SelectionFrame1.ScrollBarThickness = 3 UIListLayout.Parent = SelectionFrame1 UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout.Padding = UDim.new(0.00200000009, 0) Aimbot.Name = "Aimbot" Aimbot.Parent = SelectionFrame1 Aimbot.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Aimbot.BackgroundTransparency = 1.000 Aimbot.Position = UDim2.new(0, 0, 6.6055371e-08, 0) Aimbot.Size = UDim2.new(1.00000012, 0, 0.0406951346, 0) Switch.Name = "Switch" Switch.Parent = Aimbot Switch.BackgroundColor3 = Color3.fromRGB(71, 71, 71) Switch.BorderSizePixel = 0 Switch.Position = UDim2.new(0.0160153471, 0, 0.0815620646, 0) Switch.Size = UDim2.new(0.184015587, 0, 0.819000065, 0) Switch.AutoButtonColor = false UICorner_5.CornerRadius = UDim.new(0.200000003, 0) UICorner_5.Parent = Switch Button.Name = "Button" Button.Parent = Switch Button.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Button.BorderSizePixel = 0 Button.Position = UDim2.new(0.0299999993, 0, 0, 0) Button.Size = UDim2.new(0.536334813, 0, 1, 0) Button.AutoButtonColor = false UICorner_6.CornerRadius = UDim.new(0.200000003, 0) UICorner_6.Parent = Button Title_3.Name = "Title" Title_3.Parent = Aimbot Title_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title_3.BackgroundTransparency = 1.000 Title_3.Position = UDim2.new(0.200031042, 0, 0, 0) Title_3.Size = UDim2.new(0.799968958, 0, 0.99999994, 0) Title_3.Font = Enum.Font.GothamBold Title_3.Text = "Aimbot" Title_3.TextColor3 = Color3.fromRGB(255, 255, 255) Title_3.TextScaled = true Title_3.TextSize = 14.000 Title_3.TextWrapped = true Title_3.TextXAlignment = Enum.TextXAlignment.Left UIPadding_3.Parent = Title_3 UIPadding_3.PaddingBottom = UDim.new(0.219999999, 0) UIPadding_3.PaddingLeft = UDim.new(0.0350000001, 0) UIPadding_3.PaddingTop = UDim.new(0.219999999, 0) UIPadding_4.Parent = SelectionFrame1 UIPadding_4.PaddingLeft = UDim.new(0.0399999991, 0) AimbotEnabledKey.Name = "AimbotEnabledKey" AimbotEnabledKey.Parent = SelectionFrame1 AimbotEnabledKey.BackgroundColor3 = Color3.fromRGB(255, 255, 255) AimbotEnabledKey.BackgroundTransparency = 1.000 AimbotEnabledKey.Position = UDim2.new(1.24079421e-07, 0, 0.0437237695, 0) AimbotEnabledKey.Size = UDim2.new(1, 0, 0.0413999408, 0) Key.Name = "Key" Key.Parent = AimbotEnabledKey Key.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Key.BorderSizePixel = 0 Key.Position = UDim2.new(0.0160152912, 0, 0.0832529068, 0) Key.Size = UDim2.new(0.0968031362, 0, 0.819061518, 0) Key.AutoButtonColor = false UICorner_7.CornerRadius = UDim.new(0.150000006, 0) UICorner_7.Parent = Key KeyText.Name = "KeyText" KeyText.Parent = Key KeyText.BackgroundColor3 = Color3.fromRGB(255, 255, 255) KeyText.BackgroundTransparency = 1.000 KeyText.Position = UDim2.new(0, 0, -6.4345295e-07, 0) KeyText.Size = UDim2.new(1, 0, 1.00000048, 0) KeyText.Font = Enum.Font.Gotham KeyText.Text = "C" KeyText.TextColor3 = Color3.fromRGB(59, 59, 59) KeyText.TextScaled = true KeyText.TextSize = 14.000 KeyText.TextWrapped = true Title_4.Name = "Title" Title_4.Parent = AimbotEnabledKey Title_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title_4.BackgroundTransparency = 1.000 Title_4.Position = UDim2.new(0.121212244, 0, 0, 0) Title_4.Size = UDim2.new(0.878787577, 0, 1, 0) Title_4.Font = Enum.Font.GothamBold Title_4.Text = "Aimbot Enabled Key" Title_4.TextColor3 = Color3.fromRGB(255, 255, 255) Title_4.TextScaled = true Title_4.TextSize = 14.000 Title_4.TextWrapped = true Title_4.TextXAlignment = Enum.TextXAlignment.Left UIPadding_5.Parent = Title_4 UIPadding_5.PaddingBottom = UDim.new(0.219999999, 0) UIPadding_5.PaddingLeft = UDim.new(0.0350000001, 0) UIPadding_5.PaddingTop = UDim.new(0.219999999, 0) AimbotKey.Name = "AimbotKey" AimbotKey.Parent = SelectionFrame1 AimbotKey.BackgroundColor3 = Color3.fromRGB(255, 255, 255) AimbotKey.BackgroundTransparency = 1.000 AimbotKey.Position = UDim2.new(1.24079421e-07, 0, 0.0881522819, 0) AimbotKey.Size = UDim2.new(1, 0, 0.0413999408, 0) Key_2.Name = "Key" Key_2.Parent = AimbotKey Key_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Key_2.BorderSizePixel = 0 Key_2.Position = UDim2.new(0.0160152912, 0, 0.0832529068, 0) Key_2.Size = UDim2.new(0.0968031362, 0, 0.819061518, 0) Key_2.AutoButtonColor = false UICorner_8.CornerRadius = UDim.new(0.150000006, 0) UICorner_8.Parent = Key_2 KeyText_2.Name = "KeyText" KeyText_2.Parent = Key_2 KeyText_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) KeyText_2.BackgroundTransparency = 1.000 KeyText_2.Position = UDim2.new(0, 0, -6.4345295e-07, 0) KeyText_2.Size = UDim2.new(1, 0, 1.00000048, 0) KeyText_2.Font = Enum.Font.Gotham KeyText_2.Text = "F" KeyText_2.TextColor3 = Color3.fromRGB(59, 59, 59) KeyText_2.TextScaled = true KeyText_2.TextSize = 14.000 KeyText_2.TextWrapped = true Title_5.Name = "Title" Title_5.Parent = AimbotKey Title_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title_5.BackgroundTransparency = 1.000 Title_5.Position = UDim2.new(0.121212244, 0, 0, 0) Title_5.Size = UDim2.new(0.878787577, 0, 1, 0) Title_5.Font = Enum.Font.GothamBold Title_5.Text = "Aimbot Key" Title_5.TextColor3 = Color3.fromRGB(255, 255, 255) Title_5.TextScaled = true Title_5.TextSize = 14.000 Title_5.TextWrapped = true Title_5.TextXAlignment = Enum.TextXAlignment.Left UIPadding_6.Parent = Title_5 UIPadding_6.PaddingBottom = UDim.new(0.219999999, 0) UIPadding_6.PaddingLeft = UDim.new(0.0350000001, 0) UIPadding_6.PaddingTop = UDim.new(0.219999999, 0) SmoothAim.Name = "SmoothAim" SmoothAim.Parent = SelectionFrame1 SmoothAim.BackgroundColor3 = Color3.fromRGB(255, 255, 255) SmoothAim.BackgroundTransparency = 1.000 SmoothAim.Position = UDim2.new(0, 0, 0.132580727, 0) SmoothAim.Size = UDim2.new(1.00000012, 0, 0.0406951346, 0) Switch_2.Name = "Switch" Switch_2.Parent = SmoothAim Switch_2.BackgroundColor3 = Color3.fromRGB(71, 71, 71) Switch_2.BorderSizePixel = 0 Switch_2.Position = UDim2.new(0.0160153471, 0, 0.0815620646, 0) Switch_2.Size = UDim2.new(0.184015587, 0, 0.819000065, 0) Switch_2.AutoButtonColor = false UICorner_9.CornerRadius = UDim.new(0.200000003, 0) UICorner_9.Parent = Switch_2 Button_2.Name = "Button" Button_2.Parent = Switch_2 Button_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Button_2.BorderSizePixel = 0 Button_2.Position = UDim2.new(0.0299999993, 0, 0, 0) Button_2.Size = UDim2.new(0.536334813, 0, 1, 0) Button_2.AutoButtonColor = false UICorner_10.CornerRadius = UDim.new(0.200000003, 0) UICorner_10.Parent = Button_2 Title_6.Name = "Title" Title_6.Parent = SmoothAim Title_6.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title_6.BackgroundTransparency = 1.000 Title_6.Position = UDim2.new(0.200031042, 0, 0, 0) Title_6.Size = UDim2.new(0.799968958, 0, 0.99999994, 0) Title_6.Font = Enum.Font.GothamBold Title_6.Text = "Smooth Aim" Title_6.TextColor3 = Color3.fromRGB(255, 255, 255) Title_6.TextScaled = true Title_6.TextSize = 14.000 Title_6.TextWrapped = true Title_6.TextXAlignment = Enum.TextXAlignment.Left UIPadding_7.Parent = Title_6 UIPadding_7.PaddingBottom = UDim.new(0.219999999, 0) UIPadding_7.PaddingLeft = UDim.new(0.0350000001, 0) UIPadding_7.PaddingTop = UDim.new(0.219999999, 0) BetterCrosshair.Name = "BetterCrosshair" BetterCrosshair.Parent = SelectionFrame1 BetterCrosshair.BackgroundColor3 = Color3.fromRGB(255, 255, 255) BetterCrosshair.BackgroundTransparency = 1.000 BetterCrosshair.Position = UDim2.new(0, 0, 0.176304623, 0) BetterCrosshair.Size = UDim2.new(1.00000012, 0, 0.0406951346, 0) Switch_3.Name = "Switch" Switch_3.Parent = BetterCrosshair Switch_3.BackgroundColor3 = Color3.fromRGB(71, 71, 71) Switch_3.BorderSizePixel = 0 Switch_3.Position = UDim2.new(0.0160153471, 0, 0.0815620646, 0) Switch_3.Size = UDim2.new(0.184015587, 0, 0.819000065, 0) Switch_3.AutoButtonColor = false UICorner_11.CornerRadius = UDim.new(0.200000003, 0) UICorner_11.Parent = Switch_3 Button_3.Name = "Button" Button_3.Parent = Switch_3 Button_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Button_3.BorderSizePixel = 0 Button_3.Position = UDim2.new(0.0299999993, 0, 0, 0) Button_3.Size = UDim2.new(0.536334813, 0, 1, 0) Button_3.AutoButtonColor = false UICorner_12.CornerRadius = UDim.new(0.200000003, 0) UICorner_12.Parent = Button_3 Title_7.Name = "Title" Title_7.Parent = BetterCrosshair Title_7.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title_7.BackgroundTransparency = 1.000 Title_7.Position = UDim2.new(0.200031042, 0, 0, 0) Title_7.Size = UDim2.new(0.799968958, 0, 0.99999994, 0) Title_7.Font = Enum.Font.GothamBold Title_7.Text = "Better Crosshair" Title_7.TextColor3 = Color3.fromRGB(255, 255, 255) Title_7.TextScaled = true Title_7.TextSize = 14.000 Title_7.TextWrapped = true Title_7.TextXAlignment = Enum.TextXAlignment.Left UIPadding_8.Parent = Title_7 UIPadding_8.PaddingBottom = UDim.new(0.219999999, 0) UIPadding_8.PaddingLeft = UDim.new(0.0350000001, 0) UIPadding_8.PaddingTop = UDim.new(0.219999999, 0) PlayerOutline.Name = "PlayerOutline" PlayerOutline.Parent = SelectionFrame1 PlayerOutline.BackgroundColor3 = Color3.fromRGB(255, 255, 255) PlayerOutline.BackgroundTransparency = 1.000 PlayerOutline.Position = UDim2.new(0, 0, 0.220028266, 0) PlayerOutline.Size = UDim2.new(1.00000012, 0, 0.0406951346, 0) Switch_4.Name = "Switch" Switch_4.Parent = PlayerOutline Switch_4.BackgroundColor3 = Color3.fromRGB(71, 71, 71) Switch_4.BorderSizePixel = 0 Switch_4.Position = UDim2.new(0.0160153471, 0, 0.0815620646, 0) Switch_4.Size = UDim2.new(0.184015587, 0, 0.819000065, 0) Switch_4.AutoButtonColor = false UICorner_13.CornerRadius = UDim.new(0.200000003, 0) UICorner_13.Parent = Switch_4 Button_4.Name = "Button" Button_4.Parent = Switch_4 Button_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Button_4.BorderSizePixel = 0 Button_4.Position = UDim2.new(0.0299999993, 0, 0, 0) Button_4.Size = UDim2.new(0.536334813, 0, 1, 0) Button_4.AutoButtonColor = false UICorner_14.CornerRadius = UDim.new(0.200000003, 0) UICorner_14.Parent = Button_4 Title_8.Name = "Title" Title_8.Parent = PlayerOutline Title_8.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title_8.BackgroundTransparency = 1.000 Title_8.Position = UDim2.new(0.200031042, 0, 0, 0) Title_8.Size = UDim2.new(0.799968958, 0, 0.99999994, 0) Title_8.Font = Enum.Font.GothamBold Title_8.Text = "Player Outline" Title_8.TextColor3 = Color3.fromRGB(255, 255, 255) Title_8.TextScaled = true Title_8.TextSize = 14.000 Title_8.TextWrapped = true Title_8.TextXAlignment = Enum.TextXAlignment.Left UIPadding_9.Parent = Title_8 UIPadding_9.PaddingBottom = UDim.new(0.219999999, 0) UIPadding_9.PaddingLeft = UDim.new(0.0350000001, 0) UIPadding_9.PaddingTop = UDim.new(0.219999999, 0) ESP.Name = "ESP" ESP.Parent = SelectionFrame1 ESP.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ESP.BackgroundTransparency = 1.000 ESP.Position = UDim2.new(0, 0, 0.263752043, 0) ESP.Size = UDim2.new(1.00000012, 0, 0.0406951346, 0) Switch_5.Name = "Switch" Switch_5.Parent = ESP Switch_5.BackgroundColor3 = Color3.fromRGB(71, 71, 71) Switch_5.BorderSizePixel = 0 Switch_5.Position = UDim2.new(0.0160153471, 0, 0.0815620646, 0) Switch_5.Size = UDim2.new(0.184015587, 0, 0.819000065, 0) Switch_5.AutoButtonColor = false UICorner_15.CornerRadius = UDim.new(0.200000003, 0) UICorner_15.Parent = Switch_5 Button_5.Name = "Button" Button_5.Parent = Switch_5 Button_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Button_5.BorderSizePixel = 0 Button_5.Position = UDim2.new(0.0299999993, 0, 0, 0) Button_5.Size = UDim2.new(0.536334813, 0, 1, 0) Button_5.AutoButtonColor = false UICorner_16.CornerRadius = UDim.new(0.200000003, 0) UICorner_16.Parent = Button_5 Title_9.Name = "Title" Title_9.Parent = ESP Title_9.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title_9.BackgroundTransparency = 1.000 Title_9.Position = UDim2.new(0.200031042, 0, 0, 0) Title_9.Size = UDim2.new(0.799968958, 0, 0.99999994, 0) Title_9.Font = Enum.Font.GothamBold Title_9.Text = "Tracers" Title_9.TextColor3 = Color3.fromRGB(255, 255, 255) Title_9.TextScaled = true Title_9.TextSize = 14.000 Title_9.TextWrapped = true Title_9.TextXAlignment = Enum.TextXAlignment.Left UIPadding_10.Parent = Title_9 UIPadding_10.PaddingBottom = UDim.new(0.219999999, 0) UIPadding_10.PaddingLeft = UDim.new(0.0350000001, 0) UIPadding_10.PaddingTop = UDim.new(0.219999999, 0) SelectionFrame2.Name = "SelectionFrame2" SelectionFrame2.Parent = SploitsFrame SelectionFrame2.Active = true SelectionFrame2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) SelectionFrame2.BackgroundTransparency = 1.000 SelectionFrame2.BorderSizePixel = 0 SelectionFrame2.Position = UDim2.new(0.523533285, 0, 0.0430000275, 0) SelectionFrame2.Size = UDim2.new(0.475625664, 0, 0.956709802, 0) SelectionFrame2.CanvasSize = UDim2.new(0, 0, 3, 0) SelectionFrame2.ScrollBarThickness = 3 UIListLayout_2.Parent = SelectionFrame2 UIListLayout_2.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout_2.Padding = UDim.new(0.00499999989, 0) DirectTeleport.Name = "DirectTeleport" DirectTeleport.Parent = SelectionFrame2 DirectTeleport.BackgroundColor3 = Color3.fromRGB(255, 255, 255) DirectTeleport.BackgroundTransparency = 1.000 DirectTeleport.Position = UDim2.new(0.0400004052, 0, 0, 0) DirectTeleport.Size = UDim2.new(1.00000012, 0, 0.0802660361, 0) Title_10.Name = "Title" Title_10.Parent = DirectTeleport Title_10.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title_10.BackgroundTransparency = 1.000 Title_10.Position = UDim2.new(0.0307953097, 0, 0, 0) Title_10.Size = UDim2.new(0.969204843, 0, 0.478980601, 0) Title_10.Font = Enum.Font.GothamBold Title_10.Text = "Direct Teleport" Title_10.TextColor3 = Color3.fromRGB(255, 255, 255) Title_10.TextScaled = true Title_10.TextSize = 14.000 Title_10.TextWrapped = true Title_10.TextXAlignment = Enum.TextXAlignment.Left UIPadding_11.Parent = Title_10 UIPadding_11.PaddingBottom = UDim.new(0.219999999, 0) UIPadding_11.PaddingTop = UDim.new(0.219999999, 0) InputBox.Name = "InputBox" InputBox.Parent = DirectTeleport InputBox.BackgroundColor3 = Color3.fromRGB(27, 27, 27) InputBox.Position = UDim2.new(0.0242676791, 0, 0.465070784, 0) InputBox.Size = UDim2.new(0.554522276, 0, 0.500228822, 0) InputBox.Font = Enum.Font.GothamBold InputBox.PlaceholderText = "Username" InputBox.Text = "" InputBox.TextColor3 = Color3.fromRGB(255, 255, 255) InputBox.TextScaled = true InputBox.TextSize = 14.000 InputBox.TextWrapped = true UIPadding_12.Parent = InputBox UIPadding_12.PaddingBottom = UDim.new(0.200000003, 0) UIPadding_12.PaddingTop = UDim.new(0.200000003, 0) UICorner_17.CornerRadius = UDim.new(0.200000003, 0) UICorner_17.Parent = InputBox Continue.Name = "Continue" Continue.Parent = DirectTeleport Continue.BackgroundColor3 = Color3.fromRGB(0, 153, 255) Continue.Position = UDim2.new(0.604589462, 0, 0.456182986, 0) Continue.Size = UDim2.new(0.336315364, 0, 0.505801916, 0) Continue.Font = Enum.Font.GothamBold Continue.Text = "Teleport" Continue.TextColor3 = Color3.fromRGB(255, 255, 255) Continue.TextScaled = true Continue.TextSize = 14.000 Continue.TextWrapped = true UIPadding_13.Parent = Continue UIPadding_13.PaddingBottom = UDim.new(0.200000003, 0) UIPadding_13.PaddingTop = UDim.new(0.200000003, 0) UICorner_18.CornerRadius = UDim.new(0.200000003, 0) UICorner_18.Parent = Continue UIPadding_14.Parent = SelectionFrame2 UIPadding_14.PaddingLeft = UDim.new(0.0104999999, 0) DirectTeleport_2.Name = "DirectTeleport" DirectTeleport_2.Parent = SelectionFrame2 DirectTeleport_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) DirectTeleport_2.BackgroundTransparency = 1.000 DirectTeleport_2.Position = UDim2.new(0.0400004052, 0, 0, 0) DirectTeleport_2.Size = UDim2.new(1.00000012, 0, 0.0802660361, 0) Title_11.Name = "Title" Title_11.Parent = DirectTeleport_2 Title_11.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title_11.BackgroundTransparency = 1.000 Title_11.Position = UDim2.new(0.0307953097, 0, 0, 0) Title_11.Size = UDim2.new(0.969204843, 0, 0.478980601, 0) Title_11.Font = Enum.Font.GothamBold Title_11.Text = "REALTEK" Title_11.TextColor3 = Color3.fromRGB(255, 255, 255) Title_11.TextScaled = true Title_11.TextSize = 14.000 Title_11.TextWrapped = true Title_11.TextXAlignment = Enum.TextXAlignment.Left UIPadding_15.Parent = Title_11 UIPadding_15.PaddingBottom = UDim.new(0.219999999, 0) UIPadding_15.PaddingTop = UDim.new(0.219999999, 0) InputBox_2.Name = "InputBox" InputBox_2.Parent = DirectTeleport_2 InputBox_2.BackgroundColor3 = Color3.fromRGB(27, 27, 27) InputBox_2.Position = UDim2.new(0.0242676791, 0, 0.465070784, 0) InputBox_2.Size = UDim2.new(0.554522276, 0, 0.500228822, 0) InputBox_2.Font = Enum.Font.GothamBold InputBox_2.PlaceholderText = "Username" InputBox_2.Text = "" InputBox_2.TextColor3 = Color3.fromRGB(255, 255, 255) InputBox_2.TextScaled = true InputBox_2.TextSize = 14.000 InputBox_2.TextWrapped = true UIPadding_16.Parent = InputBox_2 UIPadding_16.PaddingBottom = UDim.new(0.200000003, 0) UIPadding_16.PaddingTop = UDim.new(0.200000003, 0) UICorner_19.CornerRadius = UDim.new(0.200000003, 0) UICorner_19.Parent = InputBox_2 Continue_2.Name = "Continue" Continue_2.Parent = DirectTeleport_2 Continue_2.BackgroundColor3 = Color3.fromRGB(0, 153, 255) Continue_2.Position = UDim2.new(0.604589462, 0, 0.456182986, 0) Continue_2.Size = UDim2.new(0.336315364, 0, 0.505801916, 0) Continue_2.Font = Enum.Font.GothamBold Continue_2.Text = "Teleport" Continue_2.TextColor3 = Color3.fromRGB(255, 255, 255) Continue_2.TextScaled = true Continue_2.TextSize = 14.000 Continue_2.TextWrapped = true UIPadding_17.Parent = Continue_2 UIPadding_17.PaddingBottom = UDim.new(0.200000003, 0) UIPadding_17.PaddingTop = UDim.new(0.200000003, 0) UICorner_20.CornerRadius = UDim.new(0.200000003, 0) UICorner_20.Parent = Continue_2 Scope.Name = "Scope" Scope.Parent = ExGui Scope.AnchorPoint = Vector2.new(0.5, 0.5) Scope.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Scope.BackgroundTransparency = 1.000 Scope.Position = UDim2.new(0.498947442, 0, 0.49914676, 0) Scope.Size = UDim2.new(0.142105266, 0, 0.230375424, 0) Scope.Visible = false Scope.Image = "rbxassetid://11288112037" UIAspectRatioConstraint_2.Parent = Scope Notifications.Name = "Notifications" Notifications.Parent = ExGui Notifications.AnchorPoint = Vector2.new(0, 1) Notifications.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Notifications.BackgroundTransparency = 1.000 Notifications.Position = UDim2.new(-0.00105262455, 0, 1, 0) Notifications.Size = UDim2.new(0, 165, 0, 339) UIListLayout_3.Parent = Notifications UIListLayout_3.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout_3.VerticalAlignment = Enum.VerticalAlignment.Bottom UIListLayout_3.Padding = UDim.new(0.0149999997, 0) UIPadding_18.Parent = Notifications UIPadding_18.PaddingBottom = UDim.new(0.0199999996, 0) UIPadding_18.PaddingLeft = UDim.new(0.0399999991, 0) NotificationTemplate.Name = "NotificationTemplate" NotificationTemplate.Parent = Notifications NotificationTemplate.BackgroundColor3 = Color3.fromRGB(49, 49, 49) NotificationTemplate.Position = UDim2.new(-9.03100705e-09, 0, 0.899999976, 0) NotificationTemplate.Size = UDim2.new(1.31565654, 0, 0.100000001, 0) NotificationTemplate.Visible = false UICorner_21.CornerRadius = UDim.new(0.170000002, 0) UICorner_21.Parent = NotificationTemplate TextLabel.Parent = NotificationTemplate TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BackgroundTransparency = 1.000 TextLabel.Size = UDim2.new(1, 0, 1, 0) TextLabel.Font = Enum.Font.Roboto TextLabel.Text = "Aimbot Disabled" TextLabel.TextColor3 = Color3.fromRGB(250, 250, 250) TextLabel.TextScaled = true TextLabel.TextSize = 14.000 TextLabel.TextWrapped = true TextLabel.TextXAlignment = Enum.TextXAlignment.Left UIPadding_19.Parent = TextLabel UIPadding_19.PaddingBottom = UDim.new(0.25999999, 0) UIPadding_19.PaddingLeft = UDim.new(0.170000002, 0) UIPadding_19.PaddingTop = UDim.new(0.25999999, 0) ImageLabel.Parent = NotificationTemplate ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ImageLabel.BackgroundTransparency = 1.000 ImageLabel.Position = UDim2.new(0.0199999996, 0, 0.0900000036, 0) ImageLabel.Size = UDim2.new(0.127391785, 0, 0.819396734, 0) ImageLabel.Image = "rbxassetid://11288880618" OpenFrame.Name = "OpenFrame" OpenFrame.Parent = ExGui OpenFrame.AnchorPoint = Vector2.new(1, 1) OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) OpenFrame.BackgroundTransparency = 1.000 OpenFrame.BorderSizePixel = 0 OpenFrame.Position = UDim2.new(0.991000116, 0, 1.00983274, 0) OpenFrame.Size = UDim2.new(0.258062363, 0, 0.0547295995, 0) OpenFrame.ZIndex = 10001 UICorner_22.CornerRadius = UDim.new(0.0399999991, 0) UICorner_22.Parent = OpenFrame Frame.Parent = OpenFrame Frame.BackgroundColor3 = Color3.fromRGB(47, 47, 47) Frame.BorderSizePixel = 0 Frame.Size = UDim2.new(1.00000012, 0, 0.626892149, 0) UICorner_23.CornerRadius = UDim.new(0.439999998, 0) UICorner_23.Parent = Frame Frame_2.Parent = OpenFrame Frame_2.BackgroundColor3 = Color3.fromRGB(47, 47, 47) Frame_2.BorderSizePixel = 0 Frame_2.Position = UDim2.new(0, 0, 0.232183903, 0) Frame_2.Size = UDim2.new(1.00000012, 0, 0.626892149, 0) TextLabel_2.Parent = OpenFrame TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel_2.BackgroundTransparency = 1.000 TextLabel_2.Position = UDim2.new(-0.00227533141, 0, 0, 0) TextLabel_2.Size = UDim2.new(1.00000024, 0, 0.859074175, 0) TextLabel_2.Font = Enum.Font.GothamBlack TextLabel_2.Text = "LAST" TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel_2.TextScaled = true TextLabel_2.TextSize = 14.000 TextLabel_2.TextWrapped = true TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left UIPadding_20.Parent = TextLabel_2 UIPadding_20.PaddingBottom = UDim.new(0.159999996, 0) UIPadding_20.PaddingLeft = UDim.new(0.0370000005, 0) UIPadding_20.PaddingTop = UDim.new(0.200000003, 0) Button_6.Name = "Button" Button_6.Parent = OpenFrame Button_6.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Button_6.BackgroundTransparency = 1.000 Button_6.Position = UDim2.new(0.905381918, 0, 0.190482393, 0) Button_6.Size = UDim2.new(0.07522358, 0, 0.492000014, 0) Button_6.Image = "rbxassetid://10296859925" UIAspectRatioConstraint_3.Parent = OpenFrame UIAspectRatioConstraint_3.AspectRatio = 7.000 Maximize.Name = "Maximize" Maximize.Parent = OpenFrame Maximize.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Maximize.BackgroundTransparency = 1.000 Maximize.Position = UDim2.new(0.00227420544, 0, 0.0419320054, 0) Maximize.Size = UDim2.new(0.978330493, 0, 0.778408885, 0) ----[[ NOTIFICATIONS ]]---- local MainGui = ExGui --game.Players.LocalPlayer.PlayerGui.ExGui local template = MainGui.Notifications.NotificationTemplate local notification = function(msg, t) print(msg, t) local newNotification = template:Clone() newNotification.Parent = MainGui.Notifications newNotification.Name = "Notification" newNotification.TextLabel.Text = msg newNotification.Visible = true wait(t) newNotification.Visible = false end ---- [[ GUI ]] ---- local support = { 286090429, -- Arsenal 3233893879, -- Bad Business 142823291 -- MM2 } local MainFrame = MainGui.MainFrame local SelectionFrame1 = MainFrame.SploitsFrame.SelectionFrame1 local marketplaceService = game:GetService("MarketplaceService") local isSuccessful, info = pcall(marketplaceService.GetProductInfo, marketplaceService, game.PlaceId) if isSuccessful then title = info.Name local max = 25 if string.len(title) > max then title = title:sub(1, max) .. "..." end end local Details = marketplaceService:GetProductInfo(game.PlaceId) MainFrame.EType.Fade.BackgroundTransparency = 0.7 MainFrame.EType.Verified.Visible = false MainFrame.EType.Verified.Image = "rbxassetid://240664703" local thumbnail = 'rbxassetid://11308505437' for i, v in pairs(support) do if game.PlaceId == v then MainFrame.EType.Fade.BackgroundTransparency = 0.5 thumbnail = 'https://www.roblox.com/asset-thumbnail/image?assetId='..game.PlaceId..'&width=768&height=432&format=png' MainFrame.EType.Verified.Visible = true MainFrame.EType.Verified.Image = "rbxassetid://7376363905" end end MainFrame.EType.Title.Text = title local iconSuccess, info = pcall(marketplaceService.GetProductInfo, marketplaceService, game.PlaceId) if iconSuccess then local Details = marketplaceService:GetProductInfo(game.PlaceId) local IconID = Details.IconImageAssetId if IconID == 0 then IconID = 9014754169 end MainFrame.EType.Icon.Image = "rbxassetid://"..IconID end MainFrame.EType.Thumbnail.Image = thumbnail local Aimbot = SelectionFrame1.Aimbot local function ab() interNoise:Play() if aimbotEnabled == true then aimbotEnabled = false Aimbot.Switch.Button:TweenPosition(UDim2.new(0.03, 0, 0, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .1) elseif aimbotEnabled == false then aimbotEnabled = true Aimbot.Switch.Button:TweenPosition(UDim2.new(0.441, 0, 0, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .1) end end Aimbot.Switch.MouseButton1Down:Connect(ab) Aimbot.Switch.Button.MouseButton1Down:Connect(ab) local SmoothAim = SelectionFrame1.SmoothAim local function sa() interNoise:Play() if smoothAim == true then smoothAim = false SmoothAim.Switch.Button:TweenPosition(UDim2.new(0.03, 0, 0, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .1) elseif smoothAim == false then smoothAim = true SmoothAim.Switch.Button:TweenPosition(UDim2.new(0.441, 0, 0, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .1) end end SmoothAim.Switch.MouseButton1Down:Connect(sa) SmoothAim.Switch.Button.MouseButton1Down:Connect(sa) local playerOutline = SelectionFrame1.PlayerOutline local function po() interNoise:Play() if PlayerOutlineEnabled == true then PlayerOutlineEnabled = false playerOutline.Switch.Button:TweenPosition(UDim2.new(0.03, 0, 0, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .1) elseif PlayerOutlineEnabled == false then PlayerOutlineEnabled = true playerOutline.Switch.Button:TweenPosition(UDim2.new(0.441, 0, 0, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .1) end end playerOutline.Switch.MouseButton1Down:Connect(po) playerOutline.Switch.Button.MouseButton1Down:Connect(po) local ESP = SelectionFrame1.ESP local function esp() interNoise:Play() if ESPEnabled == true then ESPEnabled = false ESP.Switch.Button:TweenPosition(UDim2.new(0.03, 0, 0, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .1) elseif ESPEnabled == false then ESPEnabled = true local msg = "ESP Currently Disabled!" local t = 3 spawn(function() notification(msg, t) end) ESP.Switch.Button:TweenPosition(UDim2.new(0.441, 0, 0, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .1) end end ESP.Switch.MouseButton1Down:Connect(esp) ESP.Switch.Button.MouseButton1Down:Connect(esp) MainGui.OpenFrame.Visible = false MainGui.OpenFrame.Maximize.MouseButton1Down:Connect(function() MainFrame.Position = UDim2.new(0.99, 0, 1.54, 0) MainFrame.Visible = true MainFrame:TweenPosition(UDim2.new(0.99, 0, 1, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .2) MainGui.OpenFrame.Visible = false end) local dbclosebutton = false MainFrame.TopBar.CloseButton.MouseButton1Down:Connect(function() if dbclosebutton == false then dbclosebutton = true MainFrame.Position = UDim2.new(0.99, 0, 1, 0) MainFrame:TweenPosition(UDim2.new(0.99, 0, 1.54, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .2) wait(.2) MainFrame.Visible = false MainGui.OpenFrame.Visible = true dbclosebutton = false end end) game:GetService("RunService").Heartbeat:Connect(function() if aimbotEnabled == true then if UserInputService.MouseEnabled == true and aimKeyDown == true then local Players = game:GetService("Players") for _, player in pairs(Players:GetPlayers()) do if player.UserId ~= game.Players.LocalPlayer.UserId then if player.Team ~= nil then if player.Team ~= game.Players.LocalPlayer.Team then local Character = player.Character local targetPosition = Character:WaitForChild("HumanoidRootPart").Position local myPosition = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").Position local distance = (myPosition - targetPosition).magnitude if distance < cDistance then cDistance = distance closestPlayer = player print(closestPlayer) end end else local Character = player.Character local targetPosition = Character:WaitForChild("HumanoidRootPart").Position local myPosition = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").Position local distance = (myPosition - targetPosition).magnitude if distance < cDistance then cDistance = distance closestPlayer = player print(closestPlayer) end end end end if closestPlayer ~= nil then local LookDirection = CFrame.new(camera.CFrame.Position, closestPlayer.Character:WaitForChild("Head").Position) local NewCFrame = CFrame.new(camera.CFrame.Position) * LookDirection if smoothAim == true then camera.CFrame = camera.CFrame:lerp(NewCFrame, AimSmoothness) else camera.CFrame = NewCFrame end else local LookDirection = CFrame.new(camera.CFrame.Position, AimPart.Position) local NewCFrame = CFrame.new(camera.CFrame.Position) * LookDirection if smoothAim == true then camera.CFrame = camera.CFrame:lerp(NewCFrame, AimSmoothness) else camera.CFrame = NewCFrame end end end end if PlayerOutlineEnabled == true then for _, player in pairs(game:GetService("Players"):GetPlayers()) do if not player.Character:FindFirstChild("Highlight") then local newHighlight = Instance.new("Highlight", player.Character) newHighlight.FillTransparency = 1 newHighlight.OutlineColor = Color3.fromRGB(255, 0, 0) if player.Team == nil then newHighlight.OutlineColor = Color3.fromRGB(255, 0, 0) else newHighlight.OutlineColor = player.TeamColor.Color end newHighlight.OutlineTransparency = 0 newHighlight.Enabled = true end end else for _, player in pairs(game:GetService("Players"):GetPlayers()) do if player.Character:FindFirstChild("Highlight") then player.Character:WaitForChild("Highlight"):Destroy() end end end if ESPEnabled == true then local Targets = {} for i, Player in pairs(game.Players:GetPlayers()) do if Player == game.Players.LocalPlayer then continue end local IsTeammate = game.Players.LocalPlayer.Team ~= nil and Player.Team == game.Players.LocalPlayer.Team if not DrawTeammates and IsTeammate then continue end local Character = Player.Character if not Character then continue end local TargetPart = Character:FindFirstChild(TargetPartName) if not TargetPart then continue end local ScreenPoint, OnScreen = Camera:WorldToScreenPoint(TargetPart.Position) if OnScreen then table.insert(Targets, {Vector2.new(ScreenPoint.X, ScreenPoint.Y), IsTeammate and TeammateLineColor or LineColor}) end end if FindHumanoids then for _, Obj in pairs(workspace:GetDescendants()) do if Obj.ClassName ~= "Humanoid" then continue end if game.Players:FindFirstChild(Obj.Parent.Name) then continue end local TargetPart = Obj.Parent:FindFirstChild(TargetPartName) if not TargetPart then continue end local ScreenPoint, OnScreen = Camera:WorldToScreenPoint(TargetPart.Position) if OnScreen then table.insert(Targets, {Vector2.new(ScreenPoint.X, ScreenPoint.Y), GenericHumanoidLineColor}) end end end if #Targets > #Lines then local NewLine = Instance.new("Frame") NewLine.Name = "Snapline" NewLine.AnchorPoint = Vector2.new(.5, .5) NewLine.Parent = Gui table.insert(Lines, NewLine) end for i, Line in pairs(Lines) do local TargetData = Targets[i] if not TargetData then Line:Destroy() table.remove(Lines, i) continue end Setline(Line, LineWidth, TargetData[2], LineOrigin, TargetData[1]) end else for i, v in ipairs(game.Players.LocalPlayer.PlayerGui.SnaplineGui:GetChildren()) do v.Visible = false end end end) ----[[ AIMBOT ]]---- UserInputService.InputBegan:Connect(function(input,gameProcessed) if gameProcessed then return end if input.KeyCode == aimbotKey then if UserInputService:IsKeyDown(aimbotKey) then aimKeyDown = true SelectionFrame1.AimbotKey.Key.BackgroundColor3 = Color3.fromRGB(185, 185, 185) end elseif input.KeyCode == aimbotOnOffKey then if UserInputService:IsKeyDown(aimbotOnOffKey) then if aimbotEnabled == false then aimbotEnabled = true local msg = "Aimbot Enabled" local t = 3 spawn(function() notification(msg, t) end) Aimbot.Switch.Button:TweenPosition(UDim2.new(0.441, 0, 0, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .1) SelectionFrame1.AimbotEnabledKey.Key.BackgroundColor3 = Color3.fromRGB(185, 185, 185) elseif aimbotEnabled == true then aimbotEnabled = false local msg = "Aimbot Disabled" local t = 3 spawn(function() notification(msg, t) end) Aimbot.Switch.Button:TweenPosition(UDim2.new(0.03, 0, 0, 0), Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, .1) SelectionFrame1.AimbotEnabledKey.Key.BackgroundColor3 = Color3.fromRGB(185, 185, 185) end interNoise:Play() end end end) UserInputService.InputEnded:Connect(function(input,gameProcessed) if gameProcessed then return end if input.KeyCode == aimbotKey then aimKeyDown = false SelectionFrame1.AimbotKey.Key.BackgroundColor3 = Color3.fromRGB(255, 255, 255) elseif input.KeyCode == aimbotOnOffKey then SelectionFrame1.AimbotEnabledKey.Key.BackgroundColor3 = Color3.fromRGB(255, 255, 255) end end) --[[ DIRECT TELEPORT ]]-- local TPButton = DirectTeleport:WaitForChild("Continue") local TPInput = DirectTeleport:WaitForChild("InputBox") TPButton.MouseButton1Down:Connect(function() for i,v in pairs(game.Players:GetChildren()) do if v.Name == TPInput.Text then game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame = v.Character:WaitForChild("HumanoidRootPart").CFrame + Vector3.new(0, 1, 0) end end end)