--[[ Hey Bitch, if you are reading this it means you need my script, you're welcome hoe. ]] local ThemeSelector = Tab:Dropdown({ -- Replace tab with your very own tab young blood Title = "Theme Changer", Values = { "Dark", "Light", "Rose", "Plant", "Red", "Indigo", "Sky", "Violet", "Amber", "Emerald", "Midnight", "Crimson", "Monokai Pro", "Cotton Candy", "Rainbow" }, Value = { "Category A" }, Multi = false, AllowNone = true, Callback = function(option) local function GetSelected() if type(option) == "string" or type(option) == "String" then return option else local NewOption = tostring(option) return NewOption end end local Selected = GetSelected() WindUI:SetTheme(Selected) end })