Is there any default popup GUI window to choose Yes/No/Cancel?

Is there any default popup GUI window to choose Yes/No/Cancel like this?

Or do I have to develop this manually?

1 Like

There is none, you have to do it manually.

1 Like

You would have to be using a Localscript, a few TextButtons, wait for them to be clicked then do this.

function Click()
	-- Do stuff
end
 
script.Parent.MouseButton1Click:Connect(Click)
1 Like