Need help making parts bigger wait making it wait a certain amount of time

I am trying to make a part size change with 1 second waits

i used game.Workspace.part.size = “4,1,3”
wait (1)

I am very new at scripting and dont know anything, if you know how to do this please tell me

1 Like

maybe:
game.Workspace.part.size = Vector3.new(“4,1,3”)
wait (1)

EDIT:
Try this I have to go now ima pass by tomorrow if you havent found it still!

I think that you used it in reverse

wait(1)
workspace.Part.Size = Vector3.new("4, 1, 3")

I don’t really understand what you are saying.
Or do you mean

workspace.Part.Size = Vector3.new("4, 1, 3")
wait(1)
2 Likes