Greetings,
I and my friend made a wheat farm, and we wanted to make a script that makes it select a random number of wheat and make it disappear (like a 30% shows and the rest is gone). How would I start doing it? Maybe using math? Or other parameters? Any answer is helpful.
I tested it out and it works used ClickDetector to fire my script.
1 | script.Parent.ClickDetector.MouseClick:Connect( function () |
2 | local child = game.workspace.Folder:GetChildren() |
3 | local x = 30 / 100 *#child |
4 | local y = math.ceil(x) |
5 | print (y) |
6 | for i = 1 ,y do |
7 | child [ i ] :Destroy() |
8 | end |
9 | end ) |
So I rounded down the value of x
which is 30% of the entire wheat.
I parented the wheat to a Folder which then I used :GetChildren()
to retrieve all the wheat. I then used the operator '#' to get the count of the amount of wheat. So 30/100*#child. Which then I rounded it up to prevent decimals.
A bit of math.random magic would do the trick
1 | local ModelThing = workspace.Model:GetChildren |
2 | for i = 0 ,math.random( 1 ,#ModelThing), 1 do -- loop for a random amount of times depending on how many children are in the model |
3 | ModelThing [ i ] .Transparency = 1 -- index the table from getchildren and change the transparency to 1 |
4 | end |
I'm not 100% sure this will work so let me know if you have issues with it!