D3CryptZ Posted October 21, 2018 Posted October 21, 2018 I am making a script for the game Forward Assault. I need to have a password in my script so nobody can steal it (i can decrypt). I dont know how to make a password prompt so can you help me or send a example code?
TopGEOYT Posted February 8, 2019 Posted February 8, 2019 local pass = '1234'local Crack = gg.prompt({'ENTER PASSWORD EXAMPLE ' ..pa..ss.. ''},{''},{'number'})if Crack == nil thenprint("script cancelled")os.exit()elseif Crack[1] == pass thenprint("welcome")else print("wrong password")os.exit()end
noblack Posted April 2, 2019 Posted April 2, 2019 On 10/22/2018 at 1:41 AM, D3CryptZ said: I am making a script for the game Forward Assault. I need to have a password in my script so nobody can steal it (i can decrypt). I dont know how to make a password prompt so can you help me or send a example code? Encrypting with your password can help you alot that to protecting script. Because if you don't have your password, you can't go in main function.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.