Jump to content
  • 0

How to make single and double prompt


Hackerboss4444

Question

Correct format for single prompt

local fi = gg.prompt({"health hack"},
{[1] ="0"},
{[1] ="number"})
gg.searchNumber(fi[1],gg.TYPE_FLOAT)
gg.getResults(fi[1])
gg.editAll("99999999",gg.TYPE_FLOAT)

 

 

Correct format for double prompt

local fi = gg.prompt({"health hack","speed hack"},
{[1] ="0"},
{[2]="0"},
{["1,2"] ="number"})
gg.searchNumber(fi[1],gg.TYPE_FLOAT)
gg.getResults(fi[1])
gg.editAll("99999999",gg.TYPE_FLOAT)
gg.isVisible(false)
gg.setVisible(true)
gg.searchNumber(fi[2],gg.TYPE_FLOAT)
gg.getResults(fi[2])
gg.editAll("99",gg.TYPE_FLOAT)

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

16 hours ago, Hackerboss4444 said:

local fi = gg.prompt({"health hack","speed hack"},

{[1] ="0"},
{[2]="0"},
{["1,2"] ="number"})

it must be like this

local fi = gg.prompt({"health hack","speed hack"},
{[1] ="0",[2]="0"},
{["1,2"] ="number"})

 

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.