Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

player head increase in size ?

Asked by
Dxv_ne 7
1 year ago
Edited 1 year ago

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)

1 answer

Log in to vote
0
Answered by 1 year ago

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
Ad

Answer this question