local WindUI = loadstring(game:HttpGet("https://raw.githubusercontent.com/Footagesus/WindUI/main/dist/main.lua"))() local function gradient(text, startColor, endColor) local result = "" for i = 1, #text do local t = (i - 1) / (#text - 1) local r = math.floor((startColor.R + (endColor.R - startColor.R) * t) * 255) local g = math.floor((startColor.G + (endColor.G - startColor.G) * t) * 255) local b = math.floor((startColor.B + (endColor.B - startColor.B) * t) * 255) result = result .. string.format('%s', r, g, b, text:sub(i, i)) end return result end local ReplicatedStorage = game:GetService("ReplicatedStorage") local Window = WindUI:CreateWindow({ Title = gradient("ShanHub - Cook Food", Color3.fromHex("#001e80"), Color3.fromHex("#16f2d9")), IconThemed = true, Icon = "star", Author = gradient("dsc.gg/A9744cgsZd", Color3.fromHex("#1bf2b2"), Color3.fromHex("#1bcbf2")), Folder = "ShanHub/Settings/Config", Size = UDim2.fromOffset(550, 320), Transparent = true, Theme = "Dark", }) local Tab = Window:Tab({ Title = "info", Icon = "info", Locked = false }) function Notify(msg, content) WindUI:Notify({ Title = msg, Content = content, Duration = 5 }) end Tab:Paragraph({ Title = "Created with ❤️", Desc = "Join Our Discord Community ", Image = getcustomasset("1735063637725.png"), ImageSize = 20, Color = "Grey", Buttons = { { Title = "Copy Link", Icon = "copy", Variant = "Tertiary", Callback = function() setclipboard("https://discord.gg/A9744cgsZd") Notify("Copied!", "Discord link copied to clipboard") end } } }) local Tab = Window:Tab({ Title = "Main", Icon = "house", Locked = false }) local Toggle = Tab:Toggle({ Title = "Auto Sell", Desc = "", Icon = "", Type = "Toggle", Default = false, Callback = function(state) while state do local Event = ReplicatedStorage.Source.Utility.Network.Remotes["Item: Sell All"] -- RemoteEvent Event:FireServer() task.wait(01) end end }) local Toggle = Tab:Toggle({ Title = "Open Gear Shop", Desc = "", Icon = "", Type = "Toggle", Default = false, Callback = function(state) local gui = game:GetService("Players").LocalPlayer.PlayerGui.Gears gui.Enabled = not gui.Enabled end }) local Toggle = Tab:Toggle({ Title = "Open Chefs", Desc = "", Icon = "", Type = "Toggle", Default = false, Callback = function(state) local gui = game:GetService("Players").LocalPlayer.PlayerGui.Chefs gui.Enabled = not gui.Enabled end })