View difference between Paste ID: BSsbDkWK and z6JR5jRE
SHOW: | | - or go back to the newest paste.
1
local replicatedStorage = game.ReplicatedStorage
2
local remotes = replicatedStorage.Remotes
3
4
5
remotes.Area.OnClientEvent:Connect(function(area)
6
    area:Destroy()
7
end)
8