Hello, so I’m trying to make a donation GUI that verifies your purchase, and I was trying to make the visible option “true” after the player clicked the Donate button, and I kept running into this error:
I’m new to making click-to-make-visible GUIs, so I need help with this.
My current code:
local Donate = script.Parent.DonationFrame
Donate.MouseButton1Click:Connect(function()
print"Yay, it worked!"
script.Parent.DonationFrame.Visible = true
end)