how do i make invisible brick but if you touch it will become visible for certain time?
Well let's start off by making the brick. In order to do this you're going to want to go into studio, and navigate to the "Parts" window. This will be under the "Model" Tab. Once you have created your part, you're going to want to make sure its invisible.
To do this is quite simple. Simply open your properties window (which can be accessed through View-Properties) and then select your part that you want to turn invisible. Now that you've selected your Part you'll see a bunch of stuff pop up inside the Properties window. All's you need to focus on for the time being is the stuff inside of the "Appearance" tab.
Looking closer under this tab, you'll see a item called "Transparency" with a value to the right of "0". How transparency works is quite simple, in that a value of 0 is the least transparent value possible (100% visible) while a value of 1 is the most transparent value possible (0% visible). For your situation your going to want to set this value to 1.
Great! Now that you've just created an invisible part, you're going to want to make the script that can make the brick visible again. This gets a little bit more complicated and requires some RBLX LUA coding knowledge. I will link some more information on this below, but for now I will help you out with the script.
You're going to want to insert a new script inside of the invisible part, which can be done by going to the top navigation bar-model-then on the far right there will be a blue script icon. Click on this to create your script (make sure it's inside of your part!).
Now the script editor will open, with the text "Hello World". Delete this and enter this instead:
script.Parent.Touched:connect(function() --This function detects when the part is touched script.Parent.Transparency = 0 --This sets the transparency to being 100% visible end)
There you have it! To read more into how all this works check out these helpful wiki articles:
https://developer.roblox.com/en-us/learn-roblox/studio-basics
https://developer.roblox.com/en-us/api-reference/event/BasePart/Touched
https://arebeexlua.fandom.com/wiki/Touched_Event
https://developer.roblox.com/en-us/articles/Building-a-City-with-Parts
Use: