SL2 Bighead Script

an anonymous user · October 18, 2023
  while true do wait(0.3) -- loop

for i,v in pairs(game.Players:GetChildren()) do
    local heads = v.Character:FindFirstChild("Head")
          if heads then
     heads.Size = Vector3.new(7,7,7)
     heads.CanCollide = true
     heads.Transparency = 0.3
       end
   end
end
Output

Comments

Please sign up or log in to contribute to the discussion.