Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 120.93 KB | None | 0 0
  1. wait() -- necessary wait to give the game a bit of time to initialize
  2.  
  3. --////////// CHANGE THESE DAMN VARIABLES BELOW IF YOU WISH
  4. MENU_TOGGLE_BIND = {Enum.KeyCode.Insert} -- bind that toggles the menu (Shift+Alt by default)
  5.  
  6. AIM_BIND = "t" -- the bind that activates the aimbot
  7. AIM_TARGET = "Head" -- what the bot is gon aim at (case sensitive)
  8. AIM_AUTO = false -- hold your aim bind and you will automatically aim at the closest person to you
  9. AIM_FFA = false
  10. AIM_ENABLE = true
  11.  
  12. AIM_FOV = 1.5 -- in studs (set to 0 if u want to disable)
  13.  
  14. WALL_BIND_TOGGLE = "p"
  15. WALL_ENABLE = false
  16. WALL_TEAMMATE = true
  17. WALL_TRANSPARENCY = .9
  18. WALL_TEAMMATE_COLOR = Color3.fromRGB(85,255,0)
  19. WALL_ENEMY_COLOR = Color3.fromRGB(255,0,0)
  20. WALL_NEUTRAL_COLOR = Color3.fromRGB(255,176,0)
  21.  
  22. ESP_BIND_TOGGLE = "p"
  23. ESP_ENABLE = false
  24.  
  25. LOCALPLR_LOOKVECTOR = true -- true if you want to shift your character in a way thats relative to the cam's lookVector cframe
  26. LOCALPLR_BODYSPEED = 25
  27. LOCALPLR_BODYSPEED_ENABLE = true
  28. LOCALPLR_BODYSPEED_BIND = "k"
  29. LOCALPLR_SHIFT_BIND = "j"
  30.  
  31. NOCLIP_ENABLE = false
  32. NOCLIP_SPEED = 2
  33. NOCLIP_BIND = "n"
  34.  
  35. --////////// BUT DON'T TOUCH THESE ONES (OR YOU RISK GETTING BANDED!!!)
  36. LOCALPLR_GRAVITY = workspace.Gravity
  37. LOCALPLR_WALKSPEED = nil
  38. LOCALPLR_JUMPPOWER = nil
  39. LOCALPLR_FORCESETTINGS = false
  40.  
  41. EXTRA_CAM_FOV = workspace.CurrentCamera.FieldOfView
  42. EXTRA_FULL_BRIGHT = false
  43. EXTRA_FORCESETTINGS = false
  44. --//////////EVERYTHING BELOW HERE IS CODE AND SHOULD NOT BE TOUCHED
  45. local rootParent
  46. if game:GetService("RunService"):IsStudio() then
  47. rootParent = game.Players.LocalPlayer.PlayerGui
  48. else
  49. rootParent = game.CoreGui
  50. end
  51.  
  52. local plr = game.Players.LocalPlayer
  53. local hum
  54. local mouse = plr:GetMouse()
  55. local cam = workspace.CurrentCamera
  56.  
  57. local aimbotOn = false
  58. local target = nil
  59.  
  60. local whiteList = {}
  61.  
  62. local function getTouchingParts(part) -- bypass the cancollide false issue
  63. local connection = part.Touched:Connect(function() end)
  64. local results = part:GetTouchingParts()
  65. connection:Disconnect()
  66. return results
  67. end
  68.  
  69. local function CG(s) -- garbage collection, only works in pure lua, not in roblox itself, and its not needed really
  70. if not game:GetService("RunService"):IsStudio() then
  71. collectgarbage(s)
  72. end
  73. end
  74.  
  75. local function plrIsTeammate(teammate) -- check if player is a teammate of the localplayer
  76. if teammate.Team == plr.Team then
  77. return true
  78. end
  79. return false
  80. end
  81.  
  82. local function isInTable(tableValue, toFind) -- check if something is in a table
  83. local found = false
  84. for i,v in pairs(tableValue) do
  85. if v == toFind then
  86. found = true
  87. break
  88. end
  89. end
  90. return found
  91. end
  92.  
  93. local function tablesAreEqual(a,b) -- check if two tables are the same
  94. for i,v in pairs(a) do
  95. if v ~= b[i] then
  96. return false
  97. end
  98. end
  99. return true
  100. end
  101.  
  102.  
  103. local function updateHum()
  104. workspace:WaitForChild(plr.Name)
  105. plr.Character:WaitForChild("Humanoid")
  106. hum = plr.Character.Humanoid
  107. end
  108. coroutine.wrap(updateHum)()
  109. plr.CharacterAdded:connect(updateHum)
  110.  
  111. local function CreateInstance(cls,props) -- gui making
  112. local inst = Instance.new(cls)
  113. for i,v in pairs(props) do
  114. inst[i] = v
  115. end
  116. return inst
  117. end
  118.  
  119. local function get_ui()
  120. local sock_cheat = CreateInstance('ScreenGui',{DisplayOrder=0,Enabled=true,ResetOnSpawn=false,Name='sock_cheat', Parent=rootParent})
  121. local main_frame = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.5, -250, 0.5, -125),Rotation=0,Selectable=true,Size=UDim2.new(0, 640, 0, 25),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'main_frame',Parent = sock_cheat})
  122. local first_menu = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.266667, 0.266667, 0.266667),BackgroundTransparency=0.25,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 25),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 0, 225),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'first_menu',Parent = main_frame})
  123. local tab1 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 10),Rotation=0,Selectable=false,Size=UDim2.new(0.200000003, 0, 1, -20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab1',Parent = first_menu})
  124. local aim_menu_button = CreateInstance('TextButton',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size24,Text='Aimbot',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=20,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 3, 0, 3),Rotation=0,Selectable=true,Size=UDim2.new(1, -6, 0, 25),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='aim_menu_button',Parent = tab1})
  125. local extra_menu_button = CreateInstance('TextButton',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size24,Text='Extra',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=20,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 3, 0, 87),Rotation=0,Selectable=true,Size=UDim2.new(1, -6, 0, 25),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='extra_menu_button',Parent = tab1})
  126. local plr_menu_button = CreateInstance('TextButton',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size24,Text='Character',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=20,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 3, 0, 59),Rotation=0,Selectable=true,Size=UDim2.new(1, -6, 0, 25),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='plr_menu_button',Parent = tab1})
  127. local wall_menu_button = CreateInstance('TextButton',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size24,Text='Visuals',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=20,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 3, 0, 31),Rotation=0,Selectable=true,Size=UDim2.new(1, -6, 0, 25),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='wall_menu_button',Parent = tab1})
  128. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size24,Text='sock cheat',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=23,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = main_frame})
  129. local toggle_menu = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size24,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=20,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=true,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0.64999997615814,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -23, 0, 2),Rotation=0,Selectable=true,Size=UDim2.new(0, 21, 0, 21),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='toggle_menu',Parent = main_frame})
  130. local memory_usage = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansItalic,FontSize=Enum.FontSize.Size18,Text='memory usage : 1 mb',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, -12),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='memory_usage',Parent = main_frame})
  131. local aim_menu = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -10, 1, 10),Rotation=0,Selectable=true,Size=UDim2.new(0.75, 0, 1, 180),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name = 'aim_menu',Parent = main_frame})
  132. local tab1 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab1',Parent = aim_menu})
  133. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Aimbot',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab1})
  134. local aim_enable = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Top,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 28),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='aim_enable',Parent = aim_menu})
  135. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Enabled',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = aim_enable})
  136. local aim_auto = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Top,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 50),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='aim_auto',Parent = aim_menu})
  137. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Automatic',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = aim_auto})
  138. local aim_ffa = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Top,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 72),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='aim_ffa',Parent = aim_menu})
  139. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Free for all',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = aim_ffa})
  140. local tab2 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 160, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab2',Parent = aim_menu})
  141. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Settings',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab2})
  142. local aim_bind = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 170, 0, 45),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='aim_bind',Parent = aim_menu})
  143. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Bind',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = aim_bind})
  144. local aim_target = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='Head',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 170, 0, 85),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='aim_target',Parent = aim_menu})
  145. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Lock Target',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = aim_target})
  146. local aim_fov = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='1.5',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 170, 0, 125),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='aim_fov',Parent = aim_menu})
  147. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Aimbot FOV',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = aim_fov})
  148. local title2 = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size24,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=23,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Right,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -30, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title2',Parent = main_frame})
  149. local wall_menu = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -10, 1, 10),Rotation=0,Selectable=true,Size=UDim2.new(0.75, 0, 1, 180),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name = 'wall_menu',Parent = main_frame})
  150. local tab1 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab1',Parent = wall_menu})
  151. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Wallhack',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab1})
  152. local wall_enable = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 28),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='wall_enable',Parent = wall_menu})
  153. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Enabled',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = wall_enable})
  154. local tab2 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 160, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab2',Parent = wall_menu})
  155. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' ESP',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab2})
  156. local tab3 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 320, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab3',Parent = wall_menu})
  157. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Settings',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab3})
  158. local wall_bind_toggle = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 330, 0, 45),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='wall_bind_toggle',Parent = wall_menu})
  159. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Wallhack Bind',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = wall_bind_toggle})
  160. local esp_enable = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 165, 0, 28),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='esp_enable',Parent = wall_menu})
  161. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Enabled',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = esp_enable})
  162. local wall_transparency = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='0.9',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 65),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='wall_transparency',Parent = wall_menu})
  163. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Transparency',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = wall_transparency})
  164. local esp_bind_toggle = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 330, 0, 85),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='esp_bind_toggle',Parent = wall_menu})
  165. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='ESP Bind',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = esp_bind_toggle})
  166. local wall_teammate = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 90),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='wall_teammate',Parent = wall_menu})
  167. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Wall Teammates',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = wall_teammate})
  168. local extra_menu = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -10, 1, 10),Rotation=0,Selectable=true,Size=UDim2.new(0.75, 0, 1, 180),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name = 'extra_menu',Parent = main_frame})
  169. local tab1 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab1',Parent = extra_menu})
  170. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Lighting',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab1})
  171. local tab2 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 160, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab2',Parent = extra_menu})
  172. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Camera',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab2})
  173. local full_bright = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 28),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='full_bright',Parent = extra_menu})
  174. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Full Bright',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = full_bright})
  175. local cam_fov = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 170, 0, 45),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='cam_fov',Parent = extra_menu})
  176. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Field of view',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = cam_fov})
  177. local tab3 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 320, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab3',Parent = extra_menu})
  178. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Settings',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab3})
  179. local force_settings = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 325, 0, 28),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='force_settings',Parent = extra_menu})
  180. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Force Settings',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = force_settings})
  181. local welcome_menu = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.223529, 0.223529, 0.223529),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, -10, 1, 10),Rotation=0,Selectable=true,Size=UDim2.new(0.75, 0, 1, 180),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'welcome_menu',Parent = main_frame})
  182. local top = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size32,Text='sock cheat',TextColor3=Color3.new(1, 0.666667, 0),TextScaled=false,TextSize=30,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.5, 0, 0.5, -10),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='top',Parent = welcome_menu})
  183. local line = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0.5, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(1, 1, 1),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.5, 0, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0.800000012, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'line',Parent = welcome_menu})
  184. local bottom = CreateInstance('TextLabel',{Font=Enum.Font.Gotham,FontSize=Enum.FontSize.Size18,Text='at your service . . .',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Top,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.5, 0, 0.5, 10),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='bottom',Parent = welcome_menu})
  185. local plr_menu = CreateInstance('ScrollingFrame',{BottomImage='rbxasset://textures/ui/Scroll/scroll-bottom.png',CanvasPosition=Vector2.new(0, 0),CanvasSize=UDim2.new(0, 0, 1, 320),MidImage='rbxasset://textures/ui/Scroll/scroll-middle.png',ScrollBarThickness=9,ScrollingEnabled=true,TopImage='rbxasset://textures/ui/Scroll/scroll-top.png',Active=false,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=true,Draggable=false,Position=UDim2.new(1, -10, 1, 10),Rotation=0,Selectable=true,Size=UDim2.new(0.75, 0, 1, 180),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name='plr_menu',Parent = main_frame})
  186. local tab1 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.219608, 0.219608, 0.219608),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 0, 205),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab1',Parent = plr_menu})
  187. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Humanoid',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.101961, 0.164706, 0.203922),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab1})
  188. local tab2 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.219608, 0.219608, 0.219608),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 160, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 0, 205),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab2',Parent = plr_menu})
  189. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Mobility',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.101961, 0.164706, 0.203922),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab2})
  190. local tab3 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.219608, 0.219608, 0.219608),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 320, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 0, 130),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab3',Parent = plr_menu})
  191. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Body Speed',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.101961, 0.164706, 0.203922),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab3})
  192. local tab4 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.219608, 0.219608, 0.219608),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 320, 0, 135),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 0, 70),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab4',Parent = plr_menu})
  193. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Settings',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.101961, 0.164706, 0.203922),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab4})
  194. local teleport_to = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 165, 0, 45),Rotation=0,Selectable=false,Size=UDim2.new(0, 141, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'teleport_to',Parent = plr_menu})
  195. local X = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=true,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(0.300000012, 0, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='X',Parent = teleport_to})
  196. local Y = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=true,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.349999994, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(0.300000012, 0, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='Y',Parent = teleport_to})
  197. local Z = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=true,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(0.300000012, 0, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='Z',Parent = teleport_to})
  198. local teleport = CreateInstance('TextButton',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text='Teleport',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 1, 1),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='teleport',Parent = teleport_to})
  199. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Teleport',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = teleport_to})
  200. local body_speed = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 330, 0, 65),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='body_speed',Parent = plr_menu})
  201. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Speed',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = body_speed})
  202. local body_speed_bind = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 330, 0, 104),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='body_speed_bind',Parent = plr_menu})
  203. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Bind',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = body_speed_bind})
  204. local body_speed_enable = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 325, 0, 28),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='body_speed_enable',Parent = plr_menu})
  205. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Enable',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = body_speed_enable})
  206. local force_settings = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 28),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='force_settings',Parent = plr_menu})
  207. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Force Settings',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = force_settings})
  208. local gravity = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='196.2',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 138),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='gravity',Parent = plr_menu})
  209. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Gravity',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = gravity})
  210. local jump_power = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 101),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='jump_power',Parent = plr_menu})
  211. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Jump Power',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = jump_power})
  212. local look_vector = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 325, 0, 160),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='look_vector',Parent = plr_menu})
  213. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Shift by Look Vector',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = look_vector})
  214. local walkspeed = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 65),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='walkspeed',Parent = plr_menu})
  215. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Walk Speed',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = walkspeed})
  216. local shift_by = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 165, 0, 102),Rotation=0,Selectable=false,Size=UDim2.new(0, 141, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'shift_by',Parent = plr_menu})
  217. local X = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=true,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(0.300000012, 0, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name='X',Parent = shift_by})
  218. local Y = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=true,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.349999994, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(0.300000012, 0, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name='Y',Parent = shift_by})
  219. local Z = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=true,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(1, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(0.300000012, 0, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=false,ZIndex=1,Name='Z',Parent = shift_by})
  220. local shift = CreateInstance('TextButton',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text='Shift',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 1, 1),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='shift',Parent = shift_by})
  221. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Shift by',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = shift_by})
  222. local look_vector_scale = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='Look Vector', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=true,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 1, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='look_vector_scale',Parent = shift_by})
  223. local shift_bind = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 57),Rotation=0,Selectable=true,Size=UDim2.new(1, 0, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='shift_bind',Parent = shift_by})
  224. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Shift Bind',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = shift_bind})
  225. local tab5 = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.219608, 0.219608, 0.219608),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 215),Rotation=0,Selectable=false,Size=UDim2.new(0, 150, 0, 130),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'tab5',Parent = plr_menu})
  226. local title = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansSemibold,FontSize=Enum.FontSize.Size18,Text=' Noclip',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=17,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.870588, 0.564706, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.101961, 0.164706, 0.203922),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 0, 20),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='title',Parent = tab5})
  227. local noclip_enable = CreateInstance('TextButton',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0.541176, 0.341176, 0),TextStrokeTransparency=0,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.219608, 0.345098, 0.435294),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 7, 0, 242),Rotation=0,Selectable=true,Size=UDim2.new(0, 15, 0, 15),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='noclip_enable',Parent = plr_menu})
  228. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Enable',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1, 10, 0.5, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = noclip_enable})
  229. local noclip_speed = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 279),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='noclip_speed',Parent = plr_menu})
  230. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Speed',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = noclip_speed})
  231. local noclip_bind = CreateInstance('TextBox',{ClearTextOnFocus=true,Font=Enum.Font.Code,FontSize=Enum.FontSize.Size18,MultiLine=false,Text='',TextColor3=Color3.new(1, 1, 1), PlaceholderText='', PlaceholderColor3=Color3.new(0.7, 0.7, 0.7),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.137255, 0.137255, 0.137255),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 10, 0, 317),Rotation=0,Selectable=true,Size=UDim2.new(0, 130, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='noclip_bind',Parent = plr_menu})
  232. local txt = CreateInstance('TextLabel',{Font=Enum.Font.SourceSansBold,FontSize=Enum.FontSize.Size18,Text='Bind',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=15,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=0.5,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Left,TextYAlignment=Enum.TextYAlignment.Bottom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, -2),Rotation=0,Selectable=false,Size=UDim2.new(0, 0, 0, 0),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='txt',Parent = noclip_bind})
  233.  
  234. return {sock_cheat,main_frame}
  235. end
  236.  
  237. local sgui,ui
  238. if game.StarterGui:FindFirstChild("sock_cheat") then
  239. plr.PlayerGui:WaitForChild("sock_cheat")
  240. sgui = plr.PlayerGui.sock_cheat
  241. ui = plr.PlayerGui.sock_cheat.main_frame
  242. end
  243. if not sgui and not ui then
  244. local get_ui_execute = get_ui()
  245. sgui = get_ui_execute[1]
  246. ui = get_ui_execute[2]
  247. end
  248.  
  249. local aim_target_display = Instance.new("TextLabel")
  250. aim_target_display.Name = "aim_target_display"
  251. aim_target_display.BackgroundColor3 = Color3.new(0, 0, 0)
  252. aim_target_display.BackgroundTransparency = 0.5
  253. aim_target_display.BorderSizePixel = 0
  254. aim_target_display.Position = UDim2.new(0.5, -175, 1, -150)
  255. aim_target_display.Size = UDim2.new(0, 350, 0, 25)
  256. aim_target_display.Font = Enum.Font.Gotham
  257. aim_target_display.TextColor3 = Color3.new(0.737255, 0.737255, 0.737255)
  258. aim_target_display.TextSize = 20
  259. aim_target_display.TextStrokeTransparency = 0.5
  260. aim_target_display.TextWrapped = true
  261. aim_target_display.Parent = sgui
  262.  
  263. local function updateTargetUI(name)
  264. if name then
  265. aim_target_display.Text = "TARGET : "..name
  266. aim_target_display.Visible = true
  267. elseif not name then
  268. aim_target_display.Visible = false
  269. end
  270. end
  271. updateTargetUI(nil)
  272.  
  273. local function ui_setDraggable(gui)
  274. local dragging,dragInput,dragStart,startPos
  275. local function update(input)
  276. local delta = input.Position - dragStart
  277. gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  278. end
  279. gui.InputBegan:Connect(function(input)
  280. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  281. dragging = true
  282. dragStart = input.Position
  283. startPos = gui.Position
  284.  
  285. input.Changed:Connect(function()
  286. if input.UserInputState == Enum.UserInputState.End then
  287. dragging = false
  288. end
  289. end)
  290. end
  291. end)
  292. gui.InputChanged:Connect(function(input)
  293. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  294. dragInput = input
  295. end
  296. end)
  297. game:GetService("UserInputService").InputChanged:Connect(function(input)
  298. if input == dragInput and dragging then
  299. update(input)
  300. end
  301. end)
  302. end
  303. ui_setDraggable(ui)
  304.  
  305. local function toggleMenu(visible) -- toggle menu visibility
  306. ui.Visible = visible
  307. end
  308. ui.toggle_menu.MouseButton1Click:connect(function()
  309. toggleMenu(false)
  310. end)
  311.  
  312. local toggledText = "+"
  313. local untoggledText = ""
  314. local function ui_toggle(button,on,off)
  315. if button.Text == toggledText then
  316. button.Text = untoggledText
  317. off()
  318. elseif button.Text == untoggledText then
  319. button.Text = toggledText
  320. on()
  321. end
  322. end
  323.  
  324. local function ui_switchMenu(newMenu)
  325. for i,v in pairs(ui:GetChildren()) do
  326. if (v:IsA("Frame") or v:IsA("ScrollingFrame")) and v.Name ~= "first_menu" then
  327. if string.match(v.Name,"_menu") == "_menu" then
  328. v.Visible = false
  329. end
  330. end
  331. end
  332. newMenu.Visible = true
  333. end
  334. ui.aim_menu.aim_enable.MouseButton1Click:connect(function()
  335. ui_toggle(ui.aim_menu.aim_enable,
  336. function() -- toggle
  337. AIM_ENABLE = true
  338. end
  339. ,
  340. function() -- untoggle
  341. AIM_ENABLE = false
  342. end)
  343. end)
  344. if AIM_ENABLE then
  345. ui.aim_menu.aim_enable.Text = toggledText
  346. else
  347. ui.aim_menu.aim_enable.Text = untoggledText
  348. end
  349.  
  350. ui.aim_menu.aim_fov.FocusLost:connect(function()
  351. if tonumber(ui.aim_menu.aim_fov.Text) then
  352. AIM_FOV = tonumber(ui.aim_menu.aim_fov.Text)
  353. else
  354. ui.aim_menu.aim_fov.Text = AIM_FOV
  355. end
  356. end)
  357. ui.aim_menu.aim_fov.Text = AIM_FOV
  358.  
  359. ui.aim_menu.aim_ffa.MouseButton1Click:connect(function()
  360. ui_toggle(ui.aim_menu.aim_ffa,
  361. function() -- toggle
  362. AIM_FFA = true
  363. end
  364. ,
  365. function() -- untoggle
  366. AIM_FFA = false
  367. end)
  368. end)
  369. if AIM_FFA then
  370. ui.aim_menu.aim_ffa.Text = toggledText
  371. else
  372. ui.aim_menu.aim_ffa.Text = untoggledText
  373. end
  374.  
  375. ui.aim_menu.aim_auto.MouseButton1Click:connect(function()
  376. ui_toggle(ui.aim_menu.aim_auto,
  377. function() -- toggle
  378. AIM_AUTO = true
  379. end
  380. ,
  381. function() -- untoggle
  382. AIM_AUTO = false
  383. end)
  384. end)
  385. if AIM_AUTO then
  386. ui.aim_menu.aim_auto.Text = toggledText
  387. else
  388. ui.aim_menu.aim_auto.Text = untoggledText
  389. end
  390.  
  391. ui.wall_menu.wall_enable.MouseButton1Click:connect(function()
  392. ui_toggle(ui.wall_menu.wall_enable,
  393. function() -- toggle
  394. WALL_ENABLE = true
  395. toggleWalls(true)
  396. end
  397. ,
  398. function() -- untoggle
  399. WALL_ENABLE = false
  400. toggleWalls(false)
  401. end)
  402. end)
  403. if WALL_ENABLE then
  404. ui.wall_menu.wall_enable.Text = toggledText
  405. else
  406. ui.wall_menu.wall_enable.Text = untoggledText
  407. end
  408.  
  409. ui.wall_menu.wall_teammate.MouseButton1Click:connect(function()
  410. ui_toggle(ui.wall_menu.wall_teammate,
  411. function() -- toggle
  412. WALL_TEAMMATE = true
  413. refreshWalls()
  414. refreshESP()
  415. end
  416. ,
  417. function() -- untoggle
  418. WALL_TEAMMATE = false
  419. refreshWalls()
  420. refreshESP()
  421. end)
  422. end)
  423. if WALL_TEAMMATE then
  424. ui.wall_menu.wall_teammate.Text = toggledText
  425. else
  426. ui.wall_menu.wall_teammate.Text = untoggledText
  427. end
  428.  
  429. ui.wall_menu.esp_enable.MouseButton1Click:connect(function()
  430. ui_toggle(ui.wall_menu.esp_enable,
  431. function() -- toggle
  432. ESP_ENABLE = true
  433. toggleESP(true)
  434. end
  435. ,
  436. function() -- untoggle
  437. ESP_ENABLE = false
  438. toggleESP(false)
  439. end)
  440. end)
  441. if ESP_ENABLE then
  442. ui.wall_menu.esp_enable.Text = toggledText
  443. else
  444. ui.wall_menu.esp_enable.Text = untoggledText
  445. end
  446.  
  447. local onTransparency = 0
  448. local offTransparency = .5
  449. local function highlightButton(button,onTransparency,offTransparency)
  450. for i,v in pairs(button.Parent:GetChildren()) do
  451. if v == button then
  452. v.Transparency = onTransparency
  453. else
  454. v.Transparency = offTransparency
  455. end
  456. end
  457. end
  458.  
  459. ui.first_menu.tab1.aim_menu_button.MouseButton1Click:connect(function()
  460. ui_switchMenu(ui.aim_menu)
  461. highlightButton(ui.first_menu.tab1.aim_menu_button,onTransparency,offTransparency)
  462. ui.title2.Text = "Aimbot"
  463. end)
  464. ui.first_menu.tab1.wall_menu_button.MouseButton1Click:connect(function()
  465. ui_switchMenu(ui.wall_menu)
  466. highlightButton(ui.first_menu.tab1.wall_menu_button,onTransparency,offTransparency)
  467. ui.title2.Text = "Visuals"
  468. end)
  469. ui.first_menu.tab1.plr_menu_button.MouseButton1Click:connect(function()
  470. ui_switchMenu(ui.plr_menu)
  471. highlightButton(ui.first_menu.tab1.plr_menu_button,onTransparency,offTransparency)
  472. ui.title2.Text = "Character"
  473. end)
  474. ui.first_menu.tab1.extra_menu_button.MouseButton1Click:connect(function()
  475. ui_switchMenu(ui.extra_menu)
  476. highlightButton(ui.first_menu.tab1.extra_menu_button,onTransparency,offTransparency)
  477. ui.title2.Text = "Extra"
  478. end)
  479.  
  480. ui.aim_menu.aim_target.FocusLost:connect(function()
  481. AIM_TARGET = ui.aim_menu.aim_target.Text
  482. end)
  483. ui.aim_menu.aim_target.Text = AIM_TARGET
  484. ui.wall_menu.wall_transparency.FocusLost:connect(function()
  485. if tonumber(ui.wall_menu.wall_transparency.Text) then
  486. if tonumber(ui.wall_menu.wall_transparency.Text) > 1 then
  487. ui.wall_menu.wall_transparency.Text = "1"
  488. elseif tonumber(ui.wall_menu.wall_transparency.Text) < 0 then
  489. ui.wall_menu.wall_transparency.Text = "0"
  490. end
  491. WALL_TRANSPARENCY = ui.wall_menu.wall_transparency.Text
  492. for i,v in pairs(bhaParent:GetChildren()) do
  493. if v:IsA("BoxHandleAdornment") then
  494. if string.match(v.Name,"_wall") == "_wall" then
  495. v.Transparency = WALL_TRANSPARENCY
  496. end
  497. end
  498. end
  499. else
  500. ui.wall_menu.wall_transparency.Text = WALL_TRANSPARENCY
  501. end
  502. end)
  503. ui.wall_menu.wall_transparency.Text = WALL_TRANSPARENCY
  504.  
  505. ui.aim_menu.aim_bind.FocusLost:connect(function()
  506. if string.len(ui.aim_menu.aim_bind.Text) == 1 and not tonumber(ui.aim_menu.aim_bind.Text) then
  507. AIM_BIND = ui.aim_menu.aim_bind.Text
  508. else
  509. ui.aim_menu.aim_bind.Text = "invalid"
  510. end
  511. end)
  512. ui.aim_menu.aim_bind.Text = AIM_BIND
  513.  
  514. ui.wall_menu.wall_bind_toggle.FocusLost:connect(function()
  515. if string.len(ui.wall_menu.wall_bind_toggle.Text) == 1 and not tonumber(ui.wall_menu.wall_bind_toggle.Text) then
  516. WALL_BIND_TOGGLE = ui.wall_menu.wall_bind_toggle.Text
  517. else
  518. ui.wall_menu.wall_bind_toggle.Text = "invalid"
  519. end
  520. end)
  521. ui.wall_menu.wall_bind_toggle.Text = WALL_BIND_TOGGLE
  522.  
  523. ui.wall_menu.esp_bind_toggle.FocusLost:connect(function()
  524. if string.len(ui.wall_menu.esp_bind_toggle.Text) == 1 and not tonumber(ui.wall_menu.esp_bind_toggle.Text) then
  525. ESP_BIND_TOGGLE = ui.wall_menu.esp_bind_toggle.Text
  526. else
  527. ui.wall_menu.esp_bind_toggle.Text = "invalid"
  528. end
  529. end)
  530. ui.wall_menu.esp_bind_toggle.Text = ESP_BIND_TOGGLE
  531.  
  532. local wallWhiteListParts = {"Left Arm","Left Leg","Right Arm","Right Leg","Torso","LeftFoot","LeftHand","LeftLowerArm","LeftLowerLeg","LeftUpperArm","LeftUpperLeg","LowerTorso","RightFoot","RightHand","RightLowerArm","RightLowerLeg","RightUpperArm","RightUpperLeg","UpperTorso","Head","HumanoidRootPart"}
  533.  
  534. bhaParent = rootParent
  535.  
  536. function wallPlr(plr) -- enable walls on plr
  537. local char = plr.Character
  538. if char and plr.Name ~= game.Players.LocalPlayer.Name then
  539. if not WALL_TEAMMATE then
  540. if not plr.Neutral then
  541. if plrIsTeammate(plr) then
  542. return
  543. end
  544. end
  545. end
  546. char:WaitForChild("Humanoid")
  547. char:WaitForChild("HumanoidRootPart")
  548. if char.Humanoid.Health > 0 then
  549. for i,v in pairs(bhaParent:GetChildren()) do
  550. if v:IsA("BoxHandleAdornment") then
  551. if string.match(v.Name,plr.Name) == plr.Name and string.match(v.Name,"_wall") then
  552. return
  553. end
  554. end
  555. end
  556. for i,v in pairs(char:GetChildren()) do
  557. if v:IsA("BasePart") and isInTable(wallWhiteListParts,v.Name) then
  558. local bha = Instance.new("BoxHandleAdornment")
  559. bha.AlwaysOnTop = true
  560. bha.ZIndex = 0
  561. bha.Transparency = WALL_TRANSPARENCY -- this needs to change
  562. bha.Size = v.Size
  563. bha.Name = v.Name.."_"..plr.Name.."_wall"
  564. bha.Adornee = v
  565. if plr.Neutral then
  566. bha.Color3 = WALL_NEUTRAL_COLOR
  567. elseif plrIsTeammate(plr) then
  568. bha.Color3 = WALL_TEAMMATE_COLOR
  569. else
  570. bha.Color3 = WALL_ENEMY_COLOR
  571. end
  572. bha.Parent = bhaParent
  573. end
  574. end
  575. local charRemoveEvent
  576. charRemoveEvent = workspace.DescendantRemoving:connect(function(des)
  577. if des == char then
  578. unwallPlr(plr)
  579. charRemoveEvent:Disconnect()
  580. end
  581. end)
  582. char.Humanoid.Died:connect(function()
  583. unwallPlr(plr)
  584. charRemoveEvent:Disconnect()
  585. end)
  586. else
  587. unwallPlr(plr)
  588. end
  589. end
  590. end
  591.  
  592. function unwallPlr(plr) -- disable walls on plr
  593. for i,v in pairs(bhaParent:GetChildren()) do
  594. if v:IsA("BoxHandleAdornment") then
  595. if string.match(v.Name,plr.Name) == plr.Name and string.match(v.Name,"_wall") then
  596. v:Destroy()
  597. end
  598. end
  599. end
  600. end
  601.  
  602. function toggleWalls(bool)
  603. if bool then
  604. for i,v in pairs(game.Players:GetPlayers()) do
  605. if v.Character then
  606. wallPlr(v)
  607. end
  608. end
  609. else
  610. for i,v in pairs(game.Players:GetPlayers()) do
  611. unwallPlr(v)
  612. end
  613. end
  614. end
  615.  
  616. function refreshWalls()
  617. toggleWalls(false)
  618. if WALL_ENABLE then
  619. toggleWalls(true)
  620. end
  621. end
  622. function refreshESP()
  623. toggleESP(false)
  624. if ESP_ENABLE then
  625. toggleESP(true)
  626. end
  627. end
  628.  
  629. local espParent = rootParent
  630.  
  631. local function create_esp_ui()
  632. local esp = Instance.new("BillboardGui")
  633. local tool = Instance.new("TextLabel")
  634. local plr_name = Instance.new("TextLabel")
  635. local hp_bar = Instance.new("Frame")
  636. local fill = Instance.new("Frame")
  637. --Properties:
  638. esp.Name = "esp"
  639. esp.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  640. esp.Active = true
  641. esp.AlwaysOnTop = true
  642. esp.Size = UDim2.new(7, 0, 7, 0)
  643. esp.StudsOffset = Vector3.new(0, -0.5, 0)
  644.  
  645. tool.Name = "tool"
  646. tool.Parent = esp
  647. tool.BackgroundColor3 = Color3.new(1, 1, 1)
  648. tool.BackgroundTransparency = 1
  649. tool.Position = UDim2.new(-1.89999998, 0, 1, 0)
  650. tool.Size = UDim2.new(5, 0, 0, 20)
  651. tool.Font = Enum.Font.SourceSansLight
  652. tool.Text = "strongrussianboy123"
  653. tool.TextColor3 = Color3.new(1, 1, 1)
  654. tool.TextScaled = true
  655. tool.TextSize = 20
  656. tool.TextStrokeTransparency = 0.5
  657. tool.TextWrapped = true
  658. tool.TextYAlignment = Enum.TextYAlignment.Top
  659.  
  660. plr_name.Name = "plr_name"
  661. plr_name.Parent = esp
  662. plr_name.AnchorPoint = Vector2.new(0, 1)
  663. plr_name.BackgroundColor3 = Color3.new(1, 1, 1)
  664. plr_name.BackgroundTransparency = 1
  665. plr_name.Position = UDim2.new(-1.89999998, 0, 0, 0)
  666. plr_name.Size = UDim2.new(5, 0, 0, 20)
  667. plr_name.Font = Enum.Font.SourceSansLight
  668. plr_name.Text = "strongrussianboy123"
  669. plr_name.TextColor3 = Color3.new(1, 1, 1)
  670. plr_name.TextScaled = true
  671. plr_name.TextSize = 20
  672. plr_name.TextStrokeTransparency = 0.5
  673. plr_name.TextWrapped = true
  674. plr_name.TextYAlignment = Enum.TextYAlignment.Bottom
  675.  
  676. hp_bar.Name = "hp_bar"
  677. hp_bar.Parent = esp
  678. hp_bar.BackgroundColor3 = Color3.new(1, 0, 0)
  679. hp_bar.BackgroundTransparency = 0.69999998807907
  680. hp_bar.BorderSizePixel = 0
  681. hp_bar.Size = UDim2.new(0.100000001, 0, 1, 0)
  682.  
  683. fill.Name = "fill"
  684. fill.Parent = hp_bar
  685. fill.AnchorPoint = Vector2.new(0, 1)
  686. fill.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  687. fill.BackgroundTransparency = 0.20000000298023
  688. fill.BorderSizePixel = 0
  689. fill.Position = UDim2.new(0, 0, 1, 0)
  690. fill.Size = UDim2.new(1, 0, 0.5, 0)
  691. return esp
  692. end
  693. local defaultEsp = create_esp_ui()
  694.  
  695. local function espPlr(plr) -- esp that dude
  696. local char = plr.Character
  697. if char and plr.Name ~= game.Players.LocalPlayer.Name then
  698. if not WALL_TEAMMATE then
  699. if plrIsTeammate(plr) then
  700. return
  701. end
  702. end
  703. char:WaitForChild("Humanoid")
  704. char:WaitForChild("HumanoidRootPart")
  705. local esp = defaultEsp:clone()
  706. esp.Adornee = plr.Character.HumanoidRootPart
  707. esp.Name = plr.Name.."_esp"
  708. esp.Parent = espParent
  709. --local espDefaultSize = esp.Size
  710. local function updateEsp()
  711. if esp and #esp:children() > 0 then
  712. --[[local d = (cam.CFrame.Position - plr.Character.HumanoidRootPart.Position).magnitude
  713. if d >= min_distance_scale then
  714. esp.Size = espDefaultSize + UDim2.new(0,(d-min_distance_scale)*scale,0,(d-min_distance_scale)*scale)
  715. end]]
  716. esp.plr_name.Text = plr.Name
  717. if char then
  718. local tool = plr.Character:FindFirstChildOfClass("Tool")
  719. if esp:FindFirstChild("tool") then
  720. if tool then
  721. esp.tool.Text = tool.Name
  722. else
  723. esp.tool.Text = ""
  724. end
  725. end
  726. end
  727. esp.hp_bar.fill.Size = UDim2.new(1,0,plr.Character.Humanoid.Health/100)
  728. end
  729. end
  730. updateEsp()
  731. local event1 = char.Humanoid.HealthChanged:connect(updateEsp) -- new Humanoid health
  732. local event2 = char.ChildRemoved:connect(updateEsp) -- tool removed from plr
  733. local event3 = char.ChildAdded:connect(updateEsp) -- tool added to plr
  734. esp.Parent.ChildRemoved:connect(function(child)
  735. if esp == child then
  736. event1:disconnect()
  737. event2:disconnect()
  738. event3:disconnect()
  739. end
  740. end)
  741. local charRemoveEvent
  742. charRemoveEvent = workspace.DescendantRemoving:connect(function(des)
  743. if des == char then
  744. unespPlr(plr)
  745. charRemoveEvent:Disconnect()
  746. end
  747. end)
  748. char.Humanoid.Died:connect(function()
  749. unespPlr(plr)
  750. charRemoveEvent:Disconnect()
  751. end)
  752. end
  753. end
  754.  
  755. function unespPlr(plr) -- disable esp on plr
  756. for i,v in pairs(espParent:GetChildren()) do
  757. if v:IsA("BillboardGui") then
  758. if string.match(v.Name,plr.Name) == plr.Name and string.match(v.Name,"_esp") then
  759. v:Destroy()
  760. end
  761. end
  762. end
  763. end
  764.  
  765. function toggleESP(bool)
  766. if bool then
  767. for i,v in pairs(game.Players:GetPlayers()) do
  768. if v.Character then
  769. espPlr(v)
  770. end
  771. end
  772. else
  773. for i,v in pairs(game.Players:GetPlayers()) do
  774. unespPlr(v)
  775. end
  776. end
  777. end
  778.  
  779. local function setGravity(gravity)
  780. workspace.Gravity = gravity
  781. end
  782. local function setWalkSpeed(walkspeed)
  783. if plr.Character then
  784. plr.Character.Humanoid.WalkSpeed = walkspeed
  785. end
  786. end
  787. local function setJumpPower(power)
  788. if plr.Character then
  789. plr.Character.Humanoid.JumpPower = power
  790. end
  791. end
  792.  
  793. ui.plr_menu.gravity.FocusLost:connect(function()
  794. if tonumber(ui.plr_menu.gravity.Text) then
  795. LOCALPLR_GRAVITY = tonumber(ui.plr_menu.gravity.Text)
  796. setGravity(tonumber(ui.plr_menu.gravity.Text))
  797. else
  798. ui.plr_menu.gravity.Text = workspace.Gravity
  799. end
  800. end)
  801.  
  802. ui.plr_menu.jump_power.FocusLost:connect(function()
  803. if tonumber(ui.plr_menu.jump_power.Text) then
  804. LOCALPLR_JUMPPOWER = tonumber(ui.plr_menu.jump_power.Text)
  805. setJumpPower(tonumber(ui.plr_menu.jump_power.Text))
  806. else
  807. if plr.Character then
  808. ui.plr_menu.jump_power.Text = plr.Character.Humanoid.JumpPower
  809. else
  810. ui.plr_menu.jump_power.Text = "50"
  811. end
  812. end
  813. end)
  814.  
  815. ui.plr_menu.walkspeed.FocusLost:connect(function()
  816. if tonumber(ui.plr_menu.walkspeed.Text) then
  817. LOCALPLR_WALKSPEED = tonumber(ui.plr_menu.walkspeed.Text)
  818. setWalkSpeed(tonumber(ui.plr_menu.walkspeed.Text))
  819. else
  820. if plr.Character then
  821. ui.plr_menu.walkspeed.Text = plr.Character.Humanoid.WalkSpeed
  822. else
  823. ui.plr_menu.walkspeed.Text = "16"
  824. end
  825. end
  826. end)
  827.  
  828. ui.plr_menu.teleport_to.teleport.MouseButton1Click:connect(function()
  829. local x = tonumber(ui.plr_menu.teleport_to.X.Text)
  830. local y = tonumber(ui.plr_menu.teleport_to.Y.Text)
  831. local z = tonumber(ui.plr_menu.teleport_to.Z.Text)
  832. if x and y and z and plr.Character then
  833. plr.Character:MoveTo(Vector3.new(x,y,z))
  834. end
  835. end)
  836.  
  837. local function shift_by()
  838. if plr.Character then
  839. if LOCALPLR_LOOKVECTOR and tonumber(ui.plr_menu.shift_by.look_vector_scale.Text) then
  840. local look = cam.CFrame.lookVector
  841. local vector = Vector3.new(look.X,look.Y,look.Z)
  842. plr.Character:TranslateBy(vector*tonumber(ui.plr_menu.shift_by.look_vector_scale.Text))
  843. else
  844. local x = tonumber(ui.plr_menu.shift_by.X.Text)
  845. local y = tonumber(ui.plr_menu.shift_by.Y.Text)
  846. local z = tonumber(ui.plr_menu.shift_by.Z.Text)
  847. plr.Character:TranslateBy(Vector3.new(x,y,z))
  848. end
  849. end
  850. end
  851.  
  852. ui.plr_menu.shift_by.shift.MouseButton1Click:connect(function()
  853. shift_by()
  854. end)
  855.  
  856. ui.plr_menu.look_vector.MouseButton1Click:connect(function()
  857. ui_toggle(ui.plr_menu.look_vector,
  858. function() -- toggle
  859. LOCALPLR_LOOKVECTOR = true
  860. ui.plr_menu.shift_by.X.Visible = false
  861. ui.plr_menu.shift_by.Y.Visible = false
  862. ui.plr_menu.shift_by.Z.Visible = false
  863. ui.plr_menu.shift_by.look_vector_scale.Visible = true
  864. end
  865. ,
  866. function() -- untoggle
  867. LOCALPLR_LOOKVECTOR = false
  868. ui.plr_menu.shift_by.X.Visible = true
  869. ui.plr_menu.shift_by.Y.Visible = true
  870. ui.plr_menu.shift_by.Z.Visible = true
  871. ui.plr_menu.shift_by.look_vector_scale.Visible = false
  872. end)
  873. end)
  874. if LOCALPLR_LOOKVECTOR then
  875. ui.plr_menu.look_vector.Text = toggledText
  876. ui.plr_menu.shift_by.X.Visible = false
  877. ui.plr_menu.shift_by.Y.Visible = false
  878. ui.plr_menu.shift_by.Z.Visible = false
  879. ui.plr_menu.shift_by.look_vector_scale.Visible = true
  880. else
  881. ui.plr_menu.look_vector.Text = untoggledText
  882. ui.plr_menu.shift_by.X.Visible = true
  883. ui.plr_menu.shift_by.Y.Visible = true
  884. ui.plr_menu.shift_by.Z.Visible = true
  885. ui.plr_menu.shift_by.look_vector_scale.Visible = false
  886. end
  887.  
  888. ui.plr_menu.shift_by.shift_bind.FocusLost:connect(function()
  889. if string.len(ui.plr_menu.shift_by.shift_bind.Text) == 1 and not tonumber(ui.plr_menu.shift_by.shift_bind.Text) then
  890. LOCALPLR_SHIFT_BIND = ui.plr_menu.shift_by.shift_bind.Text
  891. else
  892. ui.plr_menu.shift_by.shift_bind.Text = "invalid"
  893. end
  894. end)
  895. ui.plr_menu.shift_by.shift_bind.Text = LOCALPLR_SHIFT_BIND
  896.  
  897. local bodyspeedOn = false
  898. local bodyspeed_parent = "HumanoidRootPart"
  899. local gyro,velocity
  900. local function createBodyMovers()
  901. velocity = Instance.new("BodyVelocity")
  902. velocity.maxForce = Vector3.new(100000,0,100000)
  903. gyro = Instance.new("BodyGyro")
  904. gyro.maxTorque = Vector3.new(100000,0,100000)
  905. end
  906.  
  907. local bodyspeedUpdateFrequency = .1
  908. local function disableBodySpeed()
  909. bodyspeedOn = false
  910. velocity.Parent = nil
  911. gyro.Parent = nil
  912. end
  913. local function bodyspeed_toggle()
  914. if plr.Character and hum then
  915. if gyro and velocity then
  916. if not bodyspeedOn then
  917. if LOCALPLR_BODYSPEED_ENABLE and hum.Health > 0 then
  918. bodyspeedOn = true
  919. velocity.Parent = plr.Character:FindFirstChild(bodyspeed_parent)
  920. velocity.velocity = (hum.MoveDirection) * LOCALPLR_BODYSPEED
  921. gyro.Parent = plr.Character:FindFirstChild(bodyspeed_parent)
  922. while bodyspeedOn do
  923. if not bodyspeedOn or not hum or not LOCALPLR_BODYSPEED_ENABLE or hum.Health <= 0 then
  924. disableBodySpeed()
  925. break
  926. end
  927. velocity.velocity = (hum.MoveDirection) * LOCALPLR_BODYSPEED
  928. local refpos = gyro.Parent.Position + (gyro.Parent.Position - cam.CFrame.p).unit * 5
  929. gyro.CFrame = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z))
  930. wait(bodyspeedUpdateFrequency)
  931. end
  932. end
  933. else
  934. disableBodySpeed()
  935. end
  936. else
  937. if gyro then
  938. gyro:Destroy()
  939. end
  940. if velocity then
  941. velocity:Destroy()
  942. end
  943. bodyspeedOn = false
  944. createBodyMovers()
  945. end
  946. end
  947. end
  948.  
  949. ui.plr_menu.body_speed_enable.MouseButton1Click:connect(function()
  950. ui_toggle(ui.plr_menu.body_speed_enable,
  951. function() -- toggle
  952. LOCALPLR_BODYSPEED_ENABLE = true
  953. end
  954. ,
  955. function() -- untoggle
  956. LOCALPLR_BODYSPEED_ENABLE = false
  957. end)
  958. end)
  959. if LOCALPLR_BODYSPEED_ENABLE then
  960. ui.plr_menu.body_speed_enable.Text = toggledText
  961. else
  962. ui.plr_menu.body_speed_enable.Text = untoggledText
  963. end
  964.  
  965. ui.plr_menu.body_speed_bind.FocusLost:connect(function()
  966. if string.len(ui.plr_menu.body_speed_bind.Text) == 1 and not tonumber(ui.plr_menu.body_speed_bind.Text) then
  967. LOCALPLR_BODYSPEED_BIND = ui.plr_menu.body_speed_bind.Text
  968. else
  969. ui.plr_menu.body_speed_bind.Text = "invalid"
  970. end
  971. end)
  972. ui.plr_menu.body_speed_bind.Text = LOCALPLR_BODYSPEED_BIND
  973.  
  974. ui.plr_menu.body_speed.FocusLost:connect(function()
  975. if tonumber(ui.plr_menu.body_speed.Text) then
  976. LOCALPLR_BODYSPEED = tonumber(ui.plr_menu.body_speed.Text)
  977. else
  978. ui.plr_menu.body_speed.Text = LOCALPLR_BODYSPEED
  979. end
  980. end)
  981. ui.plr_menu.body_speed.Text = LOCALPLR_BODYSPEED
  982.  
  983. local function noclip_direction()
  984. local vec3 = Vector3.new()
  985. -- get front/back
  986. if game:GetService("UserInputService"):IsKeyDown("W") then -- forward
  987. vec3 = Vector3.new(0,0,-1)
  988. elseif game:GetService("UserInputService"):IsKeyDown("S") then -- backward
  989. vec3 = Vector3.new(0,0,1)
  990. end
  991. -- add left/the opposite of left
  992. if game:GetService("UserInputService"):IsKeyDown("A") then -- left
  993. vec3 = vec3+Vector3.new(-1,0,0)
  994. elseif game:GetService("UserInputService"):IsKeyDown("D") then -- the opposite of left
  995. vec3 = vec3+Vector3.new(1,0,0)
  996. end
  997. return CFrame.new(vec3*NOCLIP_SPEED)
  998. end
  999.  
  1000. local function activate_noclip()
  1001. repeat
  1002. local lookVector = (cam.Focus.p-cam.CFrame.p).unit
  1003. local pos = plr.Character.HumanoidRootPart.Position
  1004. plr.Character.HumanoidRootPart.CFrame = CFrame.new(pos,pos+lookVector) * noclip_direction()
  1005. wait()
  1006. until NOCLIP_ENABLE == false or not plr.Character
  1007. end
  1008.  
  1009. local function toggle_noclip(bool)
  1010. if plr.Character then
  1011. if bool then
  1012. if hum and plr.Character:FindFirstChild("HumanoidRootPart") then
  1013. plr.Character.HumanoidRootPart.Anchored = true
  1014. hum.PlatformStand = true
  1015. NOCLIP_ENABLE = true
  1016. ui.plr_menu.noclip_enable.Text = toggledText
  1017. activate_noclip()
  1018. end
  1019. else
  1020. if hum and plr.Character:FindFirstChild("HumanoidRootPart") then
  1021. plr.Character.HumanoidRootPart.Anchored = false
  1022. plr.Character.HumanoidRootPart.Velocity = Vector3.new()
  1023. hum.PlatformStand = false
  1024. NOCLIP_ENABLE = false
  1025. ui.plr_menu.noclip_enable.Text = untoggledText
  1026. end
  1027. end
  1028. end
  1029. end
  1030.  
  1031. ui.plr_menu.noclip_enable.MouseButton1Click:connect(function()
  1032. ui_toggle(ui.plr_menu.noclip_enable,
  1033. function() -- toggle
  1034. toggle_noclip(true)
  1035. end
  1036. ,
  1037. function() -- untoggle
  1038. toggle_noclip(false)
  1039. end)
  1040. end)
  1041. if NOCLIP_ENABLE then
  1042. ui.plr_menu.noclip_enable.Text = toggledText
  1043. else
  1044. ui.plr_menu.noclip_enable.Text = untoggledText
  1045. end
  1046.  
  1047. ui.plr_menu.noclip_bind.FocusLost:connect(function()
  1048. if string.len(ui.plr_menu.noclip_bind.Text) == 1 and not tonumber(ui.plr_menu.noclip_bind.Text) then
  1049. NOCLIP_BIND = ui.plr_menu.noclip_bind.Text
  1050. else
  1051. ui.plr_menu.noclip_bind.Text = "invalid"
  1052. end
  1053. end)
  1054. ui.plr_menu.noclip_bind.Text = NOCLIP_BIND
  1055.  
  1056. ui.plr_menu.noclip_speed.FocusLost:connect(function()
  1057. if tonumber(ui.plr_menu.noclip_speed.Text) then
  1058. NOCLIP_SPEED = tonumber(ui.plr_menu.noclip_speed.Text)
  1059. else
  1060. ui.plr_menu.noclip_speed.Text = NOCLIP_SPEED
  1061. end
  1062. end)
  1063. ui.plr_menu.noclip_speed.Text = NOCLIP_SPEED
  1064.  
  1065. local function newHumanoidForceSettingsPlr()
  1066. workspace:WaitForChild(plr.Name)
  1067. plr.Character:WaitForChild("Humanoid")
  1068. plr.Character.Humanoid.Changed:connect(forcePlrSettings)
  1069. end
  1070.  
  1071. function forcePlrSettings()
  1072. if LOCALPLR_FORCESETTINGS then
  1073. workspace.Gravity = LOCALPLR_GRAVITY
  1074. if LOCALPLR_JUMPPOWER then
  1075. setJumpPower(tonumber(ui.plr_menu.jump_power.Text))
  1076. end
  1077. if LOCALPLR_WALKSPEED then
  1078. setWalkSpeed(tonumber(ui.plr_menu.walkspeed.Text))
  1079. end
  1080. end
  1081. end
  1082. workspace:GetPropertyChangedSignal("Gravity"):connect(forcePlrSettings)
  1083. coroutine.wrap(newHumanoidForceSettingsPlr)()
  1084. plr.CharacterAdded:connect(newHumanoidForceSettingsPlr)
  1085.  
  1086. ui.plr_menu.force_settings.MouseButton1Click:connect(function()
  1087. ui_toggle(ui.plr_menu.force_settings,
  1088. function() -- toggle
  1089. LOCALPLR_FORCESETTINGS = true
  1090. end
  1091. ,
  1092. function() -- untoggle
  1093. LOCALPLR_FORCESETTINGS = false
  1094. end)
  1095. end)
  1096.  
  1097. local def_Ambient = game.Lighting.Ambient
  1098. local function fullBright()
  1099. local curAmbient = game.Lighting.Ambient
  1100. game.Lighting.Ambient = Color3.new(1,1,1)
  1101. game.Lighting.GlobalShadows = false
  1102. def_Ambient = curAmbient
  1103. end
  1104. local function unfullBright()
  1105. game.Lighting.Ambient = def_Ambient
  1106. game.Lighting.GlobalShadows = true
  1107. end
  1108.  
  1109. game.Lighting:GetPropertyChangedSignal("Ambient"):connect(function()
  1110. if EXTRA_FULL_BRIGHT then
  1111. def_Ambient = game.Lighting.Ambient
  1112. fullBright()
  1113. end
  1114. end)
  1115.  
  1116. ui.extra_menu.full_bright.MouseButton1Click:connect(function()
  1117. ui_toggle(ui.extra_menu.full_bright,
  1118. function() -- toggle
  1119. EXTRA_FULL_BRIGHT = true
  1120. fullBright()
  1121. end
  1122. ,
  1123. function() -- untoggle
  1124. EXTRA_FULL_BRIGHT = false
  1125. unfullBright()
  1126. end)
  1127. end)
  1128.  
  1129. function forceExtraSettings()
  1130. if EXTRA_FORCESETTINGS then
  1131. workspace.CurrentCamera.FieldOfView = EXTRA_CAM_FOV
  1132. end
  1133. end
  1134. workspace.CurrentCamera:GetPropertyChangedSignal("FieldOfView"):connect(forceExtraSettings)
  1135.  
  1136. ui.extra_menu.force_settings.MouseButton1Click:connect(function()
  1137. ui_toggle(ui.extra_menu.force_settings,
  1138. function() -- toggle
  1139. EXTRA_FORCESETTINGS = true
  1140. end
  1141. ,
  1142. function() -- untoggle
  1143. EXTRA_FORCESETTINGS = false
  1144. end)
  1145. end)
  1146.  
  1147. ui.extra_menu.cam_fov.FocusLost:connect(function()
  1148. if tonumber(ui.extra_menu.cam_fov.Text) then
  1149. EXTRA_CAM_FOV = tonumber(ui.extra_menu.cam_fov.Text)
  1150. workspace.CurrentCamera.FieldOfView = EXTRA_CAM_FOV
  1151. ui.extra_menu.cam_fov.Text = tostring(math.floor(workspace.CurrentCamera.FieldOfView))
  1152. end
  1153. end)
  1154.  
  1155. local boxSgui = Instance.new("ScreenGui")
  1156. boxSgui.ResetOnSpawn = false
  1157. boxSgui.Name = "plrbox_parent"
  1158. boxSgui.Parent = rootParent
  1159. local boxRenderModel = Instance.new("Model")
  1160. boxRenderModel.Name = "PlrBox_Model"
  1161. boxRenderModel.Parent = workspace
  1162. local boxParent = boxSgui
  1163. local boxRenderParent = boxRenderModel
  1164.  
  1165. local function addToWhiteList(plr)
  1166. if plr.Character
  1167. and plr.Name ~= game.Players.LocalPlayer.Name
  1168. then
  1169. plr.Character:WaitForChild("Humanoid")
  1170. plr.Character:WaitForChild("HumanoidRootPart")
  1171. for i,v in pairs(plr.Character:children()) do
  1172. if v:IsA("BasePart") then
  1173. table.insert(whiteList,#whiteList,v)
  1174. end
  1175. end
  1176. end
  1177. end
  1178.  
  1179. local function findPlr()
  1180. local ray = Ray.new(cam.CFrame.p, (mouse.Hit.p - cam.CFrame.p).unit * 2048) -- that's quite a large distance
  1181. local hit,pos,targetPlr
  1182. if AIM_FOV > 0 then
  1183. hit,pos = workspace:FindPartOnRayWithWhitelist(ray,{},true)
  1184. local gap = Instance.new("Part")
  1185. gap.Name = "aim_gap"
  1186. gap.CanCollide = false
  1187. gap.Anchored = true
  1188. gap.BrickColor = BrickColor.new("Really red")
  1189. gap.Transparency = .5
  1190. local distance = (cam.CFrame.p - pos).magnitude
  1191. gap.Size = Vector3.new(AIM_FOV, AIM_FOV, distance)
  1192. gap.CFrame = CFrame.new(cam.CFrame.p, pos) * CFrame.new(0, 0, -distance/2)
  1193. gap.Parent = workspace
  1194. local touching = getTouchingParts(gap)
  1195. gap.Parent = nil
  1196. local plrs = {}
  1197. for i,v in pairs(touching) do
  1198. if isInTable(whiteList,v) and not isInTable(plrs,game.Players:FindFirstChild(v.Parent.Name) or game.Players:FindFirstChild(v.Parent.Parent.Name)) then
  1199. table.insert(plrs,#plrs,game.Players:FindFirstChild(v.Parent.Name) or game.Players:FindFirstChild(v.Parent.Parent.Name))
  1200. end
  1201. end
  1202. targetPlr = nearestPlr(plrs)
  1203. gap:Destroy()
  1204. else
  1205. hit,pos = workspace:FindPartOnRayWithWhitelist(ray,whiteList)
  1206. targetPlr = game.Players:FindFirstChild(hit.Parent.Name) or game.Players:FindFirstChild(hit.Parent.Parent.Name)
  1207. end
  1208. if targetPlr then
  1209. if not AIM_FFA and plrIsTeammate(targetPlr) then
  1210. return false
  1211. end
  1212. if targetPlr.Character then
  1213. if targetPlr.Character.Humanoid.Health > 0 then
  1214. return targetPlr
  1215. end
  1216. end
  1217. end
  1218. return false
  1219. end
  1220.  
  1221. local renderEvent
  1222. local function setTarget(plr)
  1223. if target ~= plr then
  1224. if plr then
  1225. target = plr
  1226. aimbotOn = true
  1227. renderEvent = game:GetService("RunService").RenderStepped:connect(aimRenderStep)
  1228. updateTargetUI(plr.Name)
  1229. else
  1230. target = nil
  1231. aimbotOn = false
  1232. updateTargetUI(nil)
  1233. if renderEvent then
  1234. renderEvent:Disconnect()
  1235. end
  1236. end
  1237. end
  1238. end
  1239.  
  1240. local deathEvent
  1241. function aimRenderStep()
  1242. if deathEvent then
  1243. deathEvent:Disconnect()
  1244. end
  1245. if target then
  1246. if target.Character then
  1247. if target.Character:FindFirstChild("Humanoid") then
  1248. deathEvent = target.Character.Humanoid.Died:connect(function()
  1249. setTarget(nil)
  1250. end)
  1251. if target.Character.Humanoid.Health > 0 then
  1252. if target.Character:FindFirstChild(AIM_TARGET) then
  1253. cam.CFrame = CFrame.new(cam.CFrame.p,target.Character:FindFirstChild(AIM_TARGET).CFrame.p)
  1254. else
  1255. setTarget(nil)
  1256. end
  1257. else
  1258. setTarget(nil)
  1259. end
  1260. end
  1261. else
  1262. setTarget(nil)
  1263. end
  1264. else
  1265. setTarget(nil)
  1266. end
  1267. end
  1268.  
  1269. local aimBindDown = false
  1270. local aimAutoLoopInterval = 0 -- that's 0.03
  1271.  
  1272. function nearestPlr(plrs) -- get nearest player from an array of players
  1273. if plr.Character then
  1274. local lowest = math.huge
  1275. local nearestPlr
  1276. for i,v in pairs(plrs) do
  1277. if v and v.Character then
  1278. local distance = v:DistanceFromCharacter(plr.Character.HumanoidRootPart.Position)
  1279. if distance < lowest then
  1280. lowest = distance
  1281. nearestPlr = v
  1282. end
  1283. end
  1284. end
  1285. return nearestPlr
  1286. end
  1287. end
  1288. function farthestPlr(plrs)
  1289. if plr.Character then
  1290. local highest = 0
  1291. local farthestPlr
  1292. for i,v in pairs(plrs) do
  1293. if v and v.Character then
  1294. local distance = v:DistanceFromCharacter(plr.Character.HumanoidRootPart.Position)
  1295. if distance > highest then
  1296. highest = distance
  1297. farthestPlr = v
  1298. end
  1299. end
  1300. end
  1301. return farthestPlr
  1302. end
  1303. end
  1304.  
  1305. mouse.KeyDown:connect(function(key) -- input down
  1306. if string.lower(key) == string.lower(AIM_BIND) then
  1307. aimBindDown = true
  1308. if not AIM_AUTO then
  1309. local targetPlr = findPlr()
  1310. if not aimbotOn and AIM_ENABLE then
  1311. if targetPlr then
  1312. setTarget(targetPlr)
  1313. end
  1314. elseif aimbotOn then
  1315. if not targetPlr or targetPlr == target then
  1316. setTarget(nil)
  1317. --elseif targetPlr then
  1318. --setTarget(targetPlr)
  1319. end
  1320. end
  1321. else
  1322. repeat
  1323. local aimPlrs = game.Players:GetPlayers()
  1324. for i,v in pairs(aimPlrs) do
  1325. if v.Character and not v.Name == plr.Name then
  1326. local ray = Ray.new(cam.CFrame.p, (v.Character:FindFirstChild(AIM_TARGET).CFrame.p - cam.CFrame.p).unit * 2048)
  1327. local hit = workspace:FindPartOnRay(ray)
  1328. if not hit == v.Character:FindFirstChild(AIM_TARGET) then
  1329. table.remove(aimPlrs,i)
  1330. end
  1331. elseif v.Name == plr.Name then
  1332. table.remove(aimPlrs,i)
  1333. elseif not v.Character then
  1334. table.remove(aimPlrs,i)
  1335. elseif not AIM_FFA and plrIsTeammate(v) then
  1336. table.remove(aimPlrs,i)
  1337. end
  1338. end
  1339. local targetPlr = nearestPlr(aimPlrs)
  1340. if targetPlr then
  1341. setTarget(targetPlr)
  1342. end
  1343. wait(aimAutoLoopInterval)
  1344. until not aimBindDown or not AIM_AUTO or not plr.Character
  1345. setTarget(nil)
  1346. end
  1347. end
  1348. if string.lower(key) == string.lower(WALL_BIND_TOGGLE) then
  1349. WALL_ENABLE = not WALL_ENABLE
  1350. toggleWalls(WALL_ENABLE)
  1351. if WALL_ENABLE then
  1352. ui.wall_menu.wall_enable.Text = toggledText
  1353. else
  1354. ui.wall_menu.wall_enable.Text = untoggledText
  1355. end
  1356. end
  1357. if string.lower(key) == string.lower(ESP_BIND_TOGGLE) then
  1358. ESP_ENABLE = not ESP_ENABLE
  1359. toggleESP(ESP_ENABLE)
  1360. if ESP_ENABLE then
  1361. ui.wall_menu.esp_enable.Text = toggledText
  1362. else
  1363. ui.wall_menu.esp_enable.Text = untoggledText
  1364. end
  1365. end
  1366. if string.lower(key) == string.lower(LOCALPLR_BODYSPEED_BIND) then
  1367. bodyspeed_toggle()
  1368. end
  1369. if string.lower(key) == string.lower(LOCALPLR_SHIFT_BIND) then
  1370. shift_by()
  1371. end
  1372. if string.lower(key) == string.lower(NOCLIP_BIND) then
  1373. toggle_noclip(not NOCLIP_ENABLE)
  1374. end
  1375. end)
  1376. mouse.KeyUp:connect(function(key) -- input up
  1377. if string.lower(key) == string.lower(AIM_BIND) then
  1378. aimBindDown = false
  1379. end
  1380. end)
  1381.  
  1382. local downKeys = {}
  1383. game:GetService("UserInputService").InputBegan:connect(function(key) -- UIS input began
  1384. if key.KeyCode ~= Enum.KeyCode.Unknown and key.UserInputType == Enum.UserInputType.Keyboard then
  1385. if #MENU_TOGGLE_BIND > 1 then
  1386. table.insert(downKeys,key.KeyCode)
  1387. if tablesAreEqual(MENU_TOGGLE_BIND,downKeys) then
  1388. toggleMenu(not ui.Visible)
  1389. end
  1390. else
  1391. if key.KeyCode == MENU_TOGGLE_BIND[1] then
  1392. toggleMenu(not ui.Visible)
  1393. end
  1394. end
  1395. end
  1396. end)
  1397. game:GetService("UserInputService").InputEnded:connect(function(key) -- UIS input ended
  1398. for i,v in pairs(downKeys) do
  1399. if v == key.KeyCode then
  1400. table.remove(downKeys,i)
  1401. end
  1402. end
  1403. end)
  1404.  
  1405. local function plrEvents(plr) -- a set of events for every player in the game
  1406. local function character()
  1407. addToWhiteList(plr)
  1408. if WALL_ENABLE then
  1409. unwallPlr(plr)
  1410. wallPlr(plr)
  1411. end
  1412. if ESP_ENABLE then
  1413. unespPlr(plr)
  1414. espPlr(plr)
  1415. end
  1416. end
  1417. plr.CharacterAdded:connect(character)
  1418. if plr.Character then
  1419. if plr.Character:FindFirstChild("Humanoid") then
  1420. if plr.Character.Humanoid.Health > 0 then
  1421. character()
  1422. end
  1423. end
  1424. end
  1425. plr.Changed:connect(function(change)
  1426. if change == "Team" or change == "Neutral" or change == "TeamColor" then
  1427. refreshWalls()
  1428. end
  1429. end)
  1430. end
  1431. for i,v in pairs(game.Players:GetPlayers()) do -- existing players
  1432. plrEvents(v)
  1433. end
  1434. game.Players.PlayerAdded:connect(function(newPlr) -- player join
  1435. plrEvents(newPlr)
  1436. end)
  1437. game.Players.PlayerRemoving:connect(function(oldPlr) -- player leave
  1438. unwallPlr(oldPlr)
  1439. unespPlr(oldPlr)
  1440. end)
  1441.  
  1442. local function loop()
  1443. ui.memory_usage.Text = "memory usage : "..(math.floor(collectgarbage("count")/1000)).." mb"
  1444. end
  1445.  
  1446. game.StarterGui:SetCore("SendNotification",
  1447. {
  1448. Title = "sock cheat",
  1449. Text = "at your service...",
  1450. Icon = "http://www.roblox.com/asset/?id=1511069406"
  1451. }
  1452. )
  1453.  
  1454. while true do
  1455. loop() wait(3) -- loop interval
  1456. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement