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

How can I make a brick get 2x larger after 5 seconds?

Asked by 9 years ago

I need this info for my upcoming game that I havent started yet.

2 answers

Log in to vote
0
Answered by
iLegitus 130
9 years ago

Here, Put inside script,INside part

wait(5)
script.Parent.Size = script.Parent.Size + Vector3.new(SIZEHERE,SIZEHERE,SIZEHERE)
0
Ok. And also do this wait(5) AWESOMEnoob3 3 — 9y
Ad
Log in to vote
1
Answered by 9 years ago
wait(5)
script.Parent.Size = Vector3.new(script.Parent.Size.X*2,script.Parent.Size.Y*2,script.Parent.Size.Z*2)

Answer this question