Advertisement
HR16G5978

PASSWORD

Jan 7th, 2021
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. local Password = "VR"
  2. local AskPassword = gg.prompt({
  3. "🔒 Input password: "
  4. },{""},{"number"})
  5. if not AskPassword then
  6. os.exit()
  7. end
  8. if AskPassword[1] == "" then
  9. gg.alert("Password Can Not Be Empty ❕")
  10. return
  11. end
  12. if AskPassword[1] == Password then
  13. gg.toast("✔️ Password correct❕")
  14. else
  15. gg.alert("❌ Wrong Password ❕")
  16. return
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement