Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- local RunService = game:GetService("RunService")
- local StarterGui = game:GetService("StarterGui")
- local LocalPlayer = Players.LocalPlayer
- local function ExtendHitboxes()
- local Character = LocalPlayer.Character
- if not Character then return end
- for _, player in pairs(Players:GetPlayers()) do
- if player == LocalPlayer then continue end
- local playerCharacter = player.Character
- if not playerCharacter then continue end
- local HumanoidRootPart = playerCharacter:FindFirstChild("HumanoidRootPart")
- if HumanoidRootPart then
- HumanoidRootPart.Size = Vector3.new(7, 7, 7)
- HumanoidRootPart.Transparency = 1
- HumanoidRootPart.BrickColor = BrickColor.new("Bright blue") -- Puedes personalizarlo
- HumanoidRootPart.Shape = Enum.PartType.Ball
- HumanoidRootPart.CanCollide = false
- end
- end
- end
- RunService.Heartbeat:Connect(ExtendHitboxes)
- StarterGui:SetCore("SendNotification", {
- Title = "Script cargado";
- Text = "El script está ejecutándose.";
- Icon = "rbxassetid://10248739816";
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement