To get started with Raknot-UI, follow these steps to download and install the software.
Visit the Releases page to download the latest version.
Once on the Releases page, look for the latest release and download the file. Follow your deviceβs instructions to install the software.
After you download the file, you can set up Raknot-UI by using the following command in Roblox:
loadstring(game:HttpGet("https://raknot.dev/docs/raknot-ui.lua"))()
The library includes a complete example demonstrating all available components. Use the following code to create your first window:
local RaknotUI = loadstring(game:HttpGet("https://raknot.dev/docs/raknot-ui.lua"))()
-- Create a window
local myWindow = RaknotUI.CreateWindow("My First UI", "This is a simple UI window.")
You can create tabs to organize your components easily. Hereβs a simple example:
local tab1 = myWindow:AddTab("Tab 1")
local tab2 = myWindow:AddTab("Tab 2")
tab1:AddButton("Click Me", function()
print("Button clicked!")
end)
tab2:AddToggle("Toggle Option", false, function(state)
print("Toggle is now: " .. tostring(state))
end)
For detailed documentation on usage and all features, please refer to our official documentation page.
You can customize your UI according to your preferences:
The smart notification system allows you to display messages to users. You can easily implement this feature:
RaknotUI.Notify("This is a test notification.", 5) -- Message stays for 5 seconds
With optional password protection, you can secure your menu effectively.
RaknotUI.SetPassword("your_password")
To learn more about how to use Raknot-UI, check out our tutorials and examples on the documentation page.
Join our community for support. You can ask questions and share your projects with others. Follow the discussions and stay updated with the latest features.
Your feedback is valuable! If you have suggestions or encounter any issues, please open an issue on our GitHub repository.
Raknot-UI runs on Roblox and requires a stable internet connection. Ensure your device meets the following minimum requirements:
For an optimal experience, we recommend using a modern web browser to access our documentation and GitHub pages.