-- Server Script
local RunService = game:GetService("RunService")
game:BindToClose(function ()
if RunService:IsStudio() then
wait()
else
Event:FireAllClients()
wait(30)
end
end)
-- Local Script [ INSIDE GUI ]
Event.OnClientEvent:Connect(function ()
Notification:TweenPosition(UDim2.new(CENTRE YOUR UI), "Out", "Linear", 3)
end)
|