0% found this document useful (0 votes)
5 views

sped

The document outlines a script for a Roblox game that allows players to modify their hitbox size and transparency, as well as adjust their walk speed and jump power. It includes a user interface with various settings and toggles for features like noclip, infinite jump, and character highlighting. Additionally, it provides options for team checks and teleportation speed adjustments, enhancing gameplay customization.

Uploaded by

aprocertified
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

sped

The document outlines a script for a Roblox game that allows players to modify their hitbox size and transparency, as well as adjust their walk speed and jump power. It includes a user interface with various settings and toggles for features like noclip, infinite jump, and character highlighting. Additionally, it provides options for team checks and teleportation speed adjustments, enhancing gameplay customization.

Uploaded by

aprocertified
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

local CoreGui = game:GetService("StarterGui")

local Players = game:GetService("Players")


local UserInputService = game:GetService("UserInputService")

local function isNumber(str)


return tonumber(str) ~= nil or str == 'inf'
end

getgenv().HitboxSize = 15
getgenv().HitboxTransparency = 0.9

getgenv().HitboxStatus = false
getgenv().TeamCheck = false

local localPlayer = Players.LocalPlayer


getgenv().Walkspeed = localPlayer.Character.Humanoid.WalkSpeed
getgenv().Jumppower = localPlayer.Character.Humanoid.JumpPower

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")

local HomeTab = Window:Tab("Home","rbxassetid://10888331510")


local PlayerTab = Window:Tab("Players","rbxassetid://12296135476")
local VisualTab = Window:Tab("Visuals","rbxassetid://12308581351")

HomeTab:InfoLabel("only works on some games!")

HomeTab:Section("Settings")

HomeTab:TextBox("Hitbox Size", function(value)


getgenv().HitboxSize = tonumber(value) or 15
end)

HomeTab:TextBox("Hitbox Transparency", function(number)


getgenv().HitboxTransparency = tonumber(number) or 0.9
end)

HomeTab:Section("Main")

HomeTab:Toggle("Status: ", function(state)


getgenv().HitboxStatus = state
game:GetService('RunService').RenderStepped:Connect(function()
if HitboxStatus == true then
for i,v in next, game:GetService('Players'):GetPlayers() do
local shouldModifyHitbox = (not TeamCheck) or
(TeamCheck and
game:GetService('Players').LocalPlayer.Team ~= v.Team)

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)

HomeTab:Toggle("Team Check", function(state)


getgenv().TeamCheck = state
end)

HomeTab:Keybind("Toggle UI", Enum.KeyCode.F, function()


Library:ToggleUI()
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:Toggle("Loop WalkSpeed", function(state)


getgenv().loopW = state
game:GetService("RunService").Heartbeat:Connect(function()
if loopW == true then
pcall(function()
game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed
= Walkspeed
end)
end
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("Loop JumpPower", function(state)


getgenv().loopJ = state
game:GetService("RunService").Heartbeat:Connect(function()
if loopJ == true then
pcall(function()
game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower
= Jumppower
end)
end
end)
end)

PlayerTab:TextBox("TP Speed", function(value)


getgenv().TPSpeed = tonumber(value) or 3
end)

PlayerTab:Toggle("TP Walk", function(s)


getgenv().TPWalk = s
local hb = game:GetService("RunService").Heartbeat
local player = game:GetService("Players")
local lplr = player.LocalPlayer
local chr = lplr.Character
local hum = chr and chr:FindFirstChildWhichIsA("Humanoid")
while getgenv().TPWalk and hb:Wait() and chr and hum and hum.Parent do
if hum.MoveDirection.Magnitude > 0 then
local speed = getgenv().TPSpeed and isNumber(getgenv().TPSpeed) and
tonumber(getgenv().TPSpeed) or 1
chr:TranslateBy(hum.MoveDirection * speed)
end
end
end)

PlayerTab:Slider("Fov", game.Workspace.CurrentCamera.FieldOfView,120, function(v)


game.Workspace.CurrentCamera.FieldOfView = v
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)

PlayerTab:Toggle("Infinite Jump", function(s)


getgenv().InfJ = s
game:GetService("UserInputService").JumpRequest:Connect(function()
if InfJ == true then

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)

VisualTab:InfoLabel("Wait 3-10 seconds")

VisualTab:Toggle("Character Highlight", function(state)


getgenv().enabled = state
getgenv().filluseteamcolor = true
getgenv().outlineuseteamcolor = true
getgenv().fillcolor = Color3.new(0, 0, 0)
getgenv().outlinecolor = Color3.new(1, 1, 1)
getgenv().filltrans = 0.5
getgenv().outlinetrans = 0.5

loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/RobloxScripts/
main/Highlight-ESP.lua"))()
end)

if game.PlaceId == 3082002798 then


local GamesTab = Window:Tab("Games","rbxassetid://15426471035")
GamesTab:InfoLabel("Game:
"..game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name)
GamesTab:Button("No Cooldown", function()
for i, v in pairs(game:GetService('ReplicatedStorage')
['Shared_Modules'].Tools:GetDescendants()) do
if v:IsA('ModuleScript') then
local Module = require(v)
Module.DEBOUNCE = 0
end
end
end)
end

You might also like