sped
sped
getgenv().HitboxSize = 15
getgenv().HitboxTransparency = 0.9
getgenv().HitboxStatus = false
getgenv().TeamCheck = false
getgenv().TPSpeed = 3
getgenv().TPWalk = false
--// UI
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/UI-
Library/main/Source/MyUILib(Unamed).lua"))();
local Window = Library:Create("Hitbox Expander")
HomeTab:Section("Settings")
HomeTab:Section("Main")
if v.Name ~= game:GetService('Players').LocalPlayer.Name
and shouldModifyHitbox then
pcall(function()
if v.Character and
v.Character:FindFirstChild("HumanoidRootPart") then
local hrp = v.Character.HumanoidRootPart
hrp.Size = Vector3.new(HitboxSize,
HitboxSize, HitboxSize)
hrp.Transparency = HitboxTransparency
hrp.BrickColor = BrickColor.new("Really
black")
hrp.Material = "Neon"
hrp.CanCollide = false
end
end)
end
end
else
for i,v in next, game:GetService('Players'):GetPlayers() do
if v.Name ~= game:GetService('Players').LocalPlayer.Name
then
pcall(function()
if v.Character and
v.Character:FindFirstChild("HumanoidRootPart") then
local hrp = v.Character.HumanoidRootPart
hrp.Size = Vector3.new(2,2,1)
hrp.Transparency = 1
hrp.BrickColor = BrickColor.new("Medium
stone grey")
hrp.Material = "Plastic"
hrp.CanCollide = false
end
end)
end
end
end
end)
end)
PlayerTab:TextBox("WalkSpeed", function(value)
getgenv().Walkspeed = tonumber(value) or 16
pcall(function()
game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed =
getgenv().Walkspeed
end)
end)
PlayerTab:TextBox("JumpPower", function(value)
getgenv().Jumppower = tonumber(value) or 50
pcall(function()
game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower =
getgenv().Jumppower
end)
end)
PlayerTab:Toggle("Noclip", function(s)
getgenv().Noclip = s
game:GetService("RunService").Heartbeat:Connect(function()
if Noclip == true then
game:GetService("RunService").Stepped:wait()
local character = game.Players.LocalPlayer.Character
if character then
local head = character:FindFirstChild("Head")
local torso = character:FindFirstChild("Torso") or
character:FindFirstChild("UpperTorso")
if head then head.CanCollide = false end
if torso then torso.CanCollide = false end
end
end
end)
end)
game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass'Humanoid':Ch
angeState("Jumping")
end
end)
end)
PlayerTab:Button("Rejoin", function()
game:GetService("TeleportService"):Teleport(game.PlaceId,
game:GetService("Players").LocalPlayer)
end)
loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/RobloxScripts/
main/Highlight-ESP.lua"))()
end)