Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Password = "VR"
- local AskPassword = gg.prompt({
- "🔒 Input password: "
- },{""},{"number"})
- if not AskPassword then
- os.exit()
- end
- if AskPassword[1] == "" then
- gg.alert("Password Can Not Be Empty ❕")
- return
- end
- if AskPassword[1] == Password then
- gg.toast("✔️ Password correct❕")
- else
- gg.alert("❌ Wrong Password ❕")
- return
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement