The best way to do this would be to place the surfacegui into StarterGui. That way, you can track which player clicked it. An example:
LocalScript inside surfacegui:
1 | script.Parent.Adornee = workspace.GuiPartExample |
Then, to check if the player has already clicked it, you can insert a value into the player! Example inside a localscript:
1 | local plr = game.Players.LocalPlayer |
2 | script.Parent.Button.MouseButton 1 Down:connect( function () |
3 | if not plr:FindFirstChild( 'ClickedButton' ) then |
5 | local value = Instance.new( 'BoolValue' ,plr) |
6 | value.Name = 'ClickedButton' |