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:
1 | plant = PlantLocationHere |
2 | growtime = math.random( 480 , 600 ) |
4 | plant.Touched:connect( function (touched) |
5 | if touched.Parent.Name = "Plant seeder" or touched.Parent.Name = "Plant Seeder" then |
7 | plant.Size = Vector 3. new(SizeNumber,SizeNumber,SizeNumber) |
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?