Is it possible to open roblox chat with a custom ui button?

To keep it simple I want to open the roblox chat when a ui button is pressed yet dont know if its even possible

1 Like

Take a look a this code:

local button = script.Parent
button.Activated:Connect(function()
	--This command opens what You want to be opened:
	game:GetService("StarterGui"):SetCore("ChatActive", true)
end)

I hope that it helps.

This actually works thank you!!!
For anyone else coming across this you need to have top bar enabled too for it to function

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.