Hello! My script does not show on the output, also it doesn’t even work! If it did show an error I would probably fix it by now but it doesn’t show on output.
Script:
local criteriamissing = script.Parent.Parent.criteria_not_filled
local host = script.Parent.Parent.host
local co_host = script.Parent.Parent.co_host
script.Parent.MouseButton1Click:Connect(function()
if host.Text == "Host" then
criteriamissing.Visible = true
print("Error: Missing Criteria.")
end
if co_host.Text == "Co Host" then
criteriamissing.Visible = true
print("Error: Missing Criteria")
end
end)