Advertisement
Newplayer900

hitbox

Jul 2nd, 2024 (edited)
31,237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.01 KB | None | 0 0
  1. --[[
  2.  
  3. Open source
  4. Made by !vcsk0#1516
  5. Credits to me
  6.  
  7. Credits to the Owner Who Made The ESP Script
  8.  
  9. ]]
  10.  
  11. local CoreGui = game:GetService("StarterGui")
  12. local Players = game:GetService("Players")
  13.  
  14. local function isNumber(str)
  15. if tonumber(str) ~= nil or str == 'inf' then
  16. return true
  17. end
  18. end
  19.  
  20. getgenv().HitboxSize = 15
  21. getgenv().HitboxTransparency = 0.9
  22.  
  23. getgenv().HitboxStatus = false
  24. getgenv().TeamCheck = false
  25.  
  26. getgenv().Walkspeed = game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed
  27. getgenv().Jumppower = game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower
  28.  
  29. getgenv().TPSpeed = 3
  30. getgenv().TPWalk = false
  31.  
  32. --// UI
  33.  
  34. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/UI-Library/main/Source/MyUILib(Unamed).lua"))();
  35. local Window = Library:Create("Hitbox Expander")
  36.  
  37. local ToggleGui = Instance.new("ScreenGui")
  38. local Toggle = Instance.new("TextButton")
  39.  
  40. ToggleGui.Name = "ToggleGui_HE"
  41. ToggleGui.Parent = game.CoreGui
  42.  
  43. Toggle.Name = "Toggle"
  44. Toggle.Parent = ToggleGui
  45. Toggle.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  46. Toggle.BackgroundTransparency = 0.660
  47. Toggle.Position = UDim2.new(0, 0, 0.454706937, 0)
  48. Toggle.Size = UDim2.new(0.0650164187, 0, 0.0888099447, 0)
  49. Toggle.Font = Enum.Font.SourceSans
  50. Toggle.Text = "Toggle"
  51. Toggle.TextScaled = true
  52. Toggle.TextColor3 = Color3.fromRGB(40, 40, 40)
  53. Toggle.TextSize = 24.000
  54. Toggle.TextXAlignment = Enum.TextXAlignment.Left
  55. Toggle.Active = true
  56. Toggle.Draggable = true
  57. Toggle.MouseButton1Click:connect(function()
  58. Library:ToggleUI()
  59. end)
  60.  
  61. local HomeTab = Window:Tab("Home","rbxassetid://10888331510")
  62. local PlayerTab = Window:Tab("Players","rbxassetid://12296135476")
  63. local VisualTab = Window:Tab("Visuals","rbxassetid://12308581351")
  64.  
  65. HomeTab:InfoLabel("CLICK THE STATUS BUTTON TO WORK")
  66.  
  67. HomeTab:Section("Settings")
  68.  
  69. HomeTab:TextBox("Hitbox Size", function(value)
  70. getgenv().HitboxSize = value
  71. end)
  72.  
  73. HomeTab:TextBox("Hitbox Transparency", function(number)
  74. getgenv().HitboxTransparency = number
  75. end)
  76.  
  77. HomeTab:Section("Main")
  78.  
  79. HomeTab:Toggle("Status: ", function(state)
  80. getgenv().HitboxStatus = state
  81. game:GetService('RunService').RenderStepped:connect(function()
  82. if HitboxStatus == true and TeamCheck == false then
  83. for i,v in next, game:GetService('Players'):GetPlayers() do
  84. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  85. pcall(function()
  86. v.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize)
  87. v.Character.HumanoidRootPart.Transparency = HitboxTransparency
  88. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  89. v.Character.HumanoidRootPart.Material = "Neon"
  90. v.Character.HumanoidRootPart.CanCollide = false
  91. end)
  92. end
  93. end
  94. elseif HitboxStatus == true and TeamCheck == true then
  95. for i,v in next, game:GetService('Players'):GetPlayers() do
  96. if game:GetService('Players').LocalPlayer.Team ~= v.Team then
  97. pcall(function()
  98. v.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize)
  99. v.Character.HumanoidRootPart.Transparency = HitboxTransparency
  100. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  101. v.Character.HumanoidRootPart.Material = "Neon"
  102. v.Character.HumanoidRootPart.CanCollide = false
  103. end)
  104. end
  105. end
  106. else
  107. for i,v in next, game:GetService('Players'):GetPlayers() do
  108. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  109. pcall(function()
  110. v.Character.HumanoidRootPart.Size = Vector3.new(2,2,1)
  111. v.Character.HumanoidRootPart.Transparency = 1
  112. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Medium stone grey")
  113. v.Character.HumanoidRootPart.Material = "Plastic"
  114. v.Character.HumanoidRootPart.CanCollide = false
  115. end)
  116. end
  117. end
  118. end
  119. end)
  120. end)
  121.  
  122. HomeTab:Toggle("Team Check", function(state)
  123. getgenv().TeamCheck = state
  124. end)
  125.  
  126. HomeTab:Keybind("Toggle UI", Enum.KeyCode.F, function()
  127. Library:ToggleUI()
  128. end)
  129.  
  130. PlayerTab:TextBox("WalkSpeed", function(value)
  131. getgenv().Walkspeed = value
  132. pcall(function()
  133. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = value
  134. end)
  135. end)
  136.  
  137. PlayerTab:Toggle("Loop WalkSpeed", function(state)
  138. getgenv().loopW = state
  139. game:GetService("RunService").Heartbeat:Connect(function()
  140. if loopW == true then
  141. pcall(function()
  142. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = Walkspeed
  143. end)
  144. end
  145. end)
  146. end)
  147.  
  148. PlayerTab:TextBox("JumpPower", function(value)
  149. getgenv().Jumppower = value
  150. pcall(function()
  151. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = value
  152. end)
  153. end)
  154.  
  155. PlayerTab:Toggle("Loop JumpPower", function(state)
  156. getgenv().loopJ = state
  157. game:GetService("RunService").Heartbeat:Connect(function()
  158. if loopJ == true then
  159. pcall(function()
  160. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = Jumppower
  161. end)
  162. end
  163. end)
  164. end)
  165.  
  166. PlayerTab:TextBox("TP Speed", function(value)
  167. getgenv().TPSpeed = value
  168. end)
  169.  
  170. PlayerTab:Toggle("TP Walk", function(s)
  171. getgenv().TPWalk = s
  172. local hb = game:GetService("RunService").Heartbeat
  173. local player = game:GetService("Players")
  174. local lplr = player.LocalPlayer
  175. local chr = lplr.Character
  176. local hum = chr and chr:FindFirstChildWhichIsA("Humanoid")
  177. while getgenv().TPWalk and hb:Wait() and chr and hum and hum.Parent do
  178. if hum.MoveDirection.Magnitude > 0 then
  179. if getgenv().TPSpeed and isNumber(getgenv().TPSpeed) then
  180. chr:TranslateBy(hum.MoveDirection * tonumber(getgenv().TPSpeed))
  181. else
  182. chr:TranslateBy(hum.MoveDirection)
  183. end
  184. end
  185. end
  186. end)
  187.  
  188. PlayerTab:Slider("Fov", game.Workspace.CurrentCamera.FieldOfView,120, function(v)
  189. game.Workspace.CurrentCamera.FieldOfView = v
  190. end)
  191.  
  192. PlayerTab:Toggle("Noclip", function(s)
  193. getgenv().Noclip = s
  194. game:GetService("RunService").Heartbeat:Connect(function()
  195. if Noclip == true then
  196. game:GetService("RunService").Stepped:wait()
  197. game.Players.LocalPlayer.Character.Head.CanCollide = false
  198. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  199. end
  200. end)
  201. end)
  202.  
  203. PlayerTab:Toggle("Infinite Jump", function(s)
  204. getgenv().InfJ = s
  205. game:GetService("UserInputService").JumpRequest:connect(function()
  206. if InfJ == true then
  207. game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  208. end
  209. end)
  210. end)
  211.  
  212. PlayerTab:Button("Rejoin", function()
  213. game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer)
  214. end)
  215.  
  216. VisualTab:InfoLabel("Wait 3-10 seconds")
  217.  
  218. VisualTab:Toggle("Character Highlight", function(state)
  219. getgenv().enabled = state --Toggle on/off
  220. getgenv().filluseteamcolor = true --Toggle fill color using player team color on/off
  221. getgenv().outlineuseteamcolor = true --Toggle outline color using player team color on/off
  222. getgenv().fillcolor = Color3.new(0, 0, 0) --Change fill color, no need to edit if using team color
  223. getgenv().outlinecolor = Color3.new(1, 1, 1) --Change outline color, no need to edit if using team color
  224. getgenv().filltrans = 0.5 --Change fill transparency
  225. getgenv().outlinetrans = 0.5 --Change outline transparency
  226.  
  227. loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/RobloxScripts/main/Highlight-ESP.lua"))()
  228. end)
  229.  
  230. if game.PlaceId == 3082002798 then
  231. local GamesTab = Window:Tab("Games","rbxassetid://15426471035")
  232. GamesTab:InfoLabel("Game: "..game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name)
  233. GamesTab:Button("No Cooldown", function()
  234. for i, v in pairs(game:GetService('ReplicatedStorage')['Shared_Modules'].Tools:GetDescendants()) do
  235. if v:IsA('ModuleScript') then
  236. local Module = require(v)
  237. Module.DEBOUNCE = 0
  238. end
  239. end
  240. end)
  241. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement