-- Setup
local WindUI = loadstring(game:HttpGet("https://[Log in to view URL]"))()
-- Themes
WindUI:AddTheme({
Name = "My Theme", -- theme name
Accent = Color3.fromHex("#18181b"),
Background = Color3.fromHex("#101010"), -- Accent
Outline = Color3.fromHex("#FFFFFF"),
Text = Color3.fromHex("#FFFFFF"),
Placeholder = Color3.fromHex("#7a7a7a"),
Button = Color3.fromHex("#52525b"),
Icon = Color3.fromHex("#a1a1aa"),
})
-- End of Setup
-- Window UI
local Window = WindUI:CreateWindow({
Title = "Jager Hub | Farming And Friends Script",
Icon = "door-open", -- lucide icon
Author = "by Jager Hub",
Folder = "FarmingAndFriendsScript",
-- ↓ This all is Optional. You can remove it.
Size = UDim2.fromOffset(580, 460),
MinSize = Vector2.new(560, 350),
MaxSize = Vector2.new(850, 560),
ToggleKey = Enum.KeyCode.LeftShift,
Transparent = true,
Theme = "Red",
Resizable = true,
SideBarWidth = 200,
BackgroundImageTransparency = 0.42,
HideSearchBar = true,
ScrollBarEnabled = false,
-- ↓ Optional. You can remove it.
--[[ You can set 'rbxassetid://' or video to Background.
'rbxassetid://':
Background = "rbxassetid://", -- rbxassetid
Video:
Background = "video:YOUR-RAW-LINK-TO-VIDEO.webm", -- video
--]]
-- ↓ Optional. You can remove it.
User = {
Enabled = false,
Anonymous = true,
Callback = function()
print("clicked")
end,
},
-- remove this all,
-- ! ↓ if you DON'T need the key system
KeySystem = {
-- ↓ Optional. You can remove it.
Key = { "1234" },
Note = "Get the key from the discord server.",
-- ↓ Optional. You can remove it.
Thumbnail = {
Image = "rbxassetid://",
Title = "Thumbnail",
},
-- ↓ Optional. You can remove it.
URL = "YOUR LINK TO GET KEY (Discord, Linkvertise, Pastebin, etc.)",
-- ↓ Optional. You can remove it.
SaveKey = false, -- automatically save and load the key.
-- ↓ Optional. You can remove it.
-- API = {} ← Services. Read about it below ↓
},
})
-- About Us Tab
local AboutTab = Window:Tab({
Title = "About Us",
Icon = "bird", -- optional
Locked = false,
})
-- About Us Paragraph 1
local Paragraph = AboutTab:Paragraph({
Title = "What is Jager?",
Desc = "Jager delievers top-tier Roblox scripts and, clean modern systems built for exploiters who want quality.",
Color = Color3.fromRGB(54, 33, 36), -- Try this if WindUI accepts Color3
Image = "",
ImageSize = 30,
Thumbnail = "",
ThumbnailSize = 80,
Locked = false,
})
-- About Us Paragraph 2
local Paragraph = AboutTab:Paragraph({
Title = "Community-Driven",
Desc = "Our community shapes everything -- your feedback guides our future updates.",
Color = Color3.fromRGB(54, 33, 36), -- Try this if WindUI accepts Color3
Image = "",
ImageSize = 30,
Thumbnail = "",
ThumbnailSize = 80,
Locked = false,
})
-- About Us Paragraph 3
local Paragraph = AboutTab:Paragraph({
Title = "Why You Should Join.",
Desc = "Join Jager to help build our community's feedback and see scripts you may want.",
Color = Color3.fromRGB(54, 33, 36), -- Try this if WindUI accepts Color3
Image = "",
ImageSize = 30,
Thumbnail = "",
ThumbnailSize = 80,
Locked = false,
})
-- About Us Window Divider
Window:Divider()
-- Humanoid Tab (Player)
local HumanoidTab = Window:Tab({
Title = "Player",
Icon = "bird", -- optional
Locked = false,
})
-- Humanoid Button (Player)
local Button = HumanoidTab:Button({
Title = "Test Button for Player",
Desc = "Prints Hi",
Locked = false,
Callback = function()
print(("Hi"))
end
})
-- Shop Tab
local ShopTab = Window:Tab({
Title = "Shop",
Icon = "bird", -- optional
Locked = false,
})
-- Shop Button
local Button = ShopTab:Button({
Title = "Test Button for Shop",
Desc = "Prints Hi",
Locked = false,
Callback = function()
print(("Hi"))
end
})
-- AutoFarm Tab
local FarmTab = Window:Tab({
Title = "AutoFarm",
Icon = "bird", -- optional
Locked = false,
})
-- AutoFarm Button
local Button = FarmTab:Button({
Title = "Test Button for Farm",
Desc = "Prints Hi",
Locked = false,
Callback = function()
print(("Hi"))
end
})
-- Troll Tab
local TrollTab = Window:Tab({
Title = "Trolling",
Icon = "bird", -- optional
Locked = false,
})
-- Troll Button
local Button = TrollTab:Button({
Title = "Test Button for Trolling",
Desc = "Prints Hi",
Locked = false,
Callback = function()
print(("Hi"))
end
})
-- Misc Tab
local MiscTab = Window:Tab({
Title = "Misc",
Icon = "bird", -- optional
Locked = false,
})
-- Misc Button
local Button = MiscTab:Button({
Title = "Test Button for Misc",
Desc = "Prints Hi",
Locked = false,
Callback = function()
print(("Hi"))
end
})
To embed this project on your website, copy the following code and paste it into your website's HTML: