Skip to content
This repository has been archived by the owner on May 6, 2023. It is now read-only.

Commit

Permalink
fix: 🐛 Fix URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
YieldingExploiter committed May 22, 2022
1 parent d32b060 commit 4da13a5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/initScript.lua
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,8 @@ if readFile and writeFile then
assets = {loadstring(content, asset .. '.lua')()}
else
assets = {
loadstring(
game:HttpGetAsync('https://raw.githubusercontent.com/' .. user .. '/HydroxideOne/' .. branch .. '/' .. asset ..
'.lua'), asset .. '.lua')();
loadstring(game:HttpGetAsync('https://raw.githubusercontent.com/' .. user .. '/HydroxideOne/' .. branch ..
'/src/' .. asset .. '.lua'), asset .. '.lua')();
}
end
else
Expand All @@ -254,8 +253,9 @@ if readFile and writeFile then
local content

if not ran then
content = game:HttpGetAsync('https://raw.githubusercontent.com/' .. user .. '/HydroxideOne/' .. branch .. '/' ..
asset .. '.lua')
content = game:HttpGetAsync(
'https://raw.githubusercontent.com/' .. user .. '/HydroxideOne/' .. branch .. '/src/' .. asset ..
'.lua')
writeFile(file, content)
else
content = result
Expand Down

0 comments on commit 4da13a5

Please sign in to comment.