Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

how do i print to chat?

Asked by 8 years ago

so ive seen people like fancy boby and others print to the defualt roblox chat box

how do i do this i mean its the origanal chat and its not a gui created by them so how do they print to it i need this for my admin

1 answer

Log in to vote
0
Answered by
Dr_Doge 100
8 years ago

Use CoreSet

-- Heres a function made by fancyboby47 to use CoreSet

function say(msg,cv1,cv2,cv3)
game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
        Text =msg;
        Color = Color3.new(cv1,cv2,cv3); 
        Font = Enum.Font.SourceSansBold;
        FontSize = Enum.FontSize.Size18; 
        })
end

say("NinjaDogeGames is kool",1,1,1)

http://wiki.roblox.com/index.php?title=API:Class/StarterGui/SetCore

0
hm...it's been 5 years, i wonder how it's changed in this day. Hunter_kenpro2304 0 — 3y
Ad

Answer this question