Can someone make one. With instructions. :]
Also like the script from roblox in there wiki pl0x
[lua]brick = game.Workspace.Brick --tagging the brick
function onTouch(part) --the function
brick.Transparency = 1 --what the function is to do with the brick
wait(1)
brick.Transparency = 0
end
brick.Touched:connect(onTouch) --listening event
[/lua]
Also like the script from roblox in there wiki pl0x
[lua]brick = game.Workspace.Brick --tagging the brick
function onTouch(part) --the function
brick.Transparency = 1 --what the function is to do with the brick
wait(1)
brick.Transparency = 0
end
brick.Touched:connect(onTouch) --listening event
[/lua]