SlateUI
DocsComponentsGitHub
Install SlateUI Plugin
SlateUI
DocsComponentsGitHub
Install SlateUI Plugin

Components

  • installation
  • button
  • inputs
  • notification
  • progressbar
  • loading
  • proximity
  • router
Component

Installation

Get SlateUI up and running in your Roblox Studio project in less than a minute.

The Plugin Method (Recommended)

The easiest way to install and update SlateUI is via the official Roblox Plugin. It automatically fetches the latest stable release and places the Core and Component folders into their correct directories.

Interactive Preview
Creator StoreInstall SlateUI Plugin

Properties

-- Install from Creator Store:
-- https://create.roblox.com/store/asset/134225039028358/SlateUI-Installer

Manual Model Injection

If you prefer not to use plugins, you can manually require the initialization module from the Roblox Cloud. Run the following code once in your command bar to structure your workspace.

Run in Studio Command Bar

luau
1
2
3
4
5
6
7
8
9
10
11
local InsertService = game:GetService("InsertService")
local ASSET_ID = 123159360689128
 
local success, model = pcall(function()
return InsertService:LoadAsset(ASSET_ID)
end)
 
if success then
model.SlateUI.Parent = game.ReplicatedStorage
print("SlateUI Installed Successfully")
end