How could i increase my players head size every second heres my script so far :
game.Players.PlayerAdded:Connect(function(player) local Humanoid = player.Character.Humanoid while wait(1) do Humanoid.HeadScale.Value = Humanoid.HeadScale.Value + 1
end end)
Bruh. Just change the size. And make run infinitely
while wait(1) do for i, v in game.Players:GetChildren() do local char = v.Character if char then char.Head.Size += Vector3.new(1,1,1) end end end