Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
- local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
- local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
- ()
- local Window = Fluent:CreateWindow({
- Title = "Fluent " .. Fluent.Version,
- SubTitle = "by dawid",
- TabWidth = 160,
- Size = UDim2.fromOffset(580, 460),
- Acrylic = true,
- Theme = "Dark",
- MinimizeKey = Enum.KeyCode.LeftControl
- })
- local Tabs = {
- Main = Window:AddTab({ Title = "Main", Icon = "" }),
- Settings = Window:AddTab({ Title = "Settings", Icon = "settings" })
- }
- local Options = Fluent.Options
- do
- Fluent:Notify({
- Title = "Notification",
- Content = "This is a notification",
- SubContent = "SubContent",
- Duration = 5
- })
- Tabs.Main:AddParagraph({
- Title = "Paragraph",
- Content = "This is a paragraph.\nSecond line!"
- })
- local Toggle = Tabs.Main:AddToggle("MyToggle", {Title = "Toggle", Default = false })
- Toggle:OnChanged(function()
- print("Toggle changed:", Options.MyToggle.Value)
- end)
- Options.MyToggle:SetValue(false)
- SaveManager:SetLibrary(Fluent)
- InterfaceManager:SetLibrary(Fluent)
- SaveManager:IgnoreThemeSettings()
- SaveManager:SetIgnoreIndexes({})
- InterfaceManager:SetFolder("FluentScriptHub")
- SaveManager:SetFolder("FluentScriptHub/specific-game")
- InterfaceManager:BuildInterfaceSection(Tabs.Settings)
- SaveManager:BuildConfigSection(Tabs.Settings)
- Window:SelectTab(1)
- Fluent:Notify({
- Title = "Fluent",
- Content = "The script has been loaded.",
- Duration = 8
- })
- SaveManager:LoadAutoloadConfig()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement