Advertisement
MawinCK

roblox Head hitbox expander v1 READ COMMENT BEFORE USE

May 4th, 2024 (edited)
209
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. -- Function to increase head size and adjust transparency
  2. local function increaseHeadSize(newSize)
  3. for _, player in ipairs(game.Players:GetPlayers()) do
  4. if player ~= game.Players.LocalPlayer then -- Exclude the local player
  5. local character = player.Character
  6. if character then
  7. local humanoid = character:FindFirstChildOfClass("Humanoid")
  8. if humanoid then
  9. humanoid.PlatformStand = false -- Make player movable
  10. local head = character:FindFirstChild("Head")
  11. if head then
  12. head.Size = Vector3.new(newSize, newSize, newSize)
  13. head.Transparency = 0.5
  14. end
  15. end
  16. end
  17. end
  18. end
  19. end
  20.  
  21. -- Create GUI
  22. local gui = Instance.new("ScreenGui")
  23. gui.IgnoreGuiInset = true -- Hide from other players
  24. gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  25.  
  26. local frame = Instance.new("Frame")
  27. frame.Size = UDim2.new(0, 200, 0, 150)
  28. frame.Position = UDim2.new(0.5, -100, 0.5, -75)
  29. frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  30. frame.BorderSizePixel = 2
  31. frame.Active = true
  32. frame.Draggable = true
  33. frame.Parent = gui
  34.  
  35. local scriptName = Instance.new("TextLabel")
  36. scriptName.Size = UDim2.new(1, 0, 0, 30)
  37. scriptName.Position = UDim2.new(0, 0, 0, 0)
  38. scriptName.Text = "Head Hitbox Expander V1 by chatgpt and Mawin_CK"
  39. scriptName.TextColor3 = Color3.fromRGB(0, 0, 0)
  40. scriptName.TextSize = 18
  41. scriptName.Parent = frame
  42.  
  43. local button = Instance.new("TextButton")
  44. button.Size = UDim2.new(0, 150, 0, 50)
  45. button.Position = UDim2.new(0.5, -75, 0.5, -25)
  46. button.BackgroundColor3 = Color3.fromRGB(100, 200, 100)
  47. button.TextColor3 = Color3.fromRGB(255, 255, 255)
  48. button.Text = "Press Me"
  49. button.Parent = frame
  50.  
  51. local numberSelection = Instance.new("TextBox")
  52. numberSelection.Size = UDim2.new(0, 150, 0, 20)
  53. numberSelection.Position = UDim2.new(0.5, -75, 1, -40)
  54. numberSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  55. numberSelection.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. numberSelection.Text = "Enter Size"
  57. numberSelection.Parent = frame
  58.  
  59. -- Connect button click event
  60. button.MouseButton1Click:Connect(function()
  61. print("Pressed") -- Print "Pressed" to output
  62. local newSize = tonumber(numberSelection.Text)
  63. if newSize then
  64. increaseHeadSize(newSize)
  65. game.Players.LocalPlayer.Character:WaitForChild("Humanoid").PlatformStand = false -- Make local player movable
  66. else
  67. print("Invalid size")
  68. end
  69. end)
  70.  
Advertisement
Comments
  • MawinCK
    201 days
    # text 0.28 KB | 0 0
    1. Here the short execute of this script
    2. loadstring(game:HttpGet("https://pastefy.app/nN4ADZ93/raw"))()
    3. WARNING IF YOU PUT TOO MUCH VALUE THAN 5 I RECOMMEND PUT VAULE "5" ON PLAYER HEAD IS WILL MAKE PLAYER FREEZE
    4. (Actually you can put as much as you want if you didn't use it for cheat)
Add Comment
Please, Sign In to add comment
Advertisement