Hi all, I was just wondering how I could add an element to a window from a server plugin
When I try this it gives me the error below
local window =
Remote.MakeGui(
plr,
"Window",
{
Name = "UniformList",
Title = "Uniforms",
Icon = server.MatIcons["Menu"],
Size = {270, 300},
MinSize = {150, 100},
Content = children,
Ready = true
}
)
window:Add(
"ImageLabel",
{
Image = "rbxassetid://531490964"
}
)