Advertisement
kingmohamed

Hitbox

Jan 19th, 2025 (edited)
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. local Close = Instance.new("TextButton")
  2. local Open2 = Instance.new("ScreenGui")
  3. local Open = Instance.new("TextButton")
  4. local FightingGui = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local Cre = Instance.new("TextLabel")
  7. local HitBox = Instance.new("TextBox")
  8. local Red = Instance.new("TextBox")
  9. local Green = Instance.new("TextBox")
  10. local Blue = Instance.new("TextBox")
  11. local TextLabel = Instance.new("TextLabel")
  12.  
  13. local UICorner = Instance.new("UICorner")
  14. local UICorner_2 = Instance.new("UICorner")
  15. local UICorner_3 = Instance.new("UICorner")
  16. local UICorner_4 = Instance.new("UICorner")
  17.  
  18. -- Properties:
  19. FightingGui.Name = "FightingGui"
  20. FightingGui.Parent = game.CoreGui
  21. FightingGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  22.  
  23. Open2.Name = "Tools"
  24. Open2.Parent = game.CoreGui
  25. Open2.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26.  
  27. Open.Name = "Open"
  28. Open.Parent = Open2
  29. Open.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  30. Open.Position = UDim2.new(0, 0, 0.451871663, 0)
  31. Open.Size = UDim2.new(0, 50, 0, 50)
  32. Open.Font = Enum.Font.FredokaOne
  33. Open.Text = "Open"
  34. Open.TextColor3 = Color3.fromRGB(250, 0, 0)
  35. Open.TextScaled = true
  36. Open.TextSize = 14.000
  37. Open.TextWrapped = true
  38. Open.MouseButton1Down:Connect(function()
  39. FightingGui.Enabled = true
  40. end)
  41.  
  42. Close.Name = "Close"
  43. Close.Parent = main
  44. Close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  45. Close.Position = UDim2.new(1, 0, -0.001, 0)
  46. Close.Size = UDim2.new(0, 30, 0, 30)
  47. Close.Font = Enum.Font.FredokaOne
  48. Close.Text = "X"
  49. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  50. Close.TextScaled = true
  51. Close.TextSize = 14.000
  52. Close.TextWrapped = true
  53. Close.MouseButton1Down:Connect(function()
  54. FightingGui.Enabled = false
  55. end)
  56.  
  57. UICorner_4.Parent = Close
  58.  
  59. main.Parent = FightingGui
  60. main.Active = true
  61. main.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
  62. main.Position = UDim2.new(0.259, 0, 0.237, 0)
  63. main.Size = UDim2.new(0, 127, 0, 111)
  64. main.Draggable = true
  65.  
  66. UICorner.Parent = main
  67.  
  68. Cre.Name = "Cre"
  69. Cre.Parent = main
  70. Cre.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  71. Cre.Position = UDim2.new(0, 0, -0.019, 0)
  72. Cre.Size = UDim2.new(0, 127, 0, 16)
  73. Cre.Font = Enum.Font.FredokaOne
  74. Cre.Text = "Script made by WarriorRoberr"
  75. Cre.TextColor3 = Color3.fromRGB(0, 0, 0)
  76. Cre.TextScaled = true
  77. Cre.TextSize = 14.000
  78. Cre.TextWrapped = true
  79.  
  80. UICorner_2.Parent = Cre
  81. UICorner_3.Parent = HitBox
  82.  
  83. HitBox.Name = "HitBox"
  84. HitBox.Parent = main
  85. HitBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  86. HitBox.Position = UDim2.new(0.113, 0, 0.127, 0)
  87. HitBox.Size = UDim2.new(0, 103, 0, 79)
  88. HitBox.Font = Enum.Font.FredokaOne
  89. HitBox.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
  90. HitBox.PlaceholderText = "Put Number Here"
  91. HitBox.Text = ""
  92. HitBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  93. HitBox.TextScaled = true
  94. HitBox.TextSize = 14.000
  95. HitBox.TextWrapped = true
  96.  
  97. -- Core Logic
  98. local Players = game:GetService("Players")
  99. local LocalPlayer = Players.LocalPlayer
  100.  
  101. local function isEnemy(player)
  102. return player.Team == nil or LocalPlayer.Team == nil or player.Team ~= LocalPlayer.Team
  103. end
  104.  
  105. game:GetService("RunService").RenderStepped:Connect(function()
  106. for _, v in ipairs(Players:GetPlayers()) do
  107. if v.Name == LocalPlayer.Name or not isEnemy(v) then
  108. continue
  109. end
  110. if v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
  111. local hitboxSize = tonumber(HitBox.Text) or 1
  112. v.Character.HumanoidRootPart.Size = Vector3.new(hitboxSize, hitboxSize, hitboxSize)
  113. v.Character.HumanoidRootPart.Transparency = 0.9
  114. v.Character.HumanoidRootPart.Color = Color3.new(
  115. tonumber(Red.Text) or 1,
  116. tonumber(Green.Text) or 1,
  117. tonumber(Blue.Text) or 1
  118. )
  119. v.Character.HumanoidRootPart.Material = Enum.Material.Neon
  120. v.Character.HumanoidRootPart.CanCollide = false
  121. end
  122. end
  123. end)
  124.  
  125.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement