Talk:How to add messages
From Legacy Roblox Wiki
Jump to navigationJump to search
Someone wikify this. If not, I'll do it later. --Anaminus 15:48, 4 August 2008 (CDT)
Testing
The scripts
local m = Instance.new("Message") m.Parent = game.Workspace m.Text = "Test 1" wait(10) m:Remove()
and
local m = Instance.new("Hint") m.Parent = game.Workspace m.Text = "Test 2" wait(10) m:Remove()