Advertisement
Guest User

HBE

a guest
Jun 30th, 2019
5,262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. --Made by mis#0123 / rewaved @ v3rmillion.net
  2.  
  3. local toggle = false
  4. local UIS = game:GetService("UserInputService")
  5. local Size = Vector3.new(2,2,2) --Change 2,2,2 to desired head size. Numbers represent (x,y,z).
  6. local Key = "C" --Change C to the desired key.
  7. local function Notify(...)
  8. game.StarterGui:SetCore('SendNotification',...)
  9. end
  10.  
  11.  
  12. UIS.InputBegan:Connect(function(k)
  13. if k.KeyCode == Enum.KeyCode[Key] then
  14. toggle = not toggle
  15. for k,v in next, game:GetService('Players'):GetPlayers() do
  16. if v.Character:FindFirstChild('Head') then
  17. local Head = v.Character:FindFirstChild('Head')
  18. Head.Size = Vector3.new(2,1,1)
  19. Head.Size = Size
  20. game.Players.LocalPlayer.Character.Head.Size = Vector3.new(2,1,1)
  21. if toggle then
  22. Head.Size = Vector3.new(2,1,1)
  23. end
  24. end
  25. end
  26. end
  27. end)
  28.  
  29. Notify({Title="Hitbox Expander Loaded";Text="Welcome "..game.Players.LocalPlayer.Name})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement