local Modules = { Colors = { ["Green"] = "0,255,0", -- color in rgb ["Cyan"] = "33, 161, 163" } } Modules.ChangeColor = function() game:GetService("RunService").Heartbeat:Connect(function() if game:GetService("CoreGui"):FindFirstChild("DevConsoleMaster") then for _, v in pairs(game:GetService("CoreGui"):FindFirstChild("DevConsoleMaster"):GetDescendants()) do if v:IsA("TextLabel") then v.RichText = true end end end end) end Modules.print = function(color, text, size) if not Modules.Colors[color] then warn("Color was not found!") return end local Text = '' .. tostring(text) .. '' print(Text) end Modules.ChangeColor() --// Examples \\-- Modules.print("Green", "Lol") Modules.print("Green", "Lol with size 20",20)