オービーなどで見られる、タッチして少し経過してから徐々に消えていくブロック。
このモデルをワークスペースに入れる
local debounce = false
local x1 = 0
local x2 = 0
function onTouch ()
if not debounce then
while true do
debounce = true
x1 = x1 + 0.05
script.Parent.Transparency = x1
wait(.1)
if x1 >= 1 then
script.Parent.CanCollide = false
break
end
end
wait(5)
script.Parent.CanCollide = true
script.Parent.Transparency = x2
x1 = x2
wait(0.5)
debounce = false
end
end
script.Parent.Touched:Connect(onTouch)