--[[ SWEET ORANGE EXECUTOR V3 Update: New Welcome Pop-up Credit: sweet_orange ]] local L_Players = game:GetService("Players") local L_LocalPlayer = L_Players.LocalPlayer local L_CoreGui = game:GetService("CoreGui") -- 1. Khởi tạo ScreenGui local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "SweetOrange_Executor" ScreenGui.Parent = (L_CoreGui or L_LocalPlayer:WaitForChild("PlayerGui")) ScreenGui.ResetOnSpawn = false -- ========================================== -- HỆ THỐNG POP-UP CHÀO MỪNG (WELCOME) -- ========================================== local PopUpFrame = Instance.new("Frame") PopUpFrame.Name = "WelcomePopUp" PopUpFrame.Parent = ScreenGui PopUpFrame.BackgroundColor3 = Color3.fromRGB(20, 15, 5) PopUpFrame.Position = UDim2.new(0.5, -150, 0.4, -40) PopUpFrame.Size = UDim2.new(0, 300, 0, 70) PopUpFrame.BorderSizePixel = 0 PopUpFrame.ZIndex = 10 local PopCorner = Instance.new("UICorner", PopUpFrame) local PopStroke = Instance.new("UIStroke", PopUpFrame) PopStroke.Color = Color3.fromRGB(255, 140, 0) -- Màu Cam Neon PopStroke.Thickness = 3 local PopText = Instance.new("TextLabel") PopText.Parent = PopUpFrame PopText.Size = UDim2.new(1, 0, 1, 0) PopText.BackgroundTransparency = 1 PopText.Font = Enum.Font.GothamBold -- ĐỔI LỜI CHÀO TẠI ĐÂY: PopText.Text = "Welcome " .. L_LocalPlayer.Name .. "!" PopText.TextColor3 = Color3.fromRGB(255, 165, 0) PopText.TextSize = 18 PopText.ZIndex = 11 -- Tự động biến mất sau 3 giây task.delay(3, function() for i = 0, 1, 0.1 do PopUpFrame.BackgroundTransparency = i PopText.TextTransparency = i PopStroke.Transparency = i task.wait(0.05) end PopUpFrame:Destroy() end) -- ========================================== -- GIAO DIỆN CHÍNH (MAIN UI) -- ========================================== local MainFrame = Instance.new("Frame") MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(15, 10, 5) MainFrame.Position = UDim2.new(0.5, -225, 0.5, -150) MainFrame.Size = UDim2.new(0, 450, 0, 310) MainFrame.Active = true MainFrame.Draggable = true local MainCorner = Instance.new("UICorner", MainFrame) local MainStroke = Instance.new("UIStroke", MainFrame) MainStroke.Thickness = 4 MainStroke.Color = Color3.fromRGB(255, 140, 0) -- Title local Title = Instance.new("TextLabel") Title.Parent = MainFrame Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1, 0, 0, 50) Title.Font = Enum.Font.GothamBlack Title.Text = "ORANGE EXECUTOR" Title.TextColor3 = Color3.fromRGB(255, 165, 0) Title.TextSize = 24 -- Code Box local CodeBox = Instance.new("TextBox") CodeBox.Parent = MainFrame CodeBox.BackgroundColor3 = Color3.fromRGB(5, 5, 5) CodeBox.Position = UDim2.new(0.05, 0, 0.22, 0) CodeBox.Size = UDim2.new(0.9, 0, 0.45, 0) CodeBox.Font = Enum.Font.Code CodeBox.MultiLine = true CodeBox.Text = "hello player delete this tho" CodeBox.TextColor3 = Color3.fromRGB(255, 200, 100) CodeBox.TextSize = 14 CodeBox.TextXAlignment = Enum.TextXAlignment.Left CodeBox.TextYAlignment = Enum.TextYAlignment.Top CodeBox.ClearTextOnFocus = false Instance.new("UICorner", CodeBox) -- Execute Button local ExecuteBtn = Instance.new("TextButton") ExecuteBtn.Parent = MainFrame ExecuteBtn.BackgroundColor3 = Color3.fromRGB(255, 100, 0) ExecuteBtn.Position = UDim2.new(0.25, 0, 0.72, 0) ExecuteBtn.Size = UDim2.new(0, 220, 0, 45) ExecuteBtn.Font = Enum.Font.GothamBlack ExecuteBtn.Text = "EXECUTE" ExecuteBtn.TextColor3 = Color3.fromRGB(255, 255, 255) ExecuteBtn.TextSize = 20 Instance.new("UICorner", ExecuteBtn) -- Credit local CreditText = Instance.new("TextLabel") CreditText.Parent = MainFrame CreditText.BackgroundTransparency = 1 CreditText.Position = UDim2.new(0, 0, 0.88, 0) CreditText.Size = UDim2.new(1, 0, 0, 30) CreditText.Font = Enum.Font.GothamMedium CreditText.Text = "by: sweet_orange" CreditText.TextColor3 = Color3.fromRGB(255, 140, 0) CreditText.TextSize = 16 -- Logic thực thi ExecuteBtn.MouseButton1Click:Connect(function() local success, err = pcall(function() if loadstring then loadstring(CodeBox.Text)() else warn("Executor does not support loadstring") end end) if not success then warn("Error: " .. err) end end)