local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local TextChatService = game:GetService("TextChatService") local RBXGeneral = TextChatService.TextChannels:FindFirstChild("RBXGeneral") -- Main UI Container local sg = Instance.new("ScreenGui") sg.Name = "RvG_Ruka_Bypass" sg.Parent = LocalPlayer:WaitForChild("PlayerGui") sg.ResetOnSpawn = false -- Rectangular Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 180) frame.Position = UDim2.new(0.5, -150, 0.3, 0) frame.BackgroundColor3 = Color3.fromRGB(10, 10, 10) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = sg local stroke = Instance.new("UIStroke") stroke.Thickness = 2.5 stroke.Color = Color3.fromRGB(220, 0, 0) stroke.Parent = frame -- Title Section local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 30) title.Position = UDim2.new(0, 0, 0.05, 0) title.Text = "RvG_Ruka Bypass" title.TextColor3 = Color3.fromRGB(255, 0, 0) title.Font = Enum.Font.GothamBold title.TextSize = 18 title.BackgroundTransparency = 1 title.Parent = frame local subTitle = Instance.new("TextLabel") subTitle.Size = UDim2.new(1, 0, 0, 20) subTitle.Position = UDim2.new(0, 0, 0.22, 0) subTitle.Text = "Coded by SaMDev" subTitle.TextColor3 = Color3.fromRGB(200, 200, 200) subTitle.Font = Enum.Font.Gotham subTitle.TextSize = 11 subTitle.BackgroundTransparency = 1 subTitle.Parent = frame -- Input Box local box = Instance.new("TextBox") box.Size = UDim2.new(0.9, 0, 0, 35) box.Position = UDim2.new(0.05, 0, 0.45, 0) box.PlaceholderText = "Text to show after pattern..." box.Text = "rblx" box.BackgroundColor3 = Color3.fromRGB(25, 25, 25) box.TextColor3 = Color3.fromRGB(255, 255, 255) box.Parent = frame -- Start/Stop Buttons local sBtn = Instance.new("TextButton") sBtn.Size = UDim2.new(0.42, 0, 0, 35) sBtn.Position = UDim2.new(0.05, 0, 0.75, 0) sBtn.Text = "START" sBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 0) sBtn.TextColor3 = Color3.fromRGB(255, 255, 255) sBtn.Font = Enum.Font.GothamBold sBtn.Parent = frame local stopBtn = Instance.new("TextButton") stopBtn.Size = UDim2.new(0.42, 0, 0, 35) stopBtn.Position = UDim2.new(0.53, 0, 0.75, 0) stopBtn.Text = "STOP" stopBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) stopBtn.TextColor3 = Color3.fromRGB(255, 255, 255) stopBtn.Font = Enum.Font.GothamBold stopBtn.Parent = frame -- Corners Instance.new("UICorner", sBtn) Instance.new("UICorner", stopBtn) Instance.new("UICorner", box) Instance.new("UICorner", frame) -- Logic Core local active = false local galis = {"mc", "bc", "mkl", "rmdy", "rmd", "chmr", "chinnar", "hijda", "gawr", "kutta", "xud", "xuda", "ma xuda"} sBtn.MouseButton1Click:Connect(function() if active then return end active = true sBtn.Text = "ACTIVE" while active do for _, word in pairs(galis) do if not active then break end local userContent = " " .. box.Text .. " " .. word local spaceForPattern = 200 - #userContent -- Pattern comes FIRST now local pattern = string.rep("#-", math.floor(spaceForPattern / 2)) local finalMsg = pattern .. userContent -- Execution for Brookhaven / TextChatService if RBXGeneral then RBXGeneral:SendAsync(finalMsg) else game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(finalMsg, "All") end task.wait(1.5) end end end) stopBtn.MouseButton1Click:Connect(function() active = false sBtn.Text = "START" end)