How do I make admin logs for my admin panel

I want to make admin command logs so that whenever a person uses a command then a frame in a GUI is shown showing the user who used the command,the command and the person whom it was used on.
For the functioning of the commands I am using remote events but how do I duplicate the guis and reposition it in a scrolling GUI?

2 Likes

To duplicate:

local ClonedFrame = Frame:Clone() -- you must put the correct reference, and what will be cloned
ClonedFrame.Parent = Inside scroolling Gui?

How to change the position of it?

You can use Scrolling frame
And add UiListLayout in it.

Ohk I will try it out and test if it is working or not