Is there any default popup GUI window to choose Yes/No/Cancel like this?
Or do I have to develop this manually?
Is there any default popup GUI window to choose Yes/No/Cancel like this?
Or do I have to develop this manually?
There is none, you have to do it manually.
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)