I’m trying to edit a property called Author in my gui, but it’s saying that it’s not there even though it is
Script Code, this is on the server
local module = {}
function module:Run(request)
local players = game:GetService("Players"):GetPlayers()
for _,v in pairs(players) do
local clone = script.Parent.Components["Announcement GUI"]:Clone()
clone.Parent = v.PlayerGui
clone.Main.Author.Text = "Announcement By: " .. request.author
clone.Main.Title.Text = request.title
clone.Main.Description.Text = request.description
clone.Main.Visible = true
end
end
return module
Then I guess we’ll have to check what’s going wrong.
First remove the line with Author,
if it still gives an error then remove the lines with Author, Title, and Description.
After doing this, report the results