local CoreGui = game:GetService("CoreGui") -- Configuration local TROLL_URL = "https://pastebin.com/raw/90AySUiq" local SIGMA_URL = "https://pastebin.com/raw/KkWfrrMg" -- 1. CLEANUP: Force removal of old GUIs local function Cleanup() local protectedNames = {"TROLL_GUI_V11", "UNIVERSAL_ADMIN_GUI", "VersionSwitcher"} for _, gui in ipairs(CoreGui:GetChildren()) do if table.find(protectedNames, gui.Name) then gui:Destroy() end end end -- 2. LOADER UI local ScreenGui = Instance.new("ScreenGui", CoreGui) ScreenGui.Name = "VersionSwitcher" ScreenGui.ResetOnSpawn = false local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.Size = UDim2.new(0, 260, 0, 230) -- Slightly larger to fit bigger text MainFrame.Position = UDim2.new(0.5, -130, 0.5, -115) MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 25) Instance.new("UICorner", MainFrame).CornerRadius = UDim.new(0, 10) Instance.new("UIStroke", MainFrame).Color = Color3.fromRGB(50, 50, 60) -- Title local Title = Instance.new("TextLabel", MainFrame) Title.Size = UDim2.new(1, 0, 0, 50) Title.Text = "SELECT VERSION" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.SourceSansBold Title.TextSize = 24 -- Made bigger Title.BackgroundTransparency = 1 -- Button Helper local function CreateBtn(text, subText, pos, url, color) local btn = Instance.new("TextButton", MainFrame) btn.Size = UDim2.new(0.9, 0, 0, 65) btn.Position = pos btn.BackgroundColor3 = color btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.SourceSansBold btn.TextSize = 18 -- Button text is now larger Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 6) if subText then local label = Instance.new("TextLabel", btn) label.Size = UDim2.new(1, 0, 0, 20) label.Position = UDim2.new(0, 0, 0.65, 0) label.Text = subText label.TextColor3 = Color3.fromRGB(220, 220, 220) label.BackgroundTransparency = 1 label.TextSize = 12 -- Subtitle text size label.Font = Enum.Font.SourceSansItalic end btn.MouseButton1Click:Connect(function() Cleanup() -- Destroys previous GUIs AND this Switcher task.wait(0.2) loadstring(game:HttpGet(url))() end) end -- Create Buttons CreateBtn("TROLL GUI", nil, UDim2.new(0.05, 0, 0.25, 0), TROLL_URL, Color3.fromRGB(40, 40, 45)) CreateBtn("PROJECT SIGMA ADMIN", "NEW - ALPHA VERSION", UDim2.new(0.05, 0, 0.6, 0), SIGMA_URL, Color3.fromRGB(80, 50, 150))