Mango Lib
  • Mango UI Library
    • Example
  • Library Items
    • Item functions
  • UI Library Code
Powered by GitBook
On this page
  1. Library Items

Item functions

-- Dropdown Dropdown Refreshing
local Enemies = {
"Bandit",
"Marine"
}
local DropRef = TabFarm:Dropdown("Select Enemy", Enemies, function(Value)
    print(Value)
end)
local Enemies2 = {
"Bandit2",
"Marine2"
}
DropRef:Refresh(Enemies2)
-- Label Refreshing
local LabelRef = TabFarm:Label("This is a Label")

LabelRef:Refresh("Lol New Title")
PreviousLibrary ItemsNextUI Library Code

Last updated 2 years ago