Advertisement
Freshbloodb

Untitled

Nov 26th, 2024
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local RunService = game:GetService("RunService")
  3. local StarterGui = game:GetService("StarterGui")
  4.  
  5. local LocalPlayer = Players.LocalPlayer
  6.  
  7. local function ExtendHitboxes()
  8. local Character = LocalPlayer.Character
  9. if not Character then return end
  10.  
  11. for _, player in pairs(Players:GetPlayers()) do
  12. if player == LocalPlayer then continue end
  13. local playerCharacter = player.Character
  14. if not playerCharacter then continue end
  15.  
  16. local HumanoidRootPart = playerCharacter:FindFirstChild("HumanoidRootPart")
  17. if HumanoidRootPart then
  18. HumanoidRootPart.Size = Vector3.new(7, 7, 7)
  19. HumanoidRootPart.Transparency = 1
  20. HumanoidRootPart.BrickColor = BrickColor.new("Bright blue") -- Puedes personalizarlo
  21. HumanoidRootPart.Shape = Enum.PartType.Ball
  22. HumanoidRootPart.CanCollide = false
  23. end
  24. end
  25. end
  26.  
  27. RunService.Heartbeat:Connect(ExtendHitboxes)
  28.  
  29. StarterGui:SetCore("SendNotification", {
  30. Title = "Script cargado";
  31. Text = "El script está ejecutándose.";
  32. Icon = "rbxassetid://10248739816";
  33. })
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement