Ihaveashortname

Crack 4

Jul 11th, 2020
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.31 KB | None | 0 0
  1. _G.ToggleColor = Color3.fromRGB(255,0,0)
  2. _G.ButtonColor = Color3.fromRGB(0,255,0)
  3. _G.SliderColor = Color3.fromRGB(0,0,255)
  4.  
  5. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))() -- It's obfuscated, I won't let you see my ugly coding skills. =)
  6.  
  7. local c = library:CreateWindow("Visuals")
  8. local w1 = library:CreateWindow("Aimbot")
  9. local ppesp = c:CreateFolder("Player ESP")
  10. ppesp:Toggle("Players",function(bool)
  11. _G.Active = bool
  12.  
  13. if _G.Active == true then
  14. for __,v in pairs(game.Players:GetChildren()) do
  15. if v.Name == game.Players.LocalPlayer.Name then
  16. print("HOLDER")
  17. else
  18. local BillboardGui = Instance.new("BillboardGui",v.Character.HumanoidRootPart)
  19.  
  20. local Txt = Instance.new("TextLabel")
  21. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  22. BillboardGui.Active = true
  23. BillboardGui.AlwaysOnTop = true
  24. BillboardGui.LightInfluence = 1.000
  25. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  26. Txt.Name = "Txt"
  27. Txt.Parent = BillboardGui
  28. Txt.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. Txt.BackgroundTransparency = 1.000
  30. Txt.Size = UDim2.new(0, 200, 0, 50)
  31. Txt.Font = Enum.Font.Code
  32. Txt.TextColor3 = Color3.new(255, 255, 255)
  33. Txt.TextSize = 14.000
  34. Txt.Text = v.Name
  35. end
  36. end
  37. end
  38. if _G.Active == false then
  39. for __,v in pairs(game.Players:GetChildren()) do
  40. if v.Name == game.Players.LocalPlayer.Name then
  41. print("HOLDER")
  42. else
  43. v.Character.HumanoidRootPart.BillboardGui:Destroy()
  44. end
  45. end
  46. end
  47. end)
  48.  
  49.  
  50.  
  51.  
  52. local Aim = w1:CreateFolder("Aimbot")
  53. Aim:Button("Aimbot",function()
  54.  
  55. PLAYER = game.Players.LocalPlayer
  56. MOUSE = PLAYER:GetMouse()
  57. CC = game.Workspace.CurrentCamera
  58.  
  59. ENABLED = true
  60. ESP_ENABLED = false
  61.  
  62. _G.FREE_FOR_ALL = true
  63.  
  64. _G.BIND = 50
  65. _G.ESP_BIND = nil
  66. _G.CHANGE_AIM = nil
  67.  
  68. _G.AIM_AT = 'Head'
  69.  
  70. wait(1)
  71.  
  72. function GetNearestPlayerToMouse()
  73. local PLAYERS = {}
  74. local PLAYER_HOLD = {}
  75. local DISTANCES = {}
  76. for i, v in pairs(game.Players:GetPlayers()) do
  77. if v ~= PLAYER then
  78. table.insert(PLAYERS, v)
  79. end
  80. end
  81. for i, v in pairs(PLAYERS) do
  82. if _G.FREE_FOR_ALL == false then
  83. if v and (v.Character) ~= nil and v.TeamColor ~= PLAYER.TeamColor then
  84. local AIM = v.Character:FindFirstChild(_G.AIM_AT)
  85. if AIM ~= nil then
  86. local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
  87. local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
  88. local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  89. local DIFF = math.floor((POS - AIM.Position).magnitude)
  90. PLAYER_HOLD[v.Name .. i] = {}
  91. PLAYER_HOLD[v.Name .. i].dist = DISTANCE
  92. PLAYER_HOLD[v.Name .. i].plr = v
  93. PLAYER_HOLD[v.Name .. i].diff = DIFF
  94. table.insert(DISTANCES, DIFF)
  95. end
  96. end
  97. elseif _G.FREE_FOR_ALL == true then
  98. local AIM = v.Character:FindFirstChild(_G.AIM_AT)
  99. if AIM ~= nil then
  100. local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
  101. local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
  102. local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  103. local DIFF = math.floor((POS - AIM.Position).magnitude)
  104. PLAYER_HOLD[v.Name .. i] = {}
  105. PLAYER_HOLD[v.Name .. i].dist = DISTANCE
  106. PLAYER_HOLD[v.Name .. i].plr = v
  107. PLAYER_HOLD[v.Name .. i].diff = DIFF
  108. table.insert(DISTANCES, DIFF)
  109. end
  110. end
  111. end
  112.  
  113. if unpack(DISTANCES) == nil then
  114. return false
  115. end
  116.  
  117. local L_DISTANCE = math.floor(math.min(unpack(DISTANCES)))
  118. if L_DISTANCE > 20 then
  119. return false
  120. end
  121.  
  122. for i, v in pairs(PLAYER_HOLD) do
  123. if v.diff == L_DISTANCE then
  124. return v.plr
  125. end
  126. end
  127. return false
  128. end
  129.  
  130.  
  131. local TRACK = false
  132.  
  133. function CREATE(BASE, TEAM)
  134. local ESP_MAIN = Instance.new('BillboardGui', PLAYER.PlayerGui)
  135. local ESP_DOT = Instance.new('Frame', ESP_MAIN)
  136. local ESP_NAME = Instance.new('TextLabel', ESP_MAIN)
  137.  
  138. ESP_MAIN.Name = 'ESP'
  139. ESP_MAIN.Adornee = BASE
  140. ESP_MAIN.AlwaysOnTop = true
  141. ESP_MAIN.ExtentsOffset = Vector3.new(0, 1, 0)
  142. ESP_MAIN.Size = UDim2.new(0, 5, 0, 5)
  143.  
  144. ESP_DOT.Name = 'DOT'
  145. ESP_DOT.BackgroundColor = BrickColor.new('Bright red')
  146. ESP_DOT.BackgroundTransparency = 0.3
  147. ESP_DOT.BorderSizePixel = 0
  148. ESP_DOT.Position = UDim2.new(-0.5, 0, -0.5, 0)
  149. ESP_DOT.Size = UDim2.new(2, 0, 2, 0)
  150. ESP_DOT.Visible = true
  151. ESP_DOT.ZIndex = 10
  152.  
  153. ESP_NAME.Name = 'NAME'
  154. ESP_NAME.BackgroundColor3 = Color3.new(255, 255, 255)
  155. ESP_NAME.BackgroundTransparency = 1
  156. ESP_NAME.BorderSizePixel = 0
  157. ESP_NAME.Position = UDim2.new(0, 0, 0, -40)
  158. ESP_NAME.Size = UDim2.new(1, 0, 10, 0)
  159. ESP_NAME.Visible = true
  160. ESP_NAME.ZIndex = 10
  161. ESP_NAME.Font = 'ArialBold'
  162. ESP_NAME.FontSize = 'Size14'
  163. ESP_NAME.Text = BASE.Parent.Name:upper()
  164. ESP_NAME.TextColor = BrickColor.new('Bright red')
  165. end
  166.  
  167. function CLEAR()
  168. for _,v in pairs(PLAYER.PlayerGui:children()) do
  169. if v.Name == 'ESP' and v:IsA('BillboardGui') then
  170. v:Destroy()
  171. end
  172. end
  173. end
  174.  
  175. function FIND()
  176. CLEAR()
  177. TRACK = true
  178. spawn(function()
  179. while wait() do
  180. if TRACK then
  181. CLEAR()
  182. for i,v in pairs(game.Players:GetChildren()) do
  183. if v.Character and v.Character:FindFirstChild('Head') then
  184. if _G.FREE_FOR_ALL == false then
  185. if v.TeamColor ~= PLAYER.TeamColor then
  186. if v.Character:FindFirstChild('Head') then
  187. CREATE(v.Character.Head, true)
  188. end
  189. end
  190. else
  191. if v.Character:FindFirstChild('Head') then
  192. CREATE(v.Character.Head, true)
  193. end
  194. end
  195. end
  196. end
  197. end
  198. end
  199. wait(1)
  200. end)
  201. end
  202.  
  203. MOUSE.KeyDown:connect(function(KEY)
  204. KEY = KEY:lower():byte()
  205. if KEY == _G.BIND then
  206. ENABLED = true
  207. end
  208. end)
  209.  
  210. MOUSE.KeyUp:connect(function(KEY)
  211. KEY = KEY:lower():byte()
  212. if KEY == _G.BIND then
  213. ENABLED = false
  214. end
  215. end)
  216.  
  217. MOUSE.KeyDown:connect(function(KEY)
  218. KEY = KEY:lower():byte()
  219. if KEY == _G.ESP_BIND then
  220. if ESP_ENABLED == false then
  221. FIND()
  222. ESP_ENABLED = true
  223. print('ESP : ON')
  224. elseif ESP_ENABLED == true then
  225. wait()
  226. CLEAR()
  227. TRACK = false
  228. ESP_ENABLED = true
  229. print('ESP : OFF')
  230. end
  231. end
  232. end)
  233.  
  234. MOUSE.KeyDown:connect(function(KEY)
  235. if KEY == _G.CHANGE_AIM then
  236. if _G.AIM_AT == 'Head' then
  237. _G.AIM_AT = 'Torso'
  238. elseif _G.AIM_AT == 'Torso' then
  239. _G.AIM_AT = 'Head'
  240. end
  241. end
  242. end)
  243.  
  244. game:GetService('RunService').RenderStepped:connect(function()
  245. if ENABLED then
  246. local TARGET = GetNearestPlayerToMouse()
  247. if (TARGET ~= false) then
  248. local AIM = TARGET.Character:FindFirstChild(_G.AIM_AT)
  249. if AIM then
  250. CC.CoordinateFrame = CFrame.new(CC.CoordinateFrame.p, AIM.CFrame.p)
  251. end
  252. else
  253. end
  254. end
  255. end)
  256.  
  257. repeat
  258. wait()
  259. if ESP_EBLED == true then
  260. FIND()
  261. end
  262. until ESP_ENABLED == false
  263. wait()
  264. _G.FREE_FOR_ALL = true
  265. _G.BIND = 50 -- LEFT CTRL
  266. _G.ESP_BIND = 52 -- LEFT ALT
  267. end)
  268. local pppesp = c:CreateFolder("Loot ESP")
  269.  
  270. pppesp:Toggle("Lama ESP",function(bool)
  271. shared.toggle = bool
  272. ---[Item Esp By Itsme]---
  273.  
  274. _G.Active = bool
  275. ---Settings---
  276. _G.EspLocation = game:GetService("Workspace")["Crate_Spawns"].Flamingo
  277. _G.ObjectName = "Flamingo"
  278. _G.ObjectClass = "Model"
  279. _G.EspText = "Lama"
  280. _G.EspColor = 255, 255 ,255
  281.  
  282. loadstring(game:HttpGet("https://pastebin.com/raw/gWvymQUe", true))()
  283. end)
  284.  
  285. pppesp:Toggle("Chest ESP",function(bool)
  286. shared.toggle = bool
  287. ---[Item Esp By Itsme]---
  288.  
  289. _G.Active = bool
  290. ---Settings---
  291. _G.EspLocation = game:GetService("Workspace")["Crate_Spawns"]
  292. _G.ObjectName = "Basic_Crate"
  293. _G.ObjectClass = "Model"
  294. _G.EspText = "Chest"
  295. _G.EspColor = 255, 255 ,255
  296.  
  297. loadstring(game:HttpGet("https://pastebin.com/raw/gWvymQUe", true))()
  298. end)
  299.  
  300. pppesp:Toggle("Health Kit ESP",function(bool)
  301. shared.toggle = bool
  302. ---[Item Esp By Itsme]---
  303.  
  304. _G.Active = bool
  305. ---Settings---
  306. _G.EspLocation = game:GetService("Workspace")["Loot_Spawns"]
  307. _G.ObjectName = "Health Kit"
  308. _G.ObjectClass = "Model"
  309. _G.EspText = "Health Kit"
  310. _G.EspColor = 255, 255 ,255
  311.  
  312. loadstring(game:HttpGet("https://pastebin.com/raw/gWvymQUe", true))()
  313. end)
  314.  
  315. pppesp:Toggle("Ammo ESP",function(bool)
  316. shared.toggle = bool
  317. ---[Item Esp By Itsme]---
  318.  
  319. _G.Active = bool
  320. ---Settings---
  321. _G.EspLocation = game:GetService("Workspace")["Loot_Spawns"]
  322. _G.ObjectName = "Heavy Ammo", "Medium Ammo", "Shotgun Ammo", "Bow Ammo", "Rocket Ammo", "Light Ammo"
  323. _G.ObjectClass = "Model"
  324. _G.EspText = "Ammo"
  325. _G.EspColor = 255, 255 ,255
  326.  
  327. loadstring(game:HttpGet("https://pastebin.com/raw/gWvymQUe", true))()
  328. end)
  329.  
  330. local ppppesp = c:CreateFolder("Miscellaneous")
  331. ppppesp:Toggle("Cybertruck ESP",function(bool)
  332. shared.toggle = bool
  333. ---[Item Esp By Itsme]---
  334.  
  335. _G.Active = bool
  336. ---Settings---
  337. _G.EspLocation = game:GetService("Workspace")["Crate_Spawns"]
  338. _G.ObjectName = "Cybertruck"
  339. _G.ObjectClass = "Model"
  340. _G.EspText = "Cybertruck"
  341. _G.EspColor = 255, 255 ,255
  342.  
  343. loadstring(game:HttpGet("https://pastebin.com/raw/gWvymQUe", true))()
  344. end)
  345.  
  346. ppppesp:Button("Crosshair",function()
  347. crosshairlength=25
  348. loadstring(game:HttpGetAsync("https://pastebin.com/raw/HnQMfe5p"))()
  349. end)
  350.  
  351.  
  352.  
  353. local d = w2:CreateFolder("Credits")
  354. d:Label("TheRealJMz",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
  355. d:Label("Itsme",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
  356. d:Label("Wally",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
  357.  
  358.  
  359. local g = w2:CreateFolder("Discord")
  360. g:Label("discord.gg/FJTztpT",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
Add Comment
Please, Sign In to add comment