So I have been making games for a while and I was making a find the button game and after you find the button there will be a popup that says you completed it but the script seems to not work is this a new studio update? Script: ~~~~~~~~~~~~~~~~~ local frame = script.Parent.Parent.Parent.StarterGui.levels.level1
local part = script.Parent
part.ClickDetector.MouseClick:Connect(function() frame.Visible = true end) ~~~~~~~~~~~~~~~~~
If you're having problems trying to get the GUI to show, it should be a LocalScript inside of StarterGui and the variables of the LocalScript should be defined as follows:
local frame = script.Parent.levels.Level1 local part = workspace.Part -- reference the part here wherever it is in your workspace