-- [[ RZP PRESTIGE PORTAL - EXECUTOR LOADER ]] -- Place this LocalScript inside StarterPlayerScripts local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui", 8) if not PlayerGui then PlayerGui = Player:FindFirstChildOfClass("PlayerGui") end -- [ SCREEN GUI ] local Gui = Instance.new("ScreenGui") Gui.Name = "RZP_Prestige_Portal" Gui.IgnoreGuiInset = true Gui.ResetOnSpawn = false Gui.ZIndexBehavior = Enum.ZIndexBehavior.Global Gui.DisplayOrder = 99999 local parentSuccess = pcall(function() Gui.Parent = PlayerGui end) if not parentSuccess then pcall(function() Gui.Parent = game:GetService("CoreGui") end) end -- [ WELCOME BANNER (ROBLOX STYLE) ] local WelcomeBanner = Instance.new("Frame") WelcomeBanner.Size = UDim2.new(0, 260, 0, 50) WelcomeBanner.Position = UDim2.new(0.5, -130, 0, -60) -- Starts offscreen WelcomeBanner.BackgroundColor3 = Color3.fromRGB(15, 15, 20) WelcomeBanner.BackgroundTransparency = 0.2 WelcomeBanner.BorderSizePixel = 0 WelcomeBanner.Parent = Gui local BannerCorner = Instance.new("UICorner") BannerCorner.CornerRadius = UDim.new(0, 12) BannerCorner.Parent = WelcomeBanner local BannerStroke = Instance.new("UIStroke") BannerStroke.Color = Color3.fromRGB(168, 85, 247) BannerStroke.Thickness = 1.5 BannerStroke.Parent = WelcomeBanner local WelcomeLabel = Instance.new("TextLabel") WelcomeLabel.Size = UDim2.fromScale(1, 1) WelcomeLabel.BackgroundTransparency = 1 WelcomeLabel.Text = "WELCOME" WelcomeLabel.TextColor3 = Color3.fromRGB(255, 255, 255) WelcomeLabel.Font = Enum.Font.GothamBold WelcomeLabel.TextSize = 14 WelcomeLabel.Parent = WelcomeBanner -- [ NEON PORTAL BOX CONTAINER ] local PortalBox = Instance.new("Frame") PortalBox.AnchorPoint = Vector2.new(0.5, 0.5) PortalBox.Size = UDim2.new(0, 320, 0, 220) PortalBox.Position = UDim2.new(0.5, 0, 1.5, 0) -- Starts offscreen below PortalBox.BackgroundColor3 = Color3.fromRGB(10, 10, 14) PortalBox.BackgroundTransparency = 0.15 PortalBox.BorderSizePixel = 0 PortalBox.Visible = false PortalBox.Parent = Gui local BoxCorner = Instance.new("UICorner") BoxCorner.CornerRadius = UDim.new(0, 18) BoxCorner.Parent = PortalBox -- Glow Border (Neon Purple UIStroke) local BorderStroke = Instance.new("UIStroke") BorderStroke.Color = Color3.fromRGB(168, 85, 247) BorderStroke.Thickness = 2.5 BorderStroke.Parent = PortalBox local BorderGradient = Instance.new("UIGradient") BorderGradient.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, Color3.fromRGB(168, 85, 247)), ColorSequenceKeypoint.new(0.5, Color3.fromRGB(236, 72, 153)), ColorSequenceKeypoint.new(1, Color3.fromRGB(168, 85, 247)) }) BorderGradient.Parent = BorderStroke -- [ PORTAL LINKS VIEW ] local ScreenAction = Instance.new("Frame") ScreenAction.Size = UDim2.fromScale(1, 1) ScreenAction.BackgroundTransparency = 1 ScreenAction.Parent = PortalBox local ActionTitle = Instance.new("TextLabel") ActionTitle.Size = UDim2.new(1, 0, 0, 30) ActionTitle.Position = UDim2.new(0, 0, 0.08, 0) ActionTitle.BackgroundTransparency = 1 ActionTitle.Text = "RZP PRESTIGE PORTAL" ActionTitle.TextColor3 = Color3.fromRGB(236, 72, 153) ActionTitle.Font = Enum.Font.GothamBold ActionTitle.TextSize = 13 ActionTitle.Parent = ScreenAction local ExecBtn = Instance.new("TextButton") ExecBtn.Size = UDim2.new(0, 210, 0, 38) ExecBtn.Position = UDim2.new(0.5, -105, 0.28, 0) ExecBtn.BackgroundColor3 = Color3.fromRGB(168, 85, 247) ExecBtn.Text = "EXECUTE DIRECT" ExecBtn.TextColor3 = Color3.fromRGB(255, 255, 255) ExecBtn.Font = Enum.Font.GothamBold ExecBtn.TextSize = 12 ExecBtn.Parent = ScreenAction local ExecCorner = Instance.new("UICorner") ExecCorner.CornerRadius = UDim.new(0, 8) ExecCorner.Parent = ExecBtn local ExecGlow = Instance.new("UIStroke") ExecGlow.Color = Color3.fromRGB(255, 255, 255) ExecGlow.Thickness = 1 ExecGlow.Transparency = 0.6 ExecGlow.Parent = ExecBtn local WebBtn = Instance.new("TextButton") WebBtn.Size = UDim2.new(0, 210, 0, 38) WebBtn.Position = UDim2.new(0.5, -105, 0.5, 0) WebBtn.BackgroundColor3 = Color3.fromRGB(20, 20, 25) WebBtn.Text = "GO TO OUR WEBSITE" WebBtn.TextColor3 = Color3.fromRGB(255, 255, 255) WebBtn.Font = Enum.Font.GothamBold WebBtn.TextSize = 11 WebBtn.Parent = ScreenAction local WebCorner = Instance.new("UICorner") WebCorner.CornerRadius = UDim.new(0, 8) WebCorner.Parent = WebBtn local WebGlow = Instance.new("UIStroke") WebGlow.Color = Color3.fromRGB(168, 85, 247) WebGlow.Thickness = 1.5 WebGlow.Parent = WebBtn local InfoText = Instance.new("TextLabel") InfoText.Size = UDim2.new(1, -20, 0, 40) InfoText.Position = UDim2.new(0, 10, 0.72, 0) InfoText.BackgroundTransparency = 1 InfoText.Text = "Explore more scripts, upload your own and earn cash" InfoText.TextColor3 = Color3.fromRGB(160, 160, 175) InfoText.Font = Enum.Font.GothamSemibold InfoText.TextSize = 9 InfoText.TextWrapped = true InfoText.Parent = ScreenAction -- [ ANIMATION TIMELINE ] task.spawn(function() -- Slide Welcome Banner Down WelcomeBanner:TweenPosition(UDim2.new(0.5, -130, 0, 40), "Out", "Back", 0.5) task.wait(2.0) -- Slide Welcome Banner Up WelcomeBanner:TweenPosition(UDim2.new(0.5, -130, 0, -60), "In", "Quad", 0.4) task.wait(0.4) -- Slide Menu Up from Bottom (Simple Slide-In Transition) PortalBox.Visible = true PortalBox:TweenPosition(UDim2.new(0.5, 0, 0.5, 0), "Out", "Quad", 0.6) task.wait(0.6) WelcomeBanner:Destroy() end) WebBtn.MouseButton1Click:Connect(function() local siteUrl = "https://link.prod.sekai.chat/yCD0ms" if setclipboard then setclipboard(siteUrl) elseif toclipboard then toclipboard(siteUrl) elseif syn and syn.write_clipboard then syn.write_clipboard(siteUrl) end print("Portal website link copied to clipboard!") end) ExecBtn.MouseButton1Click:Connect(function() pcall(function() loadstring(game:HttpGet("https://pastebin.com/raw/pxP5ptRn"))() end) local shrink = PortalBox:TweenPosition(UDim2.new(0.5, 0, 1.5, 0), "In", "Quad", 0.4) task.wait(0.4) Gui:Destroy() end) print("RZP PRESTIGE PORTAL INSTALLED")