- Создай звук, в его параметрах поставь Playing и Looped на true.
- В Starter GUI добавь ScreenGui, в него добавь Локальный скрипт, в скрипте поставь параметр Enabled на false, а в скрипт вставь
wait(0.1)
local music = ПУТЬ ДО ЗВУКА
music:Stop()
- В парт вставь скрипт
script.Parent.Touched:Connect(function(hit)
local humanoid = hit.Parent:FindFirstChild("Humanoid")
if humanoid ~= nil then
local players = game:GetService("Players")
local player = players:GetPlayerFromCharacter(humanoid.Parent)
player.PlayerGui.ScreenGui.LocalScript.Enabled = true
)
end)