Advertisement
PassowrdUsernamePriv

Hitbox Expander

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