Answered by
6 years ago Edited 6 years ago
From what I understand, do you want to make blocks spawn and wait a seconds then remove
If so, I have the solution and how you use it:
Wiki page:
Roblox Wiki Page - Debris
You can use Debris.
Example:
1 | game:GetService( "Debris" ):AddItem(script.Parent, 3 ) |
Or you can use delay:
2 | script.Parent:Destroy() |
Or wait:
The debris in my opinion is the most efficient.
For you script you can use this:
1 | local Part = script.Parent |
4 | game:GetService( "Debris" ):AddItem(Part,DelayTime) |
OR
1 | local Part = script.Parent |
4 | delay(DelayTime, function () |
OR
1 | local Part = script.Parent |
The best is the Debris.
Any errors? tell-me on comments.
Hope it helped!