-- Replace everything you want.
local Library = loadstring(game:HttpGet("https://[Log in to view URL]"))()

local Window = Library:Window({
    Title   = "TESTGUI",
    Version = "v1.0",
    Keys    = { "test", "67" }, -- leave empty {} for no key system
})

local Tab = Window:Tab({ Title = "Main" })

Tab:Button({
    Title    = "Button",
    Desc     = "Test Button",
    Locked   = false,
    Callback = function()
        -- script/loadstring
    end
})

Tab:Toggle({
    Title    = "infjump",
    Desc     = "humanoid:ChangeState(Jumping)",
    Locked   = false,
    Default  = false,
    Callback = function(state)
        -- loadstring/script
    end
})

Tab:Slider({
    Title    = "Walk Speed",
    Desc     = "sets walkspeed",
    Min      = 1,
    Max      = 500,
    Default  = 16,
    Callback = function(val)
        game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = val
    end
})

Tab:Dropdown({
    Title    = "something.",
    Desc     = "changes lighting",
    Options  = { "Morning", "Noon", "Night" },
    Default  = "Noon",
    Callback = function(val)
        print("Selected:", val)
    end
})

Tab:Label({ Title = "TEST" })

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: