I need the brick to grow when like a plant seeder hit's it and take some time to turn from transparent into a plant and grow up with in like 8-10 min (:
Like aqua said, this is not a request site. Please try to look at videos and the ROBLOX Wiki and attempt to do it.
I am guessing you are trying to say when a tool called "Plant seeder" hits the plant, you want to wait a random amount of minutes from 8-10?
If so, try my answer, although I can't gurantee it will work:
plant = PlantLocationHere growtime = math.random(480,600) -- EDITED: Hope it works! plant.Touched:connect(function(touched) if touched.Parent.Name = "Plant seeder" or touched.Parent.Name = "Plant Seeder" then wait(growtime) plant.Size = Vector3.new(SizeNumber,SizeNumber,SizeNumber) end end)
Note: Replace PlantLocationHere with the actual location of it. Replace the 3 SizeNumbers with the size of how big you want your plant to grow. DO NOT change wait(growtime).
If it works, please accept my answer so we will both get reputation.
If it doesn't work, I will try and edit it to get a correct answer.
Closed as Not Constructive by EzraNehemiah_TF2, dyler3, samfun123, and Shawnyg
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?