-- Stupidss(Premium) v6 – LOGIN SYSTEM + NO BACKDOOR + POLARIA -- LocalScript → StarterPlayer > StarterPlayerScripts local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local plr = Players.LocalPlayer local pgui = plr:WaitForChild("PlayerGui", 15) if not pgui then warn("[v6] PlayerGui timeout") return end -- ScreenGui local sg = Instance.new("ScreenGui") sg.Name = "StupidssPremium" sg.ResetOnSpawn = false sg.IgnoreGuiInset = true sg.DisplayOrder = 999999 sg.Parent = pgui -- Main Frame – ultra premium look local main = Instance.new("Frame") main.Name = "MainFrame" main.Size = UDim2.new(0, 560, 0, 400) main.Position = UDim2.new(0.5, -280, 0.5, -200) main.BackgroundColor3 = Color3.fromRGB(8, 8, 14) main.BackgroundTransparency = 0.06 main.BorderSizePixel = 0 main.ClipsDescendants = true main.Active = true main.Visible = false -- hidden until login main.Parent = sg local grad = Instance.new("UIGradient") grad.Color = ColorSequence.new{ ColorSequenceKeypoint.new(0, Color3.fromRGB(18,18,32)), ColorSequenceKeypoint.new(0.4, Color3.fromRGB(10,10,22)), ColorSequenceKeypoint.new(1, Color3.fromRGB(4,4,12)) } grad.Rotation = 140 grad.Parent = main local glow = Instance.new("UIStroke") glow.Color = Color3.fromRGB(100, 130, 255) glow.Transparency = 0.3 glow.Thickness = 3.5 glow.ApplyStrokeMode = Enum.ApplyStrokeMode.Border glow.LineJoinMode = Enum.LineJoinMode.Round glow.Parent = main local glowPulse = Instance.new("UIGradient") glowPulse.Color = ColorSequence.new{ ColorSequenceKeypoint.new(0, Color3.fromRGB(140,170,255)), ColorSequenceKeypoint.new(0.5, Color3.fromRGB(100,130,255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(140,170,255)) } glowPulse.Rotation = 90 glowPulse.Parent = glow local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 24) corner.Parent = main local decal = Instance.new("ImageLabel") decal.Size = UDim2.new(0.24,0,0.24,0) decal.Position = UDim2.new(0.04,0,0.03,0) decal.BackgroundTransparency = 1 decal.Image = "rbxassetid://8281969656" decal.ScaleType = Enum.ScaleType.Fit decal.ImageTransparency = 0.05 decal.Parent = main local title = Instance.new("TextLabel") title.Size = UDim2.new(0.9,0,0.09,0) title.Position = UDim2.new(0.05,0,0.03,0) title.BackgroundTransparency = 1 title.Text = "Stupidss(Premium)" title.TextColor3 = Color3.fromRGB(235,235,255) title.Font = Enum.Font.GothamBlack title.TextSize = 36 title.TextXAlignment = Enum.TextXAlignment.Left title.TextTransparency = 0.05 title.Parent = main local titleGlow = Instance.new("UIStroke", title) titleGlow.Color = Color3.fromRGB(140,160,255) titleGlow.Thickness = 2 titleGlow.Transparency = 0.4 RunService.Heartbeat:Connect(function() titleGlow.Transparency = math.sin(tick() * 1.8) * 0.03 + 0.05 end) -- Tabs container (hidden until login) local tabs = Instance.new("Frame") tabs.Size = UDim2.new(0, 160, 1, -110) tabs.Position = UDim2.new(0, 20, 0, 80) tabs.BackgroundTransparency = 1 tabs.Visible = false tabs.Parent = main -- Content area local content = Instance.new("Frame") content.Size = UDim2.new(1, -200, 1, -110) content.Position = UDim2.new(0, 190, 0, 80) content.BackgroundTransparency = 1 content.Visible = false content.Parent = main -- Login Screen (first thing you see) local loginFrame = Instance.new("Frame") loginFrame.Size = UDim2.new(0, 400, 0, 280) loginFrame.Position = UDim2.new(0.5, -200, 0.5, -140) loginFrame.BackgroundColor3 = Color3.fromRGB(12, 12, 20) loginFrame.BackgroundTransparency = 0.1 loginFrame.BorderSizePixel = 0 loginFrame.Parent = sg local loginCorner = Instance.new("UICorner", loginFrame) loginCorner.CornerRadius = UDim.new(0, 20) local loginGlow = Instance.new("UIStroke", loginFrame) loginGlow.Color = Color3.fromRGB(100, 130, 255) loginGlow.Thickness = 3 loginGlow.Transparency = 0.4 local loginTitle = Instance.new("TextLabel") loginTitle.Size = UDim2.new(1,0,0.2,0) loginTitle.BackgroundTransparency = 1 loginTitle.Text = "Login to Stupidss(Premium)" loginTitle.TextColor3 = Color3.fromRGB(220,220,255) loginTitle.Font = Enum.Font.GothamBlack loginTitle.TextSize = 28 loginTitle.Parent = loginFrame local userBox = Instance.new("TextBox") userBox.Size = UDim2.new(0.8,0,0.15,0) userBox.Position = UDim2.new(0.1,0,0.35,0) userBox.BackgroundColor3 = Color3.fromRGB(20,20,30) userBox.TextColor3 = Color3.fromRGB(200,200,255) userBox.PlaceholderText = "Enter your Roblox username..." userBox.PlaceholderColor3 = Color3.fromRGB(140,140,180) userBox.Text = "" userBox.Font = Enum.Font.GothamSemibold userBox.TextSize = 18 userBox.ClearTextOnFocus = false userBox.Parent = loginFrame local userCorner = Instance.new("UICorner", userBox) userCorner.CornerRadius = UDim.new(0,12) local loginBtn = Instance.new("TextButton") loginBtn.Size = UDim2.new(0.5,0,0.15,0) loginBtn.Position = UDim2.new(0.25,0,0.6,0) loginBtn.BackgroundColor3 = Color3.fromRGB(30,30,40) loginBtn.Text = "Login" loginBtn.TextColor3 = Color3.new(1,1,1) loginBtn.Font = Enum.Font.GothamBold loginBtn.TextSize = 22 loginBtn.BorderSizePixel = 0 loginBtn.Parent = loginFrame local loginBtnCorner = Instance.new("UICorner", loginBtn) loginBtnCorner.CornerRadius = UDim.new(0,14) local loginStatus = Instance.new("TextLabel") loginStatus.Size = UDim2.new(0.9,0,0.15,0) loginStatus.Position = UDim2.new(0.05,0,0.8,0) loginStatus.BackgroundTransparency = 1 loginStatus.Text = "" loginStatus.TextColor3 = Color3.fromRGB(255,100,100) loginStatus.Font = Enum.Font.GothamSemibold loginStatus.TextSize = 18 loginStatus.Parent = loginFrame -- Login logic loginBtn.MouseButton1Click:Connect(function() local username = userBox.Text:match("^%s*(.-)%s*$") -- trim spaces if username == "" then loginStatus.Text = "Please enter a username" loginStatus.TextColor3 = Color3.fromRGB(255,150,100) return end -- Fake check (client can't really verify usernames) -- For real check you'd need server or external API – not possible here if #username >= 3 and #username <= 20 then loginStatus.Text = "Connecting account..." loginStatus.TextColor3 = Color3.fromRGB(100,255,150) task.wait(1.2) -- fake loading loginStatus.Text = "Login successful!" loginStatus.TextColor3 = Color3.fromRGB(80,255,180) task.wait(0.8) -- Hide login, show main UI TweenService:Create(loginFrame, TweenInfo.new(0.6, Enum.EasingStyle.Back), {Position = UDim2.new(0.5, -200, -1, 0)}):Play() task.delay(0.6, function() loginFrame:Destroy() main.Visible = true tabs.Visible = true content.Visible = true end) else loginStatus.Text = "User doesn't exist" loginStatus.TextColor3 = Color3.fromRGB(255,80,80) end end) -- Tab system local currentPage = nil local function createTab(name, y, active, contentFunc) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1,0,0,60) btn.Position = UDim2.new(0,0,0,y) btn.BackgroundColor3 = active and Color3.fromRGB(55,55,85) or Color3.fromRGB(25,25,35) btn.BackgroundTransparency = active and 0.2 or 0.7 btn.Text = name btn.TextColor3 = Color3.fromRGB(225,225,255) btn.Font = Enum.Font.GothamBold btn.TextSize = 20 btn.BorderSizePixel = 0 btn.Parent = tabs local c = Instance.new("UICorner", btn); c.CornerRadius = UDim.new(0,16) local s = Instance.new("UIStroke", btn) s.Color = Color3.fromRGB(110,140,255) s.Thickness = 1.8 s.Transparency = active and 0.25 or 0.85 local page = Instance.new("Frame") page.Size = UDim2.new(1,0,1,0) page.BackgroundTransparency = 1 page.Visible = active page.Parent = content if contentFunc then contentFunc(page) end btn.MouseButton1Click:Connect(function() if currentPage == page then return end TweenService:Create(btn, TweenInfo.new(0.35,Enum.EasingStyle.Quint), {BackgroundTransparency = 0.2}):Play() TweenService:Create(s, TweenInfo.new(0.35), {Transparency = 0.25}):Play() if currentPage then local prevBtn = tabs:FindFirstChild(currentPage.Name:gsub("Page","").."Tab") if prevBtn then TweenService:Create(prevBtn, TweenInfo.new(0.35), {BackgroundTransparency = 0.7}):Play() prevBtn:FindFirstChild("UIStroke").Transparency = 0.85 end currentPage.Visible = false end page.Visible = true currentPage = page end) if active then currentPage = page end return btn, page end -- Executor page local function createExecutorPage(page) local codeBox = Instance.new("TextBox") codeBox.Size = UDim2.new(1,-30,0.72,-30) codeBox.Position = UDim2.new(0,15,0,15) codeBox.BackgroundColor3 = Color3.fromRGB(14,14,22) codeBox.BackgroundTransparency = 0.3 codeBox.TextColor3 = Color3.fromRGB(235,235,255) codeBox.PlaceholderColor3 = Color3.fromRGB(140,140,190) codeBox.PlaceholderText = "Paste your script here..." codeBox.TextXAlignment = Enum.TextXAlignment.Left codeBox.TextYAlignment = Enum.TextYAlignment.Top codeBox.MultiLine = true codeBox.TextWrapped = true codeBox.ClearTextOnFocus = false codeBox.Font = Enum.Font.Code codeBox.TextSize = 15 codeBox.Parent = page local cbCorner = Instance.new("UICorner", codeBox); cbCorner.CornerRadius = UDim.new(0,16) local cbStroke = Instance.new("UIStroke", codeBox) cbStroke.Color = Color3.fromRGB(90,120,255) cbStroke.Thickness = 2 cbStroke.Transparency = 0.45 local btnRow = Instance.new("Frame") btnRow.Size = UDim2.new(1,-30,0.18,0) btnRow.Position = UDim2.new(0,15,0.8,0) btnRow.BackgroundTransparency = 1 btnRow.Parent = page local function makeBtn(text, x, col) local b = Instance.new("TextButton") b.Size = UDim2.new(0.31,0,1,0) b.Position = UDim2.new(x,0,0,0) b.BackgroundColor3 = col b.BackgroundTransparency = 0.4 b.Text = text b.TextColor3 = Color3.new(1,1,1) b.Font = Enum.Font.GothamBold b.TextSize = 18 b.BorderSizePixel = 0 b.Parent = btnRow local bc = Instance.new("UICorner", b); bc.CornerRadius = UDim.new(0,14) local bs = Instance.new("UIStroke", b) bs.Color = col bs.Thickness = 2.2 bs.Transparency = 0.35 b.MouseEnter:Connect(function() TweenService:Create(b, TweenInfo.new(0.2), {BackgroundTransparency=0.2}):Play() TweenService:Create(bs, TweenInfo.new(0.2), {Transparency=0.15}):Play() end) b.MouseLeave:Connect(function() TweenService:Create(b, TweenInfo.new(0.26), {BackgroundTransparency=0.4}):Play() TweenService:Create(bs, TweenInfo.new(0.26), {Transparency=0.35}):Play() end) return b end local btnRun = makeBtn("Execute", 0, Color3.fromRGB(50,170,110)) local btnClear = makeBtn("Clear", 0.335, Color3.fromRGB(170,60,70)) btnClear.MouseButton1Click:Connect(function() codeBox.Text = "" end) btnRun.MouseButton1Click:Connect(function() local code = codeBox.Text if code:match("^%s*$") then return end local success, result = pcall(loadstring, code) if success then print("CLIENT EXECUTE → SUCCESS") else warn("CLIENT EXECUTE → FAILED:\n" .. tostring(result)) end end) end -- Script Hub with Polaria local function createScriptHubPage(page) local hubScroll = Instance.new("ScrollingFrame") hubScroll.Size = UDim2.new(1,-30,1,-30) hubScroll.Position = UDim2.new(0,15,0,15) hubScroll.BackgroundTransparency = 1 hubScroll.ScrollBarThickness = 5 hubScroll.Parent = page local hubLayout = Instance.new("UIListLayout") hubLayout.Padding = UDim.new(0,14) hubLayout.Parent = hubScroll local polariaBtn = Instance.new("TextButton") polariaBtn.Size = UDim2.new(1,0,0,60) polariaBtn.BackgroundColor3 = Color3.fromRGB(70,50,140) polariaBtn.BackgroundTransparency = 0.3 polariaBtn.Text = "Load Polaria Script" polariaBtn.TextColor3 = Color3.new(1,1,1) polariaBtn.Font = Enum.Font.GothamBold polariaBtn.TextSize = 22 polariaBtn.BorderSizePixel = 0 polariaBtn.Parent = hubScroll local pCorner = Instance.new("UICorner", polariaBtn); pCorner.CornerRadius = UDim.new(0,16) local pStroke = Instance.new("UIStroke", polariaBtn) pStroke.Color = Color3.fromRGB(140,100,255) pStroke.Thickness = 2.5 pStroke.Transparency = 0.4 polariaBtn.MouseButton1Click:Connect(function() local success, err = pcall(function() require(110951620907921):Pload("") end) if success then print("Polaria loaded successfully") else warn("Polaria failed (likely FilteringEnabled): " .. tostring(err)) end end) end -- Console page local function createConsolePage(page) local consoleFrame = Instance.new("ScrollingFrame") consoleFrame.Size = UDim2.new(1,-30,1,-80) consoleFrame.Position = UDim2.new(0,15,0,15) consoleFrame.BackgroundTransparency = 1 consoleFrame.ScrollBarThickness = 6 consoleFrame.ScrollBarImageColor3 = Color3.fromRGB(90,110,220) consoleFrame.CanvasSize = UDim2.new(0,0,0,0) consoleFrame.Parent = page local consoleLayout = Instance.new("UIListLayout") consoleLayout.Padding = UDim.new(0,6) consoleLayout.SortOrder = Enum.SortOrder.LayoutOrder consoleLayout.Parent = consoleFrame local function addMsg(text, color) local lbl = Instance.new("TextLabel") lbl.Size = UDim2.new(1,0,0,26) lbl.BackgroundTransparency = 1 lbl.Text = text lbl.TextColor3 = color or Color3.fromRGB(200,200,255) lbl.Font = Enum.Font.Code lbl.TextSize = 14 lbl.TextXAlignment = Enum.TextXAlignment.Left lbl.TextWrapped = true lbl.Parent = consoleFrame consoleFrame.CanvasSize = UDim2.new(0,0,0,consoleLayout.AbsoluteContentSize.Y + 20) end local oldPrint = print local oldWarn = warn print = function(...) local t = table.concat({...}, "\t") addMsg(t, Color3.fromRGB(180,255,180)) oldPrint(...) end warn = function(...) local t = table.concat({...}, "\t") addMsg(t, Color3.fromRGB(255,180,180)) oldWarn(...) end local clearCon = Instance.new("TextButton") clearCon.Size = UDim2.new(0.4,0,0,40) clearCon.Position = UDim2.new(0.3,0,0.92,0) clearCon.BackgroundColor3 = Color3.fromRGB(140,50,50) clearCon.Text = "Clear Console" clearCon.TextColor3 = Color3.new(1,1,1) clearCon.Font = Enum.Font.GothamBold clearCon.TextSize = 18 clearCon.Parent = page local conCCorner = Instance.new("UICorner", clearCon) conCCorner.CornerRadius = UDim.new(0,12) clearCon.MouseButton1Click:Connect(function() for _, child in ipairs(consoleFrame:GetChildren()) do if child:IsA("TextLabel") then child:Destroy() end end consoleFrame.CanvasSize = UDim2.new(0,0,0,0) end) end -- Create tabs createTab("Executor", 0, true, createExecutorPage) createTab("Script Hub", 70, false, createScriptHubPage) createTab("Console", 140, false, createConsolePage) -- Smooth dragging local dragging = false local dragStart = nil local startPos = nil local dragInput = nil local function update(input) local delta = input.Position - dragStart main.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end main.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = main.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) main.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if dragging and dragInput and input == dragInput then update(input) end end) print("[Stupidss(Premium) v5.2] Loaded – login required, Polaria in Script Hub")