Jump to content
  • 0

How to make an online script


NIKITAOFF

Question

3 answers to this question

Recommended Posts

local file = gg.makeRequest('https://yourgithubfile.com/file.lua') -- replace with your file link

if file.content == nil or
	file.content == '' then
	os.exit()
end

local load =
	load(file.content)
if load == nil then
	os.exit()
end
	load()

Like this

Link to comment
Share on other sites

On 8/17/2018 at 9:59 PM, bukandewa said:

local file = gg.makeRequest('https://yourgithubfile.com/file.lua') -- replace with your file link

if file.content == nil or
	file.content == '' then
	os.exit()
end

local load =
	load(file.content)
if load == nil then
	os.exit()
end
	load()

 

 

On 8/19/2018 at 6:49 AM, InterEcrypt said:

Not work "ERROR"

 

On 8/17/2018 at 9:59 PM, bukandewa said:

local file = gg.makeRequest('https://yourgithubfile.com/file.lua') -- replace with your file link

if file.content == nil or
	file.content == '' then
	os.exit()
end

local load =
	load(file.content)
if load == nil then
	os.exit()
end
	load()

Like this

Thanks

Link to comment
Share on other sites

On 8/17/2018 at 1:29 PM, bukandewa said:

local file = gg.makeRequest('https://yourgithubfile.com/file.lua') -- replace with your file link

if file.content == nil or
	file.content == '' then
	os.exit()
end

local load =
	load(file.content)
if load == nil then
	os.exit()
end
	load()

Like this

Not work "ERROR"

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.