Jump to content
  • 0

help make online password


idontknowwhoami

Question

can someone help me solve my codes
when i run it always failed
whatever i am typing pass 
my pass i put at pastebin

X = load(gg.makeRequest("https://pastebin.com/raw/ctM2NU93").content)
local Menu = gg.prompt({"Select Password :"},nil,{"text"})
if not Menu then return end
for l , I in pairs {pcall(X)} do
if Menu[1] == I then A = true end
end
if A ~= true then gg.alert("failed") return else gg.alert("success") end

please help 

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

32 minutes ago, idontknowwhoami said:

https://pastebin.com/ctM2NU93 just typing vsixty36 and save Syntax Highlighting .txt

local X = gg.makeRequest("https://pastebin.com/raw/ctM2NU93").content
local Menu = gg.prompt({ "Select Password :" }, nil, { "text" })

if not Menu then return end

for i, v in ipairs({ X }) do
	A = (Menu[1] == v and true or false)
end

if not A then
	gg.alert("failed")
	return
else
	gg.alert("success")
end

 

Link to comment
Share on other sites

16 minutes ago, RizPrasety said:

local X = gg.makeRequest("https://pastebin.com/raw/ctM2NU93").content
local Menu = gg.prompt({ "Select Password :" }, nil, { "text" })

if not Menu then return end

for i, v in ipairs({ X }) do
	A = (Menu[1] == v and true or false)
end

if not A then
	gg.alert("failed")
	return
else
	gg.alert("success")
end

 

thanks its work perfect 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.