Advertisement
1zxyuuki

Hutbox

Dec 15th, 2024
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. _G.HeadSize = 15
  5. _G.Disabled = true
  6. game:GetService('RunService').RenderStepped:connect(function()
  7. if _G.Disabled then
  8. for i,v in next, game:GetService('Players'):GetPlayers() do
  9. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  10. pcall(function()
  11. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  12. v.Character.HumanoidRootPart.Transparency = 1
  13. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("White")
  14. v.Character.HumanoidRootPart.Material = "Neon"
  15. v.Character.HumanoidRootPart.CanCollide = false
  16. end)
  17. end
  18. end
  19. end
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement