xvc200

luarmor console

May 3rd, 2025
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. local Modules = {
  2. Colors = {
  3. ["Green"] = "0,255,0",
  4. ["Cyan"] = "33, 161, 163"
  5. }
  6. }
  7.  
  8. Modules.ChangeColor = function()
  9. game:GetService("RunService").Heartbeat:Connect(function()
  10. if game:GetService("CoreGui"):FindFirstChild("DevConsoleMaster") then
  11. for _, v in pairs(game:GetService("CoreGui"):FindFirstChild("DevConsoleMaster"):GetDescendants()) do
  12. if v:IsA("TextLabel") then
  13. v.RichText = true
  14. end
  15. end
  16. end
  17. end)
  18. end
  19.  
  20. Modules.print = function(color, text, size)
  21. if not Modules.Colors[color] then
  22. warn("Color was not found!")
  23. return
  24. end
  25.  
  26.  
  27. local Text = '<font color="rgb(' .. Modules.Colors[color] .. ')"'
  28. if size then
  29. Text = Text .. ' size="' .. tostring(size) .. '"'
  30. end
  31. Text = Text .. '>' .. tostring(text) .. '</font>'
  32. print(Text)
  33. end
  34.  
  35.  
  36. Modules.ChangeColor()
  37. Modules.print("Cyan", "Script Version: 4.0", 15)
Advertisement
Add Comment
Please, Sign In to add comment