I am getting really mad at this.. Does anyone know why this Script works all the way until after the removal?
local Asset = game:GetService("MarketplaceService"):GetProductInfo(157360914) M = Instance.new("Message") M.Parent = game.Workspace wait() M.Text = Asset.Name.. " : " ..Asset.Description wait(4) M:remove() wait() M.Text = "Created" ..Asset.Created.. "."
I think you're staring right at the issue. You can't remove a message and expect to be able to use it again.
local Asset = game:GetService("MarketplaceService"):GetProductInfo(157360914) M = Instance.new("Message") M.Parent = game.Workspace wait() M.Text = Asset.Name.. " : " ..Asset.Description wait(4) M.Text = "Created" ..Asset.Created.. "." --Swap wait(4) M:Destroy() --Swap