local WindUI = loadstring(game:HttpGet("https://tree-hub.vercel.app/api/UI/WindUI"))() local Version = "1.4.0" local WindUI = loadstring(game:HttpGet("https://tree-hub.vercel.app/api/UI/WindUI/" .. Version))() local Window = WindUI:CreateWindow({ Title = "Forsaken Valup V1", -- UI Title Icon = "rbxassetid://110295312960615", -- Url or rbxassetid or lucide Author = "Peelup And Valvvm", -- Author & Creator Folder = "CloudHub", -- Folder name for saving data (And key) Size = UDim2.fromOffset(580, 460), -- UI Size KeySystem = { -- Creates key system Key = "7f2a1b6e-88d3", -- key Note = "The Key is in Discord", -- Note URL = "https://discord.gg/eXraa74t", -- URL To get key (example: Discord) SaveKey = false, -- Saves the key in the folder specified above }, Transparent = true,-- UI Transparency Theme = "Dark", -- UI Theme SideBarWidth = 170, -- UI Sidebar Width (number) HasOutline = true, -- Adds Outlines to the window }) local Notification = WindUI:Notify({ Title = "Thx for using the script!", Content = "Thx!!", Duration = 5, }) local Tab = Window:Tab({ Title = "Esp Soon/auto", Icon = "folder", -- lucide or rbxassetid }) local Toggle = Tab:Toggle({ Title = "AutoGenerators", Desc = "Enable or disable the GeneratorsAuto", Value = false, Callback = function(state) print("Loop enabled: " .. tostring(state)) if state then print("Loop activated") else print("Loop deactivated") end end, }) local Slider = Tab:Slider({ Title = "Distance AutoGenerators", Step = 1, Value = { Min = 1, Max = 500, Default = 0.00001, }, Callback = function(value) if Value then maxDistance = Value else maxDistance = 20 -- Default fallback in case Value is nil end end }) local Tab = Window:Tab({ Title = "Stamina", Icon = "folder", -- lucide or rbxassetid }) local Section = Tab:Section({ Title = "Stamina Changer", TextXAlignment = "Left", TextSize = 17, -- Default Size }) local Slider = Tab:Slider({ Title = "Stamina Gain", Step = 1, Value = { Min = 20, Max = 100, Default = 1, }, Callback = function(value) m.StaminaGain = value end }) local Slider = Tab:Slider({ Title = "Stamina Loss", Step = 1, Value = { Min = 20, Max = 100, Default = 1, }, Callback = function(value) m.StaminaLoss = value end }) local Tab = Window:Tab({ Title = "Speed", Icon = "folder", -- lucide or rbxassetid }) local Section = Tab:Section({ Title = "speed Changer", TextXAlignment = "Left", TextSize = 17, -- Default Size }) local Slider = Tab:Slider({ Title = "Speed Sprint", Step = 1, Value = { Min = 16, Max = 50, Default = 1, }, Callback = function(value) m.SprintSpeed = value end })