Greetings, I’ve been trying to make a custom admin system and there should be also an :info command to check the Players informations. The informations will be shown in a GUI. I now made a GUI which is located in ReplicatedStorage.
I made a script for it to get cloned and moved into PlayerGui, but it is actually never being moved.
(Please note down that I am not showing the whole script!)
if split[1] == ":info" then
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local UI = ReplicatedStorage:WaitForChild("Information")
local UIClone = UI:Clone()
UIClone = Player.PlayerGui
end
Are there any ways to fix this or did I make something wrong?