-- RayWare Apologize Window local Players = game:GetService("Players") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "RayWareApologize" ScreenGui.ResetOnSpawn = false ScreenGui.IgnoreGuiInset = true ScreenGui.Parent = PlayerGui -- Main Window local MainWindow = Instance.new("Frame") MainWindow.Name = "MainWindow" MainWindow.Size = UDim2.new(0, 600, 0, 350) MainWindow.Position = UDim2.new(0.5, -300, 0.5, -175) MainWindow.BackgroundColor3 = Color3.fromRGB(25, 25, 35) MainWindow.Active = true MainWindow.Draggable = true MainWindow.Parent = ScreenGui Instance.new("UICorner", MainWindow).CornerRadius = UDim.new(0, 12) -- Title Bar local TitleBar = Instance.new("Frame") TitleBar.Size = UDim2.new(1, 0, 0, 45) TitleBar.BackgroundColor3 = Color3.fromRGB(40, 40, 55) TitleBar.Parent = MainWindow Instance.new("UICorner", TitleBar).CornerRadius = UDim.new(0, 12) local TitleText = Instance.new("TextLabel") TitleText.Size = UDim2.new(1, -50, 1, 0) TitleText.Position = UDim2.new(0, 15, 0, 0) TitleText.BackgroundTransparency = 1 TitleText.Text = "RayWare Apologize" TitleText.TextColor3 = Color3.new(1, 1, 1) TitleText.Font = Enum.Font.GothamBold TitleText.TextSize = 20 TitleText.TextXAlignment = Enum.TextXAlignment.Left TitleText.Parent = TitleBar -- Close Button local CloseBtn = Instance.new("TextButton") CloseBtn.Size = UDim2.new(0, 35, 0, 35) CloseBtn.Position = UDim2.new(1, -45, 0, 5) CloseBtn.BackgroundColor3 = Color3.fromRGB(200, 50, 50) CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.new(1, 1, 1) CloseBtn.Font = Enum.Font.GothamBold CloseBtn.TextSize = 18 CloseBtn.Parent = TitleBar Instance.new("UICorner", CloseBtn).CornerRadius = UDim.new(0, 8) CloseBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) -- Message Area local MessageLabel = Instance.new("TextLabel") MessageLabel.Size = UDim2.new(1, -30, 1, -70) MessageLabel.Position = UDim2.new(0, 15, 0, 55) MessageLabel.BackgroundTransparency = 1 MessageLabel.TextColor3 = Color3.fromRGB(200, 200, 200) MessageLabel.TextWrapped = true MessageLabel.TextScaled = true MessageLabel.Font = Enum.Font.Gotham MessageLabel.Text = [[ Hello Im Ray I apologize for using Ai But this Frame Is Ai Too. Im Still Learning Lua. I promise If I Succed I Will Pay Your kindness Thank you To: THAIEXPLOITER VALKOIQ ]] MessageLabel.Parent = MainWindow print("✅ RayWare Apologize Window Loaded!")