Convert between Rayfield UI and Wind UI configurations with full element support including tabs, sliders, labels, keybinds, and more.
Paste your Rayfield or Wind UI code in the input panel
Click the switch button to change conversion direction
Click "Convert" to transform the code to the other format
Copy the converted code and use it in your script
-- Paste Rayfield UI code here
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "Rayfield Example Window",
Icon = 0,
LoadingTitle = "Rayfield Interface Suite",
LoadingSubtitle = "by Sirius",
ConfigurationSaving = {
Enabled = true,
FolderName = nil,
FileName = "Big Hub"
},
KeySystem = false,
})
local Tab = Window:CreateTab("Main Tab", 4483362458)
local Section = Tab:CreateSection("Main Section")
local Toggle = Tab:CreateToggle({
Name = "Example Toggle",
CurrentValue = false,
Callback = function(Value)
print("Toggle:", Value)
end,
})
local Slider = Tab:CreateSlider({
Name = "Example Slider",
Range = {0, 100},
Increment = 10,
Suffix = "Value",
CurrentValue = 50,
Callback = function(Value)
print("Slider:", Value)
end,
})
local Label = Tab:CreateLabel("Example Label")
local Keybind = Tab:CreateKeybind({
Name = "Example Keybind",
CurrentKeybind = "Q",
HoldToInteract = false,
Callback = function(Keybind)
print("Keybind:", Keybind)
end,
})
Paste your Rayfield UI code in the editor.
Try using the example cards below to see how different elements are converted.
-- Converted Wind UI code will appear here
This panel shows the converted Wind UI code.
Convert window creation and tab configurations between libraries.
Convert toggles, buttons, sliders, and other standard UI elements.
Convert dropdowns, keybinds, and multi-element configurations.
A complete hub with all element types and complex configurations.