How can I go about making a custom ui for the developer console?

I wanna make a custom dev console. Instead of a huge frame in the middle its a box in the corner left displaying everything sent in the console

4 Likes

This is something, similar. Odd that there aren’t many tutorials about this topic. Lua.console, a powerful console for roblox studio

1 Like

Thats basically a plugin, i meant in the logservice, when there is a message being sent out a template is cloned and the text is that log

1 Like
local LogService = game:GetService("LogService")

local function onMessageOut(message, messageType)
	if messageType == Enum.MessageType.MessageError then
		script.Parent.Text = tostring(message)
	end
end

LogService.MessageOut:Connect(onMessageOut)

Found the code

3 Likes

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