Advertisement
ItzDiegoExploitzBoi

Untitled

Sep 4th, 2022
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.65 KB | None | 0 0
  1. -- [[ HamstaGang on V3RM | Last updated 08/29/2022 ]] --
  2.  
  3. -- Wait for game to load
  4. repeat task.wait() until game:IsLoaded();
  5.  
  6. -- Temp fix for ROBLOX turning off highlights
  7. if setfflag then setfflag("OutlineSelection", "true") end
  8.  
  9. -- Services
  10. local ReplicatedStorage = game:GetService("ReplicatedStorage");
  11. local CoreGui = game:GetService("CoreGui");
  12. local Players = game:GetService("Players");
  13. local Workspace = game:GetService("Workspace");
  14. local Lighting = game:GetService("Lighting");
  15. local VirtualInputManager = game:GetService("VirtualInputManager");
  16.  
  17. -- Remote Stuff
  18. local Events = ReplicatedStorage:WaitForChild("Events", 1337)
  19.  
  20. -- Local Player
  21. local Player = Players.LocalPlayer;
  22.  
  23. -- UI Lib (Fluxus Lib because I like to shuffle them and they support WEAO <3)
  24. local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/Babyhamsta/RBLX_Scripts/main/UILibs/FluxusUI.lua"))()
  25.  
  26. -- ESP support
  27. local ESP = loadstring(game:HttpGet("https://raw.githubusercontent.com/Babyhamsta/RBLX_Scripts/main/Universal/SimpleHighlightESP.lua"))()
  28.  
  29. -- Main Window
  30. local Window = lib:CreateWindow("Evade Gui")
  31.  
  32. -- Create Pages
  33. local CharPage = Window:NewTab("Character")
  34. local InvePage = Window:NewTab("Inventory")
  35. local ServerPage = Window:NewTab("Server")
  36. local ESPPage = Window:NewTab("ESP/Camera")
  37.  
  38. -- Create Sections
  39. local MainSection = CharPage:AddSection("Character")
  40. local InventorySection = InvePage:AddSection("Inventory")
  41. local ServerSection = ServerPage:AddSection("Server")
  42. local ESPSection = ESPPage:AddSection("ESP")
  43. local CamSection = ESPPage:AddSection("Camera")
  44.  
  45. -- GUI Toggles / Settings
  46. local Highlights_Active = false;
  47. local AI_ESP = false;
  48. local GodMode_Enabled = false;
  49. local No_CamShake = false;
  50.  
  51. -- Anti AFK
  52. for i,v in pairs(getconnections(game:GetService("Players").LocalPlayer.Idled)) do v:Disable() end
  53.  
  54. -- Simple Text ESP
  55. function Simple_Create(base, name, trackername, studs)
  56. local bb = Instance.new('BillboardGui', game.CoreGui)
  57. bb.Adornee = base
  58. bb.ExtentsOffset = Vector3.new(0,1,0)
  59. bb.AlwaysOnTop = true
  60. bb.Size = UDim2.new(0,6,0,6)
  61. bb.StudsOffset = Vector3.new(0,1,0)
  62. bb.Name = trackername
  63.  
  64. local frame = Instance.new('Frame', bb)
  65. frame.ZIndex = 10
  66. frame.BackgroundTransparency = 0.3
  67. frame.Size = UDim2.new(1,0,1,0)
  68. frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  69.  
  70. local txtlbl = Instance.new('TextLabel', bb)
  71. txtlbl.ZIndex = 10
  72. txtlbl.BackgroundTransparency = 1
  73. txtlbl.Position = UDim2.new(0,0,0,-48)
  74. txtlbl.Size = UDim2.new(1,0,10,0)
  75. txtlbl.Font = 'ArialBold'
  76. txtlbl.FontSize = 'Size12'
  77. txtlbl.Text = name
  78. txtlbl.TextStrokeTransparency = 0.5
  79. txtlbl.TextColor3 = Color3.fromRGB(255, 0, 0)
  80.  
  81. local txtlblstud = Instance.new('TextLabel', bb)
  82. txtlblstud.ZIndex = 10
  83. txtlblstud.BackgroundTransparency = 1
  84. txtlblstud.Position = UDim2.new(0,0,0,-35)
  85. txtlblstud.Size = UDim2.new(1,0,10,0)
  86. txtlblstud.Font = 'ArialBold'
  87. txtlblstud.FontSize = 'Size12'
  88. txtlblstud.Text = tostring(studs) .. " Studs"
  89. txtlblstud.TextStrokeTransparency = 0.5
  90. txtlblstud.TextColor3 = Color3.new(255,255,255)
  91. end
  92.  
  93. -- Clear ESP
  94. function ClearESP(espname)
  95. for _,v in pairs(game.CoreGui:GetChildren()) do
  96. if v.Name == espname and v:isA('BillboardGui') then
  97. v:Destroy()
  98. end
  99. end
  100. end
  101.  
  102. -- God Mode (Credits to Egg Salad)
  103. MainSection:AddButton("God Mode", "Gives you god mode", function()
  104. local Character = Player.Character or Player.CharacterAdded:Wait()
  105. local Hum = Character:WaitForChild("Humanoid")
  106. Hum.Parent = nil;
  107. Hum.Parent = Character;
  108. end)
  109.  
  110. MainSection:AddToggle("Loop God Mode", "Keeps god mode on", false, function(bool)
  111. GodMode_Enabled = bool;
  112.  
  113. if bool then -- just incase they only enable the toggle..
  114. local Character = Player.Character or Player.CharacterAdded:Wait()
  115. local Hum = Character:WaitForChild("Humanoid")
  116. Hum.Parent = nil;
  117. Hum.Parent = Char;
  118. end
  119. end)
  120.  
  121. -- Respawn/Reset
  122. MainSection:AddButton("Respawn", "Free respawn, no need to pay 15 robux!", function()
  123. local Reset = Events:FindFirstChild("Reset")
  124. local Respawn = Events:FindFirstChild("Respawn")
  125.  
  126. if Reset and Respawn then
  127. Reset:FireServer();
  128. task.wait(2)
  129. Respawn:FireServer();
  130. end
  131. end)
  132.  
  133. -- Make server all bright so your eye balls can see
  134. MainSection:AddButton("Full Bright", "For users who are scared of the dark :(", function()
  135. local light = Instance.new("PointLight", Character.HumanoidRootPart)
  136. light.Brightness = .3
  137. light.Range = 10000
  138.  
  139. Lighting.TimeOfDay = "14:00:00"
  140. Lighting.FogEnd = 10000;
  141. Lighting.Brightness = 2;
  142. Lighting.Ambient = Color3.fromRGB(255,255,255)
  143. Lighting.FogColor = Color3.fromRGB(255,255,255)
  144. end)
  145.  
  146. MainSection:AddSlider("WalkSpeed", "Adjust WalkSpeed to be speed", 1450, 10000, 1450, true, function(val)
  147. pcall(function()
  148. local Character = Player.Character;
  149. Character.Humanoid:SetAttribute("RealSpeed", tonumber(val));
  150. end)
  151. end)
  152.  
  153. MainSection:AddSlider("JumpPower", "Adjust JumpPower and dunk", 3, 15, 3, true, function(val)
  154. pcall(function()
  155. local Character = Player.Character;
  156. Character.Humanoid:SetAttribute("RealJumpHeight", tonumber(val));
  157. end)
  158. end)
  159.  
  160. -- Alpha Skin Giver
  161. InventorySection:AddButton("Alpha Skin", "Gives you the private alpha skin", function()
  162. Events.UI.Purchase:InvokeServer("Skins", "AlphaTester")
  163. end)
  164.  
  165. -- Boombox Giver (Frog#5989)
  166. InventorySection:AddButton("Boombox Skin", "Gives you the Boombox skin for free!", function()
  167. Events.UI.Purchase:InvokeServer("Skins", "Boombox")
  168. end)
  169.  
  170. -- Emote Giver (Frog#5989)
  171. InventorySection:AddButton("Dev Test Emote", "Gives you the private test emote.", function()
  172. Events.UI.Purchase:InvokeServer("Emotes", "Test")
  173. end)
  174.  
  175. -- Crash Server (Credits to FeIix (V3RM) <3)
  176. ServerSection:AddButton("Crash Server", "Crashes the server", function()
  177. local Reset = Events:FindFirstChild("Reset")
  178. local Respawn = Events:FindFirstChild("Respawn")
  179. while task.wait() do
  180. if Reset and Respawn then
  181. Reset:FireServer()
  182. Respawn:FireServer()
  183. end
  184. end
  185. end)
  186.  
  187.  
  188. -- Character Highlights
  189. ESPSection:AddButton("Character Highlights", "Highlights all characters to make them easier to see.", function()
  190. ESP:ClearESP();
  191. Highlights_Active = true;
  192.  
  193. for i, v in ipairs(Players:GetPlayers()) do
  194. if v ~= Player then
  195. v.CharacterAdded:Connect(function(Char)
  196. ESP:AddOutline(Char)
  197. ESP:AddNameTag(Char)
  198. end)
  199.  
  200. if v.Character then
  201. ESP:AddOutline(v.Character)
  202. ESP:AddNameTag(v.Character)
  203. end
  204. end
  205. end
  206. end)
  207.  
  208. -- AI Text ESP
  209. ESPSection:AddToggle("AI ESP", "Adds text ESP to AI to make them easier to see.", false, function(bool)
  210. AI_ESP = bool;
  211. end)
  212.  
  213. -- No Camera Shake
  214. CamSection:AddToggle("No Camera Shake", "Removes camera shake that is caused by the AI.", false, function(bool)
  215. No_CamShake = bool;
  216. end)
  217.  
  218.  
  219. -- [[ Helpers / Loop Funcs ]] --
  220.  
  221. -- Highlight helper
  222. game:GetService("Players").PlayerAdded:Connect(function(Player)
  223. Player.CharacterAdded:Connect(function(Char)
  224. if Highlights_Active then
  225. ESP:AddOutline(Char)
  226. ESP:AddNameTag(Char)
  227. end
  228. end)
  229. end)
  230.  
  231. -- Target only Local Player
  232. Player.CharacterAdded:Connect(function(Char)
  233. local Hum = Char:WaitForChild("Humanoid", 1337);
  234.  
  235. -- Godmode helper (Credits to Egg Salad)
  236. if GodMode_Enabled then
  237. Hum.Parent = nil;
  238. Hum.Parent = Char;
  239. end
  240. end)
  241.  
  242.  
  243. -- ESP AI
  244. task.spawn(function()
  245. while task.wait(0.05) do
  246. if AI_ESP then
  247. pcall(function()
  248. ClearESP("AI_Tracker")
  249. local GamePlayers = Workspace:WaitForChild("Game", 1337).Players;
  250. for i,v in pairs(GamePlayers:GetChildren()) do
  251. if not game.Players:FindFirstChild(v.Name) then -- Is AI
  252. local studs = Player:DistanceFromCharacter(v.PrimaryPart.Position)
  253. Simple_Create(v.HumanoidRootPart, v.Name, "AI_Tracker", math.floor(studs + 0.5))
  254. end
  255. end
  256. end)
  257. else
  258. ClearESP("AI_Tracker");
  259. end
  260. end
  261. end)
  262.  
  263. -- Camera Shake
  264. task.spawn(function()
  265. while task.wait() do
  266. if No_CamShake then
  267. Player.PlayerScripts:WaitForChild("CameraShake", 1234).Value = CFrame.new(0,0,0) * CFrame.Angles(0,0,0);
  268. end
  269. end
  270. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement