disappearing platform not working like its not disappearing
local function appear()
platform.CanCollide = true
platform.Transparency = 0
end
while true do
wait(1)
disappear()
wait(1)
appear()
end
disappearing platform not working like its not disappearing
local function appear()
platform.CanCollide = true
platform.Transparency = 0
end
while true do
wait(1)
disappear()
wait(1)
appear()
end
i used the official roblox script
You have not defined your disappear function
local function disappear()
platform.CanCollide = true
platform.Transparency = 1
thanks i forget about that part
No, Problem. Happy I could help!