-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoader.lua
More file actions
53 lines (52 loc) · 1.81 KB
/
Copy pathLoader.lua
File metadata and controls
53 lines (52 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
-- ts file was generated at discord.gg/25ms
-- i play only sab, dont use this loader
-- all moonsec source obfuscate from https://github.com/Severitysvc/Starfall/tree/main/profiles/bundle
local vu1 = "Starfall"
local vu2 = "https://raw.githubusercontent.com/" .. "Severitysvc" .. "/" .. vu1 .. "/main/" -- local vu2 = "https://raw.githubusercontent.com/" .. "Severitysvc" .. "/" .. vu1 .. "/main/"
local function v11(p3, p4)
if getgenv and getgenv().StarfallOwner then
local v5 = vu1 .. "/" .. p3 .. (p4 or ".lua")
if isfile(v5) then
return loadfile(v5)()
end
error("StarfallOwner detected but file not found: " .. v5)
end
local vu6 = vu2 .. p3 .. (p4 or ".lua")
local v7, v8 = pcall(function()
return game:HttpGet(vu6)
end)
if v7 then
local v9, v10 = loadstring(v8)
if v9 then
return v9()
end
error(("Failed to load script at %s: %s"):format(vu6, v10))
else
error(("Failed to fetch script at %s: %s"):format(vu6, v8))
end
end
local v12 = v11("util/Structure")
assert(v12, "No structure found")
local v13 = v11("library/keysys/Source")
assert(v13, "No keysystem found")
local v14 = v12:GetSupportedTable()
shared.Util = v12
shared.LoadRawScript = v11
if getgenv and getgenv().CustomProfile then
v13("profiles/customs/" .. getgenv().CustomProfile .. "", "", "PJ7c7tU4Jd")
else
local v15, v16, v17 = pairs(v14)
while true do
local v18
v17, v18 = v15(v16, v17)
if v17 == nil then
break
end
if v18.CreatorId and (v18.CreatorId == game.CreatorId and v18.Source) then
print("Loaded: " .. v17 .. " Succesfully :3")
shared.StarfallKey = true
v13(v18.Source, v18.Job, "PJ7c7tU4Jd")
return
end
end
end