API Reference

Getting Started
Load Library
Script
Lua
local WschodLib = loadstring(game:HttpGet("https://wschodlib.site/wschodlib.lua"))()
Window
CreateWindow
Constructor
Lua
local Window = WschodLib:CreateWindow({
    Name = "Wschod Hub",
    AccentColor = Color3.fromRGB(0, 120, 255),
    ToggleKey = Enum.KeyCode.RightControl
})
Window Management
Toggle
Method
Lua
Window:Toggle()
SetBackgroundTransparency
Method
Lua
Window:SetBackgroundTransparency(0.5)
Notifications
Notify
Function
Lua
WschodLib:Notify({
    Title = "Success",
    Content = "Configuration saved!",
    Duration = 3
})
Utility
SetWatermark
Function
Lua
WschodLib:SetWatermark("Wschod Hub | FPS: 60")
Prompt
System
Lua
Window:Prompt({
    Title = "Confirmation",
    Content = "Do you want to proceed?",
    Actions = {
        {
            Text = "Yes",
            Callback = function() print("Yes") end
        },
        {
            Text = "No",
            Callback = function() print("No") end
        }
    }
})
Containers
CreateTab
Method
Lua
local MainTab = Window:CreateTab("Main", {
    Icon = "bolt"
})
Available Icons
Asset Library
Copied!
circle-user
circle-user Player
Copied!
scan-eye
scan-eye ESP
Copied!
brain-circuit
brain-circuit Auto Farm
Copied!
map-pinned
map-pinned Teleports
Copied!
folder-open
folder-open Inventory
Copied!
file-code
file-code Scripts
Copied!
file-terminal
file-terminal Console
Copied!
clipboard-list
clipboard-list Quests
Copied!
bar-chart-big
bar-chart-big Stats
Copied!
arrow-left-right
arrow-left-right Trading
Copied!
folder-cog
folder-cog Configs
Copied!
credit-card
credit-card Shop
Copied!
egg-fried
egg-fried Eggs
Copied!
bell-ring
bell-ring Notifications
Copied!
gauge-circle
gauge-circle Performance
Copied!
globe-lock
globe-lock Webhook
Copied!
building-2
building-2 Server
Copied!
database-backup
database-backup Save Data
Copied!
badge-percent
badge-percent Codes
Copied!
circle-ellipsis
circle-ellipsis Misc
View All 1,000+ Icons
Sections
CreateSection
Method
Lua
local Section = MainTab:CreateSection("Combat Settings")
Buttons
CreateButton
Interactable
Lua
MainTab:CreateButton("Click Me", function()
    print("Button pressed")
end)

MainTab:CreateButton("Quick Execute", function()
    print("Executed!")
end, {Keybind = true})
Toggles
CreateToggle
Interactable
Lua
MainTab:CreateToggle("Auto Farm", false, function(state)
    print("Toggle:", state)
end, {Flag = "AutoFarm"})
Sliders
CreateSlider
Interactable
Lua
MainTab:CreateSlider("WalkSpeed", 16, 100, 16, function(val)
    game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = val
end)
ColorPickers
CreateColorPicker
Interactable
Lua
MainTab:CreateColorPicker("Accent", Color3.new(1,0,0), function(col)
    print(col)
end, "ColorFlag")
Keybinds
CreateKeybind
Interactable
Lua
MainTab:CreateKeybind("Fly Toggle", Enum.KeyCode.F, function()
    print("Fly Toggled")
end, "FlyKey")
Textboxes
CreateTextbox
Interactable
Lua
MainTab:CreateTextbox("Username", "Enter name...", function(text)
    print(text)
end, "UserFlag")
Labels
CreateLabel
Display
Lua
local Label = MainTab:CreateLabel("This is a label")
Label:Set("New Text")
Paragraphs
CreateParagraph
Display
Lua
local Paragraph = MainTab:CreateParagraph("Title", "Long content...")
Paragraph:Set("New Title", "New Content")
Images
CreateImage
Display
Lua
local Image = MainTab:CreateImage(12345678, 200)
Image:Set(87654321)
Dividers
CreateDivider
Display
Lua
MainTab:CreateDivider()