ADVERTISEMENTREMOVE ADS

Invisible hitbox expander

Universal scriptβ€’
2 months ago
Script preview thumbnail
Script Preview

Description

An invisible hitbox expander perfect for making videos without noticing the cheat πŸ˜ˆπŸ†

Please like script

nagisa-hack-666-β˜†

ADVERTISEMENTREMOVE ADS
61 Lines β€’ 1.97 KiB
Raw
_G.HeadSize = 20
_G.Disabled = true
local Players = game:GetService('Players')
local RunService = game:GetService('RunService')
local LocalPlayer = Players.LocalPlayer
local MobsFolder = workspace:FindFirstChild("Mobs")
local StarterGui = game:GetService("StarterGui")
local function showCenterMessage(text, color, duration)
local ScreenGui = Instance.new("ScreenGui")
ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui")
local TextLabel = Instance.new("TextLabel")
TextLabel.Parent = ScreenGui
TextLabel.Text = text
TextLabel.TextColor3 = color
TextLabel.TextScaled = true
TextLabel.BackgroundTransparency = 1
TextLabel.Size = UDim2.new(1, 0, 0.2, 0)
TextLabel.Position = UDim2.new(0, 0, 0.4, 0)
TextLabel.Font = Enum.Font.GothamBold
task.delay(duration, function()
ScreenGui:Destroy()
end)
end
local function applyPropertiesToPart(part)
if part then
part.Size = Vector3.new(_G.HeadSize, _G.HeadSize, _G.HeadSize)
part.Transparency = 1 -- invisible
part.CanCollide = false
end
end
if _G.Disabled then
showCenterMessage("power by nagisa-hacker-666-β˜†", Color3.fromRGB(255, 0, 0), 10)
end
RunService.RenderStepped:Connect(function()
if _G.Disabled then
for _, player in ipairs(Players:GetPlayers()) do
if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
pcall(function()
applyPropertiesToPart(player.Character.HumanoidRootPart)
end)
end
end
if MobsFolder then
for _, mob in ipairs(MobsFolder:GetChildren()) do
if mob:IsA("Model") and mob:FindFirstChild("HumanoidRootPart") then
pcall(function()
applyPropertiesToPart(mob.HumanoidRootPart)
end)
end
end
end
end
end)
ADVERTISEMENTREMOVE ADS

Comments

4 comments
to add a comment
Ve

ts so ahhh

1
0
Na

you can change the power by changing the number at the top

0
0
dr

Wow! Nothing happens!!!

0
0
Na

it's invisible that's why you don't see anything

0
0
ADVERTISEMENTREMOVE ADS