Wussup guys I want that the InventoryButton appears again after the event is finished, first the button is Visible and when the Event starts it dissapears and that’s what I want but when the event finishes again it stays like that(I hope anyone understands this goofy text)here is the script:(I need a break function)
local button = script.Parent
local remote = game.ReplicatedStorage:WaitForChild(“DisplayRole”)
button.Visible = true
remote.OnClientEvent:Connect(function()
button.Visible = false
end)