local WindUI = loadstring(game:HttpGet("https://[Log in to view URL]"))()
local Window = WindUI:CreateWindow({
Title = "IYN SCRIPTS",
Icon = "Rocket", -- lucide icon
Author = "by Sponge",
Folder = "MySuperHub",
-- ↓ This all is Optional. You can remove it.
Size = UDim2.fromOffset(580, 460),
MinSize = Vector2.new(560, 350),
MaxSize = Vector2.new(850, 560),
Transparent = true,
Theme = "Dark",
Resizable = true,
SideBarWidth = 200,
BackgroundImageTransparency = 0.42,
HideSearchBar = true,
ScrollBarEnabled = false,
WindUI:AddTheme({
Name = "DFT", -- theme name
Accent = Color3.fromHex("#18181b"),
Dialog = Color3.fromHex("#161616"),
Outline = Color3.fromHex("#FFFFFF"),
Text = Color3.fromHex("#FFFFFF"),
Placeholder = Color3.fromHex("#7a7a7a"),
Background = Color3.fromHex("#101010"),
Button = Color3.fromHex("#52525b"),
Icon = Color3.fromHex("#a1a1aa")
})
WindUI:SetTheme("DFT")
Window:EditOpenButton({
Title = "IYN SCRIPTS",
Icon = "monitor",
CornerRadius = UDim.new(0,16),
StrokeThickness = 2,
Color = ColorSequence.new( -- gradient
Color3.fromHex("FF0F7B"),
Color3.fromHex("F89B29")
),
OnlyMobile = false,
Enabled = true,
Draggable = true,
})
local Tab = Window:Tab({
Title = "Player",
Icon = "bird", -- optional
Locked = false,
})
local Slider = Tab:Slider({
Title = "WALKSPEED",
-- To make float number supported,
-- make the Step a float number.
-- example: Step = 0.1
Step = 1,
Value = {
Min = 16,
Max = 375,
Default = 16,
},
Callback = function(value)
game.Players.LocalPlayer.Character.HumanoidRootPart.WalkSpeed = (Value)
end
})
To embed this project on your website, copy the following code and paste it into your website's HTML: