So I made a tiny script so when I click the block, it goes invisible for 1 minute, here it is:
local DropEmployees = script.Parent
local ClickDetector = Instance.new("ClickDetector")
ClickDetector.Parent = DropEmployees
ClickDetector.MaxActivationDistance = 5
ClickDetector.MouseClick:Connect(function()
DropEmployees.Transparancy = 1
wait(60)
DropEmployees.Transparency = 0
end)
And it is not working, here is the error: