Mika UI is our script UI library!
You need to pick a theme:
Set the attribute “themeOfMika” on your player to one of these, then run mika:
MikaUITheme = "Blackout"
game.Players.LocalPlayer:SetAttribute("themeOfMika", MikaUITheme)
local MikaUI = loadstring(game:HttpGet("https://x.klash.dev/libraries/MikaUI.lua"))()
First, you need to make a tab. Args:
local TabName = MikaUI:AddTab("Tab Name")
Args:
TabName.InsertButton("Button Name", function()
-- Button callback
end)
Like a button, but runs a script from a URL. Args:
TabName.InsertLoadstringButton("Script Name", "https://x.klash.dev/")
Args:
TabName.InsertLabel("Mika UI - Label!")
Args:
TabName.InsertTextInput("Text Input Name", "Placeholder", "Default", false, function(value)
-- Callback with "value" as the new value of the text input
end)
Args:
TabName.InsertCheckbox("Toggle Name", true, function(value)
-- Callback with "value" as the new value of the checkbox
end)
Args:
CoolTab.InsertSlider("Slider", "studs/s", 0, 100, 1, 16, Color3.fromRGB(255, 255, 0), function(value)
-- Callback with value as the new value
end)
MikaUI:Init("Script Title")