Stekfenstsne

Hitbox Expander 2.0

Oct 9th, 2024
4,052
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.84 KB | None | 0 0
  1. --[[
  2.  
  3. Open source
  4. Original Made by !vcsk0#1516
  5. Credits to he
  6. Credits to Gamerku to updating the script
  7. Credits to the Owner Who Made The ESP Script
  8. Credits to master who own the esp script
  9.  
  10. ]]
  11.  
  12. local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
  13. local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
  14. local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
  15. local ESP = loadstring(game:HttpGet("https://raw.githubusercontent.com/gamerku2123/gamerkuepep/refs/heads/main/RoImgui"))();
  16. local CoreGui = game:GetService("StarterGui")
  17. local Players = game:GetService("Players")
  18.  
  19. local function isNumber(str)
  20. if tonumber(str) ~= nil or str == 'inf' then
  21. return true
  22. end
  23. end
  24.  
  25. -- Function to display a toast notification
  26. Fluent:Notify({
  27. Title = "Hitbox Expander 2.0",
  28. Content = "Injected!! Enjoy Cheating LOL",
  29. Duration = 8
  30. })
  31.  
  32. getgenv().HitboxSize = 15
  33. getgenv().HitboxTransparency = 0.9
  34.  
  35. getgenv().HitboxStatus = false
  36. getgenv().TeamCheck = false
  37.  
  38. getgenv().Walkspeed = game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed
  39. getgenv().Jumppower = game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower
  40.  
  41. getgenv().TPSpeed = 3
  42. getgenv().TPWalk = false
  43.  
  44. --// UI
  45.  
  46. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/UI-Library/main/Source/MyUILib(Unamed).lua"))();
  47. local Window = Library:Create("Hitbox Expander 2.0")
  48.  
  49. local ToggleGui = Instance.new("ScreenGui")
  50. local Toggle = Instance.new("TextButton")
  51.  
  52. ToggleGui.Name = "ToggleGui_HE"
  53. ToggleGui.Parent = game.CoreGui
  54.  
  55. Toggle.Name = "Toggle"
  56. Toggle.Parent = ToggleGui
  57. Toggle.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  58. Toggle.BackgroundTransparency = 0.660
  59. Toggle.Position = UDim2.new(0, 0, 0.454706937, 0)
  60. Toggle.Size = UDim2.new(0.0650164187, 0, 0.0888099447, 0)
  61. Toggle.Font = Enum.Font.SourceSans
  62. Toggle.Text = "Toggle"
  63. Toggle.TextScaled = true
  64. Toggle.TextColor3 = Color3.fromRGB(40, 40, 40)
  65. Toggle.TextSize = 24.000
  66. Toggle.TextXAlignment = Enum.TextXAlignment.Left
  67. Toggle.Active = true
  68. Toggle.Draggable = true
  69. Toggle.MouseButton1Click:connect(function()
  70. Library:ToggleUI()
  71. end)
  72.  
  73. local HomeTab = Window:Tab("Home","rbxassetid://10888331510")
  74. local PlayerTab = Window:Tab("Players","rbxassetid://12296135476")
  75. local VisualTab = Window:Tab("Visuals","rbxassetid://12308581351")
  76. local SettingsTab = Window:Tab("Settings","rbxassetid://8092240674")
  77.  
  78. HomeTab:InfoLabel("only works on some games!")
  79.  
  80. --// TOAST FUNCTION
  81. local function ShowToast(title, message)
  82. game:GetService("StarterGui"):SetCore("SendNotification", {
  83. Title = title,
  84. Text = message,
  85. Duration = 5,
  86. })
  87. end
  88.  
  89. --// WHAT'S NEW TOAST
  90. Fluent:Notify({
  91. Title = "Hitbox Expander 2.0",
  92. Content = "Loaded! - Noclip fixed, IY Added",
  93. Duration = 8
  94. })
  95.  
  96. --// INFINITE YIELD
  97. SettingsTab:Button("Infinite Yield", function()
  98. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  99. ShowToast("Hitbox Expander 2.0", "Infinite Yield injected!")
  100. end)
  101.  
  102. HomeTab:Section("Main Menu")
  103.  
  104. HomeTab:Toggle("Enable: ", function(state)
  105. getgenv().HitboxStatus = state
  106. game:GetService('RunService').RenderStepped:connect(function()
  107. if HitboxStatus == true and TeamCheck == false then
  108. for i,v in next, game:GetService('Players'):GetPlayers() do
  109. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  110. pcall(function()
  111. v.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize)
  112. v.Character.HumanoidRootPart.Transparency = HitboxTransparency
  113. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  114. v.Character.HumanoidRootPart.Material = "Neon"
  115. v.Character.HumanoidRootPart.CanCollide = false
  116. end)
  117. end
  118. end
  119. elseif HitboxStatus == true and TeamCheck == true then
  120. for i,v in next, game:GetService('Players'):GetPlayers() do
  121. if game:GetService('Players').LocalPlayer.Team ~= v.Team then
  122. pcall(function()
  123. v.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize)
  124. v.Character.HumanoidRootPart.Transparency = HitboxTransparency
  125. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  126. v.Character.HumanoidRootPart.Material = "Neon"
  127. v.Character.HumanoidRootPart.CanCollide = false
  128. end)
  129. end
  130. end
  131. else
  132. for i,v in next, game:GetService('Players'):GetPlayers() do
  133. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  134. pcall(function()
  135. v.Character.HumanoidRootPart.Size = Vector3.new(2,2,1)
  136. v.Character.HumanoidRootPart.Transparency = 1
  137. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Medium stone grey")
  138. v.Character.HumanoidRootPart.Material = "Plastic"
  139. v.Character.HumanoidRootPart.CanCollide = false
  140. end)
  141. end
  142. end
  143. end
  144. end)
  145. end)
  146. HomeTab:Button("Enable Hitbox (for arsenal)", function()
  147. loadstring(game:HttpGet("https://raw.githubusercontent.com/Rollimonster/Arsenal-Hitbox-Expander/main/Arsenal-Hitbox-Expander"))()
  148. end)
  149. HomeTab:TextBox("Hitbox Size", function(value)
  150. getgenv().HitboxSize = value
  151. end)
  152.  
  153. HomeTab:Toggle("Team Check", function(state)
  154. getgenv().TeamCheck = state
  155. ESP_SETTINGS.Teamcheck = true
  156. end)
  157.  
  158. HomeTab:TextBox("Hitbox Transparency", function(number)
  159. getgenv().HitboxTransparency = number
  160. end)
  161.  
  162. PlayerTab:Section("Players Menu")
  163.  
  164. PlayerTab:TextBox("WalkSpeed", function(value)
  165. getgenv().Walkspeed = value
  166. pcall(function()
  167. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = value
  168. end)
  169. end)
  170.  
  171. PlayerTab:Toggle("Loop WalkSpeed", function(state)
  172. getgenv().loopW = state
  173. game:GetService("RunService").Heartbeat:Connect(function()
  174. if loopW == true then
  175. pcall(function()
  176. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = Walkspeed
  177. end)
  178. end
  179. end)
  180. end)
  181.  
  182. PlayerTab:TextBox("JumpPower", function(value)
  183. getgenv().Jumppower = value
  184. pcall(function()
  185. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = value
  186. end)
  187. end)
  188.  
  189. PlayerTab:Toggle("Loop JumpPower", function(state)
  190. getgenv().loopJ = state
  191. game:GetService("RunService").Heartbeat:Connect(function()
  192. if loopJ == true then
  193. pcall(function()
  194. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = Jumppower
  195. end)
  196. end
  197. end)
  198. end)
  199.  
  200. PlayerTab:Keybind("Noclip", Enum.KeyCode.N, function()
  201. local Noclip = not Noclip
  202. local Player = game:GetService("Players").LocalPlayer
  203.  
  204. if Noclip then
  205. for _,v in pairs(Player.Character:GetDescendants()) do
  206. if v:IsA("BasePart") then
  207. v.CanCollide = false
  208. end
  209. end
  210. else
  211. for _,v in pairs(Player.Character:GetDescendants()) do
  212. if v:IsA("BasePart") then
  213. v.CanCollide = true
  214. end
  215. end
  216. end
  217. end)
  218.  
  219. PlayerTab:Toggle("Noclip Mobile", function(state)
  220. local Noclip = not Noclip
  221. local Player = game:GetService("Players").LocalPlayer
  222.  
  223. if Noclip then
  224. for _,v in pairs(Player.Character:GetDescendants()) do
  225. if v:IsA("BasePart") then
  226. v.CanCollide = false
  227. end
  228. end
  229. else
  230. for _,v in pairs(Player.Character:GetDescendants()) do
  231. if v:IsA("BasePart") then
  232. v.CanCollide = true
  233. end
  234. end
  235. end
  236. end)
  237.  
  238. PlayerTab:TextBox("TP Speed", function(value)
  239. getgenv().TPSpeed = value
  240. end)
  241.  
  242. PlayerTab:Toggle("TP Walk", function(s)
  243. getgenv().TPWalk = s
  244. local hb = game:GetService("RunService").Heartbeat
  245. local player = game:GetService("Players")
  246. local lplr = player.LocalPlayer
  247. local chr = lplr.Character
  248. local hum = chr and chr:FindFirstChildWhichIsA("Humanoid")
  249. while getgenv().TPWalk and hb:Wait() and chr and hum and hum.Parent do
  250. if hum.MoveDirection.Magnitude > 0 then
  251. if getgenv().TPSpeed and isNumber(getgenv().TPSpeed) then
  252. chr:TranslateBy(hum.MoveDirection * tonumber(getgenv().TPSpeed))
  253. else
  254. chr:TranslateBy(hum.MoveDirection)
  255. end
  256. end
  257. end
  258. end)
  259.  
  260. PlayerTab:Slider("Fov", game.Workspace.CurrentCamera.FieldOfView,120, function(v)
  261. game.Workspace.CurrentCamera.FieldOfView = v
  262. end)
  263.  
  264. PlayerTab:Toggle("Infinite Jump", function(s)
  265. getgenv().InfJ = s
  266. game:GetService("UserInputService").JumpRequest:connect(function()
  267. if InfJ == true then
  268. game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  269. end
  270. end)
  271. end)
  272.  
  273. VisualTab:Section("Visuals")
  274.  
  275. VisualTab:InfoLabel("Wait 3-10 seconds")
  276.  
  277. VisualTab:Toggle("Enable Esp", function(state)
  278. ESP.Enabled = state;
  279. end)
  280.  
  281. VisualTab:Toggle("Character Highlight", function(state)
  282. getgenv().enabled = state --Toggle on/off
  283. getgenv().filluseteamcolor = true --Toggle fill color using player team color on/off
  284. getgenv().outlineuseteamcolor = true --Toggle outline color using player team color on/off
  285. getgenv().fillcolor = Color3.new(0, 0, 0) --Change fill color, no need to edit if using team color
  286. getgenv().outlinecolor = Color3.new(1, 1, 1) --Change outline color, no need to edit if using team color
  287. getgenv().filltrans = 0.5 --Change fill transparency
  288. getgenv().outlinetrans = 0.5 --Change outline transparency
  289.  
  290. loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/RobloxScripts/main/Highlight-ESP.lua"))()
  291. end)
  292.  
  293. if game.PlaceId == 3082002798 then
  294. local GamesTab = Window:Tab("Games","rbxassetid://15426471035")
  295. GamesTab:InfoLabel("Game: "..game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name)
  296. GamesTab:Button("No Cooldown", function()
  297. for i, v in pairs(game:GetService('ReplicatedStorage')['Shared_Modules'].Tools:GetDescendants()) do
  298. if v:IsA('ModuleScript') then
  299. local Module = require(v)
  300. Module.DEBOUNCE = 0
  301. end
  302. end
  303. end)
  304. end
  305.  
  306.  
  307.  
  308. VisualTab:Toggle("Hitbox", function(state)
  309. ESP.ShowBox = state;
  310. end)
  311.  
  312. VisualTab:Toggle("Names", function(state)
  313. ESP.ShowName = state;
  314. end)
  315.  
  316.  
  317. VisualTab:Toggle("Healthbar", function(state)
  318. ESP.ShowHealth = state;
  319. end)
  320.  
  321. VisualTab:Toggle("Tracers", function(state)
  322. ESP.ShowTracer = state;
  323. end)
  324.  
  325. VisualTab:Toggle("Distance", function(state)
  326. ESP.ShowDistance = state
  327. end)
  328.  
  329. PlayerTab:Section("Players Menu")
  330.  
  331. SettingsTab:Keybind("Toggle UI", Enum.KeyCode.F, function()
  332. Library:ToggleUI()
  333. end)
  334.  
  335. SettingsTab:Button("Rejoin", function()
  336. game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer)
  337. end)
Advertisement
Add Comment
Please, Sign In to add comment