-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMelatonin Loader.lua
More file actions
60 lines (57 loc) · 2 KB
/
Melatonin Loader.lua
File metadata and controls
60 lines (57 loc) · 2 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
-- Optional: Configure before loading (this is completely optional)
getgenv().MelatoninUIConfig = {
LibraryName = "Melatonin",
Theme = {
PrimaryBG = Color3.fromRGB(31, 33, 41),
SecondaryBG = Color3.fromRGB(25, 25, 30),
Accent = Color3.fromRGB(158, 150, 222),
Text = Color3.fromRGB(190, 190, 195),
TextHover = Color3.fromRGB(205, 206, 212),
Stroke = Color3.fromRGB(40, 40, 45),
GameName = Color3.fromRGB(133, 127, 187)
},
Logos = {
MelaLogo = "rbxassetid://137737556913730",
LoadingLogo = "rbxassetid://137737556913730"
}
}
-- Load the module
local Melatonin, MelatoninUI, MelatoninGameFrame = loadstring(game:HttpGet("https://raw.githubusercontent.com/Urbanstormm/Project-Stark/main/Melatonin.lua"))()
-- Get LocalPlayer
local LocalPlayer = game:GetService("Players").LocalPlayer
-- Run the loader
Melatonin.LoadingEffect(3, LocalPlayer, {
{
GameName = "CS:2 External",
Image = "rbxassetid://108227353249963",
SubTime = "30 days",
Status = "Undetected",
Url = "",
Callback = function(frame, ui)
print("Selected:", frame.Name)
Melatonin.CloseGuiEffect(ui) -- 'ui' is the correct parameter here
end
},
{
GameName = "Roblox External",
Image = "rbxassetid://127821495684337",
SubTime = "30 days",
Status = "Updated 11/23/2025",
Url = "https://api.luarmor.net/files/v3/loaders/a7bf1d042a5757c984086fc4efa90c79.lua"
},
{
GameName = "CS:S External",
Image = "rbxassetid://96680069022364",
SubTime = "30 days",
Status = "Updated 11/23/2025",
Url = "https://api.luarmor.net/files/v3/loaders/a7bf1d042a5757c984086fc4efa90c79.lua",
Properties = {
ImageLabel = {
ImageColor3 = Color3.fromRGB(255, 255, 255)
},
UpdateStatus = {
TextSize = 12
}
}
}
}, MelatoninUI, MelatoninGameFrame)