local MenuLib = loadstring(game:HttpGet("https://pastefy.app/32FfrC4V/raw"))() -- Make Menu local menu = MenuLib.new("Dinas Premium Cheats", {"Main", "Visuals", "Settings"}) -- Add Elements local mainTab = menu:AddTab("Main") local mainSection = mainTab:AddSection("Main Features") -- Toggle local godModeToggle = mainSection:AddToggle("God Mode", function(state) print("God Mode:", state) end) -- Slider local speedSlider = mainSection:AddSlider("Walk Speed", 16, 100, 16, function(value) print("Walk Speed:", value) end) -- DropDown local teleportDropdown = mainSection:AddDropdown("Teleport To", {"Spawn", "Base", "Secret"}, 1, function(selected) print("Teleporting to:", selected) end) -- Button mainSection:AddButton("Activate All", function() print("All features activated!") end) -- Add New Tab local visualsTab = menu:AddTab("Visuals") local espSection = visualsTab:AddSection("ESP Settings") -- Changing elements after creation task.wait(5) -- you can delete this (godmode, speedslider, teleportDown) godModeToggle:SetState(true) speedSlider:SetValue(50) teleportDropdown:SetSelected(2) -- Controlling menu visibility menu:Toggle() -- Switch visibility -- menu:Destroy() -- Destroy Menu