Convert between Rayfield UI and Wind UI configurations with full element support including tabs, sliders, labels, keybinds, and more.

How to Use This Converter

Paste Code

Paste your Rayfield or Wind UI code in the input panel

Switch Direction

Click the switch button to change conversion direction

Convert

Click "Convert" to transform the code to the other format

Copy Result

Copy the converted code and use it in your script

Note: Some complex configurations may need manual adjustment after conversion. The converter handles tabs, buttons, toggles, sliders, labels, keybinds, dropdowns, and more.
Rayfield UI Input
INPUT
Code Input
Help
-- 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,
})
0 characters
0 lines
0 elements

Input Format Help

Paste your Rayfield UI code in the editor.

Supported Elements:
Window Tabs Sections Toggles Buttons Sliders Labels Keybinds Dropdowns
Tip:

Try using the example cards below to see how different elements are converted.

RAYFIELD
WIND UI
Wind UI Output
OUTPUT
Code Output
Info
-- Converted Wind UI code will appear here
0 characters
0 lines
0 elements

Output Information

This panel shows the converted Wind UI code.

Conversion Notes:
  • Window configurations are fully converted
  • Tabs and sections are properly handled
  • All element types are supported
  • Callbacks are preserved when possible
  • Some values may need manual adjustment
Ready for conversion

Example Configurations

Click any example to load it
Window & Tabs
Basic

Convert window creation and tab configurations between libraries.

Window Tabs Sections
UI Elements
Standard

Convert toggles, buttons, sliders, and other standard UI elements.

Toggles Buttons Sliders Labels
Advanced Elements
Complex

Convert dropdowns, keybinds, and multi-element configurations.

Dropdowns Keybinds Multi-Select
Complete Hub
Full Example

A complete hub with all element types and complex configurations.

All Elements Complex Realistic
Code copied to clipboard!