-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.lua
More file actions
44 lines (37 loc) · 1.13 KB
/
Copy pathmain.lua
File metadata and controls
44 lines (37 loc) · 1.13 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
-- Evade Loader (Clean English Version)
local supported = {
[9872472334] = true, -- Evade
}
local ms = game:GetService("MarketplaceService")
local gameId = game.GameId
local placeId = game.PlaceId
local ok, info = pcall(function()
return ms:GetProductInfo(placeId)
end)
local gameName = ok and info.Name or "Unknown Game"
if supported[gameId] then
WindUI:Notify({
Title = "Game Detected",
Desc = "Supported game: " .. gameName .. "\nLoading script...",
Icon = "check"
})
task.spawn(function()
local success, err = pcall(function()
-- Load the Evade script
loadstring(game:HttpGet("https://raw.githubusercontent.com/Soyodk/ScriptHoeHub/refs/heads/main/Script/evade2.lua"))()
end)
if not success then
WindUI:Notify({
Title = "Load Error",
Desc = err or "Unknown error occurred",
Icon = "x"
})
end
end)
else
WindUI:Notify({
Title = "Game Not Supported",
Desc = "This game is not compatible.\nGameId: " .. gameId,
Icon = "x"
})
end