# 瑞芳中學白板
## 製作會消失的地板
```lua
local platform = script.Parent
local function disappear()
platform.CanCollide = false
platform.Transparency = 1
end
local function appear()
platform.CanCollide = true
platform.Transparency = 0
end
while true do
wait(3)
disappear()
wait(3)
appear()
end
```
## 播放音樂程式碼
```lua
local SoundService = game:GetService("SoundService")
local backgroundMusic = SoundService.BackgroundMusic
backgroundMusic:Play()
```
## 終點聖物
