local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") local UserInputService = game:GetService("UserInputService") local player = Players.LocalPlayer local mouse = player:GetMouse() -- Tworzenie GUI local ScreenGui = Instance.new("ScreenGui", game.CoreGui) local Frame = Instance.new("Frame", ScreenGui) local UICorner = Instance.new("UICorner", Frame) local UIStroke = Instance.new("UIStroke", Frame) local Title = Instance.new("TextLabel", Frame) local MessageLabel = Instance.new("TextLabel", Frame) local MessageBox = Instance.new("TextBox", Frame) local SenderLabel = Instance.new("TextLabel", Frame) local SenderBox = Instance.new("TextBox", Frame) local FakeMessageLabel = Instance.new("TextLabel", Frame) local FakeMessageBox = Instance.new("TextBox", Frame) local SendButton = Instance.new("TextButton", Frame) local UICornerButton = Instance.new("UICorner", SendButton) -- Ustawienia Frame Frame.Size = UDim2.new(0, 300, 0, 250) Frame.Position = UDim2.new(0.5, -150, 0.5, -125) Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Frame.BackgroundTransparency = 0.2 Frame.BorderSizePixel = 0 Frame.Active = true Frame.Draggable = true UICorner.CornerRadius = UDim.new(0, 10) -- RGB Border spawn(function() while wait() do for i = 0, 1, 0.01 do UIStroke.Color = Color3.fromHSV(i, 1, 1) Title.TextColor3 = Color3.fromHSV(i, 1, 1) SendButton.TextColor3 = Color3.fromHSV(i, 1, 1) wait(0.05) end end end) UIStroke.Thickness = 2 UIStroke.Parent = Frame -- Ustawienia Title Title.Size = UDim2.new(1, 0, 0, 30) Title.BackgroundTransparency = 1 Title.Text = "Fake Chat Message" Title.TextSize = 18 Title.Font = Enum.Font.SourceSansBold Title.TextColor3 = Color3.new(1, 1, 1) -- Tworzenie pól tekstowych local function createLabel(text, position) local label = Instance.new("TextLabel", Frame) label.Size = UDim2.new(1, -20, 0, 20) label.Position = position label.BackgroundTransparency = 1 label.Text = text label.TextSize = 14 label.Font = Enum.Font.SourceSans label.TextColor3 = Color3.new(1, 1, 1) label.TextXAlignment = Enum.TextXAlignment.Left return label end local function createTextBox(position) local box = Instance.new("TextBox", Frame) box.Size = UDim2.new(1, -20, 0, 25) box.Position = position box.BackgroundColor3 = Color3.fromRGB(50, 50, 50) box.TextColor3 = Color3.new(1, 1, 1) box.Font = Enum.Font.SourceSans box.TextSize = 14 box.ClearTextOnFocus = false return box end MessageLabel = createLabel("Your Message", UDim2.new(0, 10, 0, 30)) MessageBox = createTextBox(UDim2.new(0, 10, 0, 50)) SenderLabel = createLabel("Fake Sender Name", UDim2.new(0, 10, 0, 80)) SenderBox = createTextBox(UDim2.new(0, 10, 0, 100)) FakeMessageLabel = createLabel("Fake Message", UDim2.new(0, 10, 0, 130)) FakeMessageBox = createTextBox(UDim2.new(0, 10, 0, 150)) -- Przycisk Send Message SendButton.Size = UDim2.new(1, -20, 0, 40) SendButton.Position = UDim2.new(0, 10, 0, 190) SendButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100) SendButton.Text = "Send Message" SendButton.Font = Enum.Font.SourceSansBold SendButton.TextSize = 18 SendButton.TextColor3 = Color3.new(1, 1, 1) UICornerButton.CornerRadius = UDim.new(0, 10) -- Funkcja kopiowania do schowka local function copyToClipboard(text) setclipboard(text) StarterGui:SetCore("SendNotification", { Title = "Fake Chat", Text = "Prompt Copied", Duration = 2 }) end -- Obsługa kliknięcia przycisku SendButton.MouseButton1Click:Connect(function() local message = MessageBox.Text local sender = SenderBox.Text local fakeMsg = FakeMessageBox.Text local copiedText = string.format("%s ), %s, %s", message, sender, fakeMsg) copyToClipboard(copiedText) end)